Hi,
I've been fiddling around with PHP5's SOAP extension for some time now but I don't seem to be able to get it to work.
I'm behind a proxy.
The way I read the manual for SoapClient() this here would be an appropriate instanciation:
$client = new SoapClient('http://webservices.amazon.com/AWSECommerceService/US/AWSECommerceService.wsdl',
array('proxy_host' => 'proxy.myhost.com',
'proxy_port' => 3128,
)
);
but all I get back is
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://webservices.amazon.com/AWSECommerceService/US/AWSECommerceService.wsdl' in d:\Apache\htdocs\soap\aws4.php:12 Stack trace: #0 {main} thrown in...
Unfortunatelly I'm unable to go around this proxy. Other applications written by me and others can utilize the proxy without problem.
Any ideas?
Thanks,
Sal-
P.S.: Working on PHP5.0.2 Windows and Linux