PHP Doku:: Gibt die letzte SOAP-Antwort zurück - soapclient.getlastresponse.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzWeb ServicesSOAPThe SoapClient classSoapClient::__getLastResponse

Ein Service von Reinhard Neidl - Webprogrammierung.

The SoapClient class

<<SoapClient::__getLastRequestHeaders

SoapClient::__getLastResponseHeaders>>

SoapClient::__getLastResponse

(PHP 5 >= 5.0.1)

SoapClient::__getLastResponseGibt die letzte SOAP-Antwort zurück

Beschreibung

public string SoapClient::__getLastResponse ( void )

Gibt das XML zurück, das mit der letzten SOAP-Antwort gesendet wurde.

Hinweis:

Diese Methode funktioniert nur, wenn das SoapClient-Objekt mit trace=TRUE erstellt wurde.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Die letzte SOAP-Antwort als XML-Zeichenkette.

Beispiele

Beispiel #1 SoapClient->__getLastResponse()-Beispiel

<?php
$client 
SoapClient("ein.wsdl", array('trace' => 1));
$result $client->EineFunktion();
echo 
"Antwort:\n" $client->__getLastResponse() . "\n";
?>

Siehe auch


2 BenutzerBeiträge:
- Beiträge aktualisieren...
ceo at l-i-e dot com
4.01.2006 22:31
D'oh!
That example needs:
$soapClient = new SoapClient($url, array('trace'=>1));
to turn ON tracing in the first place.
ceo at l-i-e dot com
4.01.2006 22:30
You almost for sure will need to wrap a try/catch block around your SOAP call in order to use these to debug something that's not working.

Otherwise, PHP throws a fatal error before you can execute this function.

For example:
<?php
    $soapClient
= new SoapClient($url);
    echo
htmlentities($soapClient->__getFunctions());
   
//Assume that has output 'someFunction' (among others)
   
try {
       
$results = $soapClient->someFunction(...);
    }
    catch (
SoapFault $soapFault) {
       
var_dump($soapFault);
        echo
"Request :<br>", htmlentities($soapClient->__getLastRequest()), "<br>";
        echo
"Response :<br>", htmlentities($soapClient->__getLastResponse()), "<br>";
    }
?>

Without try/catch, your just get the Fatal Error and PHP commits suicide before you can call __getLastRequest/__getLastResponse



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)