PHP Soap Client does not make request -


ini_set('soap.wsdl_cache_enabled', '0'); ini_set('soap.wsdl_cache_ttl', '0'); ini_set('max_execution_time', 123456); ini_set("default_socket_timeout", 100);  $client = new soapclient( 'http://#########:9999/cardexternalservice.svc?wsdl', array( 'soap_version' => soap_1_2, 'trace' => 1, 'local_cert' => 'something.pem' ) );  try {     $client ->__soapcall( 'getfullcarddata', array( 'carduniqueid, endclientdata' ) ); } catch ( exception $e ) {     echo $e->getmessage(); } 

when execute function, apache downs. don't know happens, tried nusoap, native one, wso2 same result. php except certificate request. don't know how explain. cannot see error.

warning:  soapclient::soapclient() [<a href='soapclient.soapclient'>soapclient.soapclient</a>]: i/o warning : failed load external entity &quot;http://########:9999/cardexternalservice.svc?wsdl&quot; in c:\\wamp\\www\\soap\\index.php on line 9  fatal error:  soap-error: parsing wsdl: couldn't load 'http://########:9999//cardexternalservice.svc?wsdl' : failed load external entity "http://########:9999/cardexternalservice.svc?wsdl"\n in c:\\wamp\\www\\soap\\index.php on line 9 

i think last stem, when tried nusoap, there soap version problem, (text/xml & text/soap+xml), wso2 not supported 5.3 already. native client everything, last step, apache downs. zend client can not used, cause core old 1 , there version disbalancing..

any kind of help, appreciated...

ps. got microsoft iis server .net wpf service , try communicate centos, apache, php 5.2


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -