php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #73747 SoapClient::__getLastResponse() is empty if SoapFault raised
Submitted: 2016-12-15 09:43 UTC Modified: 2016-12-15 09:47 UTC
Votes:5
Avg. Score:4.2 ± 1.0
Reproduced:3 of 4 (75.0%)
Same Version:1 (33.3%)
Same OS:1 (33.3%)
From: richardh at channelgrabber dot com Assigned:
Status: Open Package: SOAP related
PHP Version: 7.1.0 OS: Ubuntu 14.04.1 LTS
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: richardh at channelgrabber dot com
New email:
PHP Version: OS:

 

 [2016-12-15 09:43 UTC] richardh at channelgrabber dot com
Description:
------------
If you configure a SoapClient with both `exceptions` and `trace` set to TRUE, and the server errors with a SoapFault, the client throws a php SoapFault exception.

In php 5.6, if the SoapFault was caught, you could ask the SoapClient for the request `SoapClient::__getLastRequest()` and response `SoapClient::__getLastResponse()` to investigate the issue. However with php 7.1, and 7.0 it seems, both methods return an empty string if a SoapFault was thrown.

Expected behaviour is the return of the failed request and response so you can investigate the issue.

We have been able to reproduce the issues by testing against a mock server created with SoapUI (https://www.soapui.org/downloads/soapui.html) against a simple example wsdl (https://www.tutorialspoint.com/wsdl/wsdl_example.htm), by setting the response to always be a SoapFault.

Test script:
---------------
<?php
$soapClient = new SoapClient(
    './HelloService.wsdl',
    [
        'location' => 'http://127.0.0.1:8080',
        'trace' => true,
        'exceptions' => true
    ]
);

try {
    $soapClient->sayHello('Php');
} catch (SoapFault $exception) {
    echo 'Request: ' . trim($soapClient->__getLastRequest()) . PHP_EOL;
    echo PHP_EOL;
    echo 'Response: ' . trim($soapClient->__getLastResponse()) . PHP_EOL;
}

Expected result:
----------------
Request: <XML REQUEST>

Response: <XML RESPONSE>

Actual result:
--------------
Request: 

Response: 

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-12-15 09:47 UTC] richardh at channelgrabber dot com
I couldn't post the actual expected result as the bug submitter was treating the soap request and response as spam, but for completeness please see this gist https://gist.github.com/RichardHeelin/47e701fdf0bc9a5d54de5d866f949280.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 11:01:30 2024 UTC