On Wed, 04 May 2005 12:54:32 -0500, Russell Jones wrote: > I am getting the following error... > > ################################### > No Deserializer found to deserialize a > 'http://www.w3.org/2001/XMLSchema:nil' using encoding style > 'http://schemas.xmlsoap.org/soap/encoding/' > ################################### > > > any ideas? Are you using PEAR::SOAP (php4.x) or ext/soap (php5)? If PEAR::SOAP $result =& $soapclient->call("doGetCachedPage", $params, "urn:GoogleSearch", "urn:GoogleSearch"); if (PEAR::isError($result)) echo $result->message; else .... If php5 try { $result =& $soapclient->call("doGetCachedPage", $params, "urn:GoogleSearch", "urn:GoogleSearch"); } catch (..) { } -- Hilsen/Regards Michael Rasmussen http://keyserver.veridis.com:11371/pks/lookup?op=get&search=0xE3E80917 -- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php