I\'m using a method using SoapClient class in a php page to call a web service in an asp.net site.
Here is the php code.
$client = new SoapClient(\"
Try like this:
$client = new SoapClient("http://testurl/Test.asmx?WSDL"); $params->Param1 = 'Hello'; $params->Param2 = 'World!'; $result = $client->TestMethod($params)->TestMethodResult;