Topic by Akihisa Okuda
I want to request to the QueryObjyects method of Connect Web Services for SOAP by using PHP.
But「Fatal error: Uncaught SoapFault exception」 occurred.
How can I do this ?
Please help
■My source code structure is as follows:
<?php
$client = new SoapClient('https://xxxx.custhelp.com/cgi-bin/to-be.cfg/services/soap?wsdl=typed', array('trace' => 1,'soap_version' => SOAP_1_1));
$usernameTokenSoapVar = new SoapVar('<wsse:UsernameToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="UsernameToken-3902281">
<wsse:Username>xxxx</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">xxxx</wsse:Password>
</wsse:UsernameToken>', XSD_ANYXML);
$headers[] = new SoapHeader('http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd', 'Security', $usernameTokenSoapVar, true);
$auth = array('AppID'=>'Basic Objects Sample');
$headers[] = new SoapHeader('urn:messages.ws.rightnow.com/v1_3', 'ClientInfoHeader', $auth);
$client->__setSoapHeaders($headers);
$query = array('Query' => 'SELECT Incident FROM Incident');
$client->__soapCall("QueryObjects",$query,$headers);
?>
■Error Message is as follows:
Fatal error: Uncaught SoapFault exception: [soapenv:Client] XML builder done wit
h pulling. Pull parser cannot pull any more in C:\php_source\soap_test.php:12
Stack trace:
#0 C:\php_source\soap_test.php(12): SoapClient->__soapCall('QueryObjects', Array
, Array)
#1 {main}
thrown in C:\php_source\soap_test.php on line 12