|
Ah, no, the proxy is actually the soap:address location attribute from the port definition like this:
<wsdl:port name="NewPort" binding="tns:NewBinding">
<soap:address location="http://www.example.org/"></soap:address>
</wsdl:port>
You can set the timeout like this, too (only with the updated SOAP::WSDL):
$soap->wsdlinit();
$soap->get_client()->get_transport()->timeout(360);
|