update page now
Laravel Live Japan

SoapClient::__getLastResponse

(PHP 5, PHP 7, PHP 8)

SoapClient::__getLastResponseDevuelve la última respuesta SOAP

Descripción

public SoapClient::__getLastResponse(): ?string

Devuelve el código XML de la última respuesta SOAP.

Nota:

Esta función solo está disponible si el objeto SoapClient ha sido creado con la opción trace a true

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

La última respuesta SOAP, en forma de string XML.

Ejemplos

Ejemplo #1 Ejemplo con SoapClient::__getLastResponse()

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

Ver también

add a note

User Contributed Notes 3 notes

up
12
ceo at l-i-e dot com
19 years ago
D'oh!
That example needs:
$soapClient = new SoapClient($url, array('trace'=>1));
to turn ON tracing in the first place.
up
9
ceo at l-i-e dot com
19 years ago
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
up
0
mayurvirkar at gmail dot com
12 years ago
Just to make it a bit more readable

echo "REQUEST:\n" . htmlentities(str_ireplace('><', ">\n<", $client->__getLastRequest())) . "\n";
echo "RESPONSE:\n" . htmlentities(str_ireplace('><', ">\n<", $client->__getLastResponse())) . "\n";

PS: If you are using \n then you need to enclose above statements in <pre>. You can also use <br />, but it gets a bit messy.
To Top