所以我试图在PHP中使用SoapClient。
我有一个课程适用于我正在使用的大多数服务,但我遇到了问题。
其中一个服务在标题有正文之后返回HTTP 500错误的错误。我知道使用SoapUI。但是在PHP中,我总是得到一个错误并且没有响应。
以下是原始形式的SoapUI的回复:
HTTP/1.1 500 Internal Server Error
Server: nginx/1.4.3
Date: Thu, 13 Mar 2014 10:17:49 GMT
Content-Type: multipart/related;start="<rootpart*e3413bc7-fd66-4420-8d19-c241a5e56173@example.jaxws.sun.com>";type="application/xop+xml";boundary="uuid:e3413bc7-fd66-4420-8d19-c241a5e56173";start-info="text/xml"
Content-Length: 706
Connection: keep-alive
--uuid:e3413bc7-fd66-4420-8d19-c241a5e56173
Content-Id: <rootpart*e3413bc7-fd66-4420-8d19-c241a5e56173@example.jaxws.sun.com>
Content-Type: application/xop+xml;charset=utf-8;type="text/xml"
Content-Transfer-Encoding: binary
<?xml version="1.0" ?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<S:Fault xmlns:ns3="http://www.w3.org/2003/05/soap-envelope" xmlns=""><faultcode>S:Server</faultcode>
<faultstring>Validation error</faultstring>
<detail><ns2:WsException xmlns:ns2="http://api.system.bacca.pl/">
<error>Kwota pożyczki netto nie może przekroczyć 5000zł</error>
</ns2:WsException></detail></S:Fault></S:Body></S:Envelope>
--uuid:e3413bc7-fd66-4420-8d19-c241a5e56173--
我已经扩展了SoapClient,以便能够处理来自Soap的单部分多部分消息,这里是代码:
class AdvancedSoapClient extends \SoapClient
{
public function __doRequest($request, $location, $action, $version, $one_way = 0)
{
$response = parent::__doRequest($request, $location, $action, $version, $one_way);
// strip away everything but the xml.
//http://www.w3.org/TR/soap12-mtom/#xop-serialization - strip mime multipart in onepart responses
$resp = preg_replace('#^.*(<\?xml.*>)[^>]*$#s', '$1', $response);
if($resp == null) {
$xml = stripos($response, '<?xml');
$resp = substr($response, $xml);
$xmlEnd = stripos($resp, 'Envelope>');
$resp = substr($resp,0,$xmlEnd+9);
return $resp;
}
return $resp;
}
}
我已尝试在此功能中获取内容但遇到问题时$response
为空...
我有什么想法可以回复这个回复机构?
@Edit: 我从PHP得到的只是SoapFault异常:
消息:内部服务器错误 代码:HTTP
@ EDIT2: 获得完整的原始响应(标题和正文)也将非常有用
答案 0 :(得分:0)
我在这里分享我对这个问题的解决方案......它并不好,但它是我最好的工作方式。
如果发生异常,我运行的类通过cURL在同一个url上执行相同的xml(我已经保存的请求错误)。具有适当配置的cURL将返回所有数据。然后我得到了身体并将xml转换为我自己的对象。
它不好,最优或快......但它的工作......