I am consuming a SOAP web service using php5\'s soap extension. The service\' wsdl was generated using Axis java2wsdl, and whatever options are used during generation result in
You might want to try overriding the hostname/port using the $options array that you can pass as the second argument to SoapClient's constructor:
$client = new SoapClient("some.wsdl", array('proxy_host' => "https://example.org", 'proxy_port' => 443);