sandeep prof - 2009-09-11 08:05:14
We have just installed package (SOAP 0.12.0)
With following code:
if (class_exists('SOAP_Client')) {
echo "SOAP_Client EXISTS";
}
else
{
echo "SOAP_Client NOT EXISTS";
}
OUTPUT : SOAP_Client NOT EXISTS
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
On including file --> require_once('{basepath}/php/SOAP/Client.php');
we are getting following error:
Warning: require_once(SOAP/Value.php) [function.require-once]: failed to open stream: No such file or directory in .....
Can anybody please suggest what we need to do to get it work properly ??