我正在尝试处理来自 First Data 的全球网关的 SOAP 响应。我以前使用过 SoapClient,但没有 wsdl——而且公司说他们不提供。
我已经尝试了各种其他方法,例如 SimpleXMLElement 基于此处和 PHP 手册中的示例,但我无法工作。我怀疑命名空间是我的问题的一部分。任何人都可以提出一种方法或指出一个类似的例子 - 我的谷歌努力迄今为止没有结果。
使用 PHP 5。
部分 SOAP 响应(去除了它之前的所有 HTML 标头内容)如下所示:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<fdggwsapi:FDGGWSApiOrderResponse xmlns:fdggwsapi="http://secure.linkpt.net/fdggwsapi/schemas_us/fdggwsapi">
<fdggwsapi:CommercialServiceProvider/>
<fdggwsapi:TransactionTime>Thu Nov 29 17:03:18 2012</fdggwsapi:TransactionTime>
<fdggwsapi:TransactionID/>
<fdggwsapi:ProcessorReferenceNumber/>
<fdggwsapi:ProcessorResponseMessage/>
<fdggwsapi:ErrorMessage>SGS-005005: Duplicate transaction.</fdggwsapi:ErrorMessage>
<fdggwsapi:OrderId>A-e833606a-5197-45d6-b990-81e52df41274</fdggwsapi:OrderId>
...
<snip>
我还需要能够确定是否发出 SOAP 错误信号。XML 看起来像这样:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<SOAP-ENV:FaultX>
<faultcode>SOAP-ENV:Client</faultcode>
<faultstring xml:lang="en">MerchantException</faultstring>
<detail>
cvc-pattern-valid: Value '9999185.00' is not facet-valid with respect to pattern '([1-9]([0-9]{0,3}))?[0-9](\.[0-9]{1,2})?' for type '#AnonType_ChargeTotalAmount'.
cvc-type.3.1.3: The value '9999185.00' of element 'v1:ChargeTotal' is not valid.
</detail>
</SOAP-ENV:FaultX>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
使用代码先生的回答,我已经能够从非故障响应中检索数据。但我需要确定我正在处理的数据包类型并从这两种类型中提取数据。如果他们只提供一个wsdl,那就容易多了!