Joined: 21 Aug 2007 |
Posts: 11 |
|
|
 |
Posted: Sun Aug 26, 2007 2:38 am |
|
 |
 |
 |
 |
Dear all.
I have been give a wsdl file (URL) and in it are several services I can
call. So when I create my soap client I do as follows:
$wsdlfile="http://myserver/somefile.xml";
$client=new soapclient($wsdlfile, true); //, true);
However because there are many of these services I can consume I need to
specify the correct one and I believe this is done through the endpoint.
I have read that if you use URLofWSDL/webservice?
So would it be something like:
http://myserver/somefile.xml/GetStatus
Where GetStatus is the webservice name?
Please advise as Im not sure if thats the correct way to define the end
point.
thanks in advance.
|