Need guidance for PHP SOAP
Hi friends,
I am using PHP native SOAP library with following commands.
$client = new SoapClient('http://www.mycasting.com/artist.asmx?WSDL');
$result = $client->__soapCall("GetArtists", array('420'=>'memberID'));
Here script return only XML field, but not able to send me field value. However it will run successfully with nuSOAP. But nuSOAP has problem of socket if it will use with PHP native library.
Pl guide me
|