I get the error message:
Fatal error: Uncaught exception 'Zend_Soap_Client_Exception' with message
'Unknown SOAP client option' in
/usr/local/wwwroot/jigal/library/Zend/Soap/Client.php:223 Stack trace: #0
/usr/local/wwwroot/jigal/library/Zend/Soap/Client.php(122):
Zend_Soap_Client->setOptions(Array) #1
/usr/local/wwwroot/jigal/wstest.php(10):
Zend_Soap_Client->__construct('http://andijvie...', Array) #2 {main} thrown
in /usr/local/wwwroot/jigal/library/Zend/Soap/Client.php on line 223
Furthermore:
this
$client = new Zend_Soap_Client($wsdl, $options);
$client ->setEncoding("UTF-8");
$client ->setSoapVersion(SOAP_1_1);
$bla = $client->getLastRequest();
Zend_Debug::dump($bla, 'bla',true);
gives me an empty string.
beberlei wrote:
>
> yes, there are possibilities to see both request and response:
>
> $client = new Zend_Soap_Client($wsdl, array('trace' => true));
>
> $client->... do stuff;
>
> and then you can do:
>
> $client->getLastRequest();
> $client->getLastResponse();
> $client->getLastRequestHeaders();
> $client->getLastResponseHeaders();
>
> On Monday 27 October 2008 17:45:29 Jigal sanders wrote:
>> Hello everyone.
>>
>> I have the following test stuff for a soap message :
>>
>> <?
>> //if(is_dir('./library/')) echo "ja"; exit;
>> set_include_path('./library/');
>> require_once('Zend/Loader.php');
>> Zend_Loader::registerAutoload();
>> $wsdl = "http://buzz.nl/WSCRM/SubscriptionService?wsdl";
>> $client = new Zend_Soap_Client($wsdl);
>> $client ->setEncoding("UTF-8");
>> $client ->setSoapVersion(SOAP_1_1);
>>
>> Zend_Debug::dump($client, 'bla',true);
>>
>> ?>
>>
>> is there a way to see the acutal soap message in xml?
>
>
>
> --
> Benjamin Eberlei
> http://www.beberlei.de
>
>
--
View this message in context: http://www.nabble.com/See-the-soap-message-tp20191520p20202969.html
Sent from the Zend Web Services mailing list archive at Nabble.com.
没有评论:
发表评论