我遇到了 SOAP 调用的问题,我相信它与命名空间有关。我从要发送到的服务器收到不正确的响应,这似乎是由于不正确的 SOAP 信封和命名空间。
152 protected function callWithSOAP($xml) {
153
154 try {
155 $soapClient = new SoapClient($this->mercuryWSDL, array('trace'=>1));
156 } catch (Exception $e) {
157 throw new Exception($e->getMessage());
158 }
159
160 $message = array(
161 'tran'=> $xml,
162 'pw'=> $this->mercuryPassword
163 );
164
165 // Make SOAP Call
166 try {
167 $request = $soapClient->CreditTransaction($message);
168 } catch (Exception $e) {
169 throw new Exception($e->getMessage());
170 }
171
172 $res = $soapClient->__getLastRequest();
173 return $res;
174
175 return $request;
176 }
我在方法签名中输入的 XML 很好,我已经确认这与服务器所期望的相同,特别是有问题的肥皂请求。
这是我使用 SoapClient 发送的 SOAP 请求:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.mercurypay.com">
<SOAP-ENV:Body>
<ns1:CreditTransaction>
<ns1:tran>
<?xml version="1.0"?>
<TStream>
<Transaction>
<MerchantID>******</MerchantID>
<TranType>Credit</TranType>
<TranCode>FSASale</TranCode>
<InvoiceNo>12</InvoiceNo>
<RefNo>12</RefNo>
<Account>
<AcctNo>*******</AcctNo>
<ExpDate>****</ExpDate>
</Account>
<Amount>
<Purchase>25</Purchase>
<FSAPrescription>25</FSAPrescription>
</Amount>
</Transaction>
</TStream>
</ns1:tran>
<ns1:pw>xyz</ns1:pw>
</ns1:CreditTransaction>
</SOAP-ENV:Body>
但这是它实际所期望的......我该如何匹配这个:
<soapenv:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mer="http://www.mercurypay.com" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<mer:CreditTransaction>
<mer:tran>
<?xml version="1.0"?>
<TStream>
<Transaction>
<MerchantID>******</MerchantID>
<TranType>Credit</TranType>
<TranCode>FSASale</TranCode>
<InvoiceNo>1</InvoiceNo>
<RefNo>1</RefNo>
<Account>
<AcctNo>************</AcctNo>
<ExpDate>****</ExpDate>
</Account>
<Amount>
<Purchase>63.54</Purchase>
<FSAPrescription>63.54</FSAPrescription>
</Amount>
</Transaction>
</TStream>
</mer:tran>
<mer:pw>xyz</mer:pw>
</mer:CreditTransaction>
</soapenv:Body>
</soapenv:Envelope>
你会注意到到处都是“mer:”。我相信这是我需要从服务器获得正确响应的原因。请帮帮我,这应该明天出去测试,我们才意识到对此的反应非常不一致。
感谢您提供的任何帮助,我非常感谢。