I get always a server error like this :
An error #SOAP-ENV:Client occurred!
Error: /search/beta2No Deserializer found to deserialize a ':key' using
encoding style 'http://schemas.xmlsoap.org/soap/encoding/'.
my PHP-code (the interesting parts) :
include("SOAP/Client.php"); // I use the PEAR SOAP package 0.9.1
$soapclient = new SOAP_Client('GoogleSearch.wsdl');
$soapoptions = array('namespace' => 'urn:GoogleSearch',
'trace' => 0);
$params = array(
'key' => 'xxx', // I've entered the correct key ... for
sure !
'q' => $query,
'start' => 0,
'maxResults' => 1,
'filter' => false,
'restrict' => '',
'safeSearch' => false,
'lr' => '',
'ie' => '',
'oe' => ''
);
$ret = $soapclient->call('doGoogleSearch', $params,
$soapoptions);
What am I doing wrong ? Perhaps anyone can help me ?!
Thank you very much !!! :)
Hi, the same happens to me but I'm using Oxygen-xml.
I guess it should be our keys are canceled or a problem at the google
server may currently be happening.
Any other guesses?