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(\"
I was googling for multi-parameter calling. All the thread did not tell the following. When php call .asmx web service, the passing of parameters MUST MATCH the variables used in the web service of :
public string XYZ(string p, string q)
The web service call has to be something like :
$params = array( "p" => $name1, "q" => $name2 );
p, q pairs must be named and clarified in php calling.