|
Posted by Rob Wilkerson on September 17, 2008, 10:07 am
Please log in for more thread options
Typically, when consuming a SOAP web services, I've had the WSDL URI
available to me and can easily instantiate the SoapClient with that
URI. I'm now in a position where I might have to engage a SOAP
service sans WSDL. I've looked at the documentation, so I can see
that this is possible, but I'm hoping someone provide a little more
information about the options available.
The documentation provides this syntax for instantiating the class
without WSDL:
$client = new SoapClient (
null,
array (
show/hide quoted text
'location' => "http://localhost/soap.php",
'uri' => "http://test-uri/"
)
);
Can someone help clarify exactly what the location and uri options are
pointing to so I have some idea how to apply that to my system and/or
the external services system?
Thanks.
Rob
|
'uri' => "http://test-uri/"