Hi
I have been trying to get things going for my a server side application i am writin, but i could not even get the basic soap echo test working.
So i was wondering if somebody over here could help.
here is my code
$client = new SoapClient( "http://api.hi5.com/hi5test.wsdl");
try
{
$x=$client->__soapCall("echo",array("message"=>"blah"));
}
catch (SoapFault $exception)
{
echo $exception;
}
And here is the exception:
SoapFault exception: [soap:Client] Unknown operation: {http://schemas.xmlsoap.org/soap/envelope/}echo
I have no ideea why this is happening. Any help would be very appreciated.
Thanks
Feb 10
1:19 AM