I have WEb SERVICES implemented ASP.Net files .
I need to call its functions in my php code. The thing i got is i need to create a SOAP Client , specifying the server URL to be the one on which my .net servics r lying. Is it correct?
My code is :
require_once('nusoap.php');
// define path to server application
$serverpath ='http://abc.com/etc/example.asmx/';
// create client object
$client = new soapclient($serverpath);
// make the call
$fault= $client->myFunction(param1,param2)
[Code End]
Any help will be appreciated.
Thanks in advance