I am using php with vb.net webservices.I have written code someting like given below.
$serverpath ='http://abc.com/etc/example.asmx/';
// create client object
$client = new soapclient($serverpath);
// make the call
$fault= $client->myFunction(param1,param2)
Now my problem is that, I tried all possible ways I know to send param1 and param2 from PHP to webservices side but all in vein.
Plzzzzzzzzzzz help me out.
😕