Log SOAP Request - Pear
- by Vincent
All,
How do I log SOAP request to a log file when a web service call is made through PEAR Soap?
My code is:
$WSDL = new SOAP_WSDL($wsdlUrl);
$client = $WSDL->getProxy();
$result = $client->HelloWorldService("Vincent");
Thanks