0

我尝试使用 SOAP for ipayment(德国)创建支付系统,并在其文档中描述,通过以下 SOAP 请求,我可能会得到第二个代码示例中显示的响应。

<?xml version="1.0" encoding="ISO-8859-1"?> 
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
 <SOAP-ENV:Body> 
  <capture> 
    <accountData> 
     <accountId>99999</accountId> 
     <trxuserId>99999</trxuserId> 
     <trxpassword>0</trxpassword> 
     <adminactionpassword> 
       5cfgRT34xsdedtFLdfHxj7tfwx24fe</adminactionpassword> 
    </accountData> 
    <origTrxNumber>1-25949395</origTrxNumber> 
    <transactionData> 
     <trxAmount>119</trxAmount> 
     <trxCurrency>EUR</trxCurrency> 
    </transactionData> 
  </capture> 
 </SOAP-ENV:Body> 
</SOAP-ENV:Envelope>

来自服务器的示例响应是

<?xml version="1.0" encoding="ISO-8859-1"?> 
<SOAP-ENV:Envelope 
 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
 <SOAP-ENV:Body> 
  <ns1:captureResponse 
    xmlns:ns1="https://ipayment.de/service_v3/binding"> 
    <ipaymentReturn> 
     <status>SUCCESS</status> 
     <successDetails> 
      <retTransDate>25.07.08</retTransDate> 
      <retTransTime>17:08:08</retTransTime> 
      <retTrxNumber>1-25949407</retTrxNumber> 
      <retAuthCode></retAuthCode> 
     </successDetails> 
     <addressData> 
      <addrStreet>Ernst-Frey-Str. 9</addrStreet> 
      <addrCity>Karlsruhe</addrCity> 
      <addrZip>76135</addrZip> 
      <addrCountry>DE</addrCountry> 
     </addressData> 
     <addresscheckResult>UNCHECKED</addresscheckResult> 
     <paymentMethod>VisaCard</paymentMethod> 
     <trxPaymentDataCountry>US</trxPaymentDataCountry> 
    </ipaymentReturn> 
  </ns1:captureResponse> 
 </SOAP-ENV:Body> 
</SOAP-ENV:Envelope>

但我不知道如何创建请求,如 grails 所示。我尝试使用 Spring WS 插件,但文档中的示例代码根本没有帮助。你知道一些例子或任何想法的任何来源吗?WSDL 模式可以在https://ipayment.de/service/3.0/?wsdl找到。 谢谢。

4

2 回答 2

2

如果 WS 的身份验证不需要 cookie(它们不应该 :-)),groovy-wslite是一个很好的库,可用于创建 SOAP 请求。

另一种方法是使用HTTPBuilder,它允许您创建确切的游览请求并在需要时处理 cookie(您可以使用 wslite 做到这一点,但需要做更多的工作)

于 2012-07-06T13:38:54.883 回答
0

如果您正在编写脚本,则提示可能是直接从 groovy 中使用 curl(如果有的话)。它非常强大,易于处理,您可以在单线中完成。

例如: "curl -d \"${payload}\" -H \"Content-Type: text/xml\" ${wsUrl}".execute.text 其中有效负载是请求(包括肥皂信封)。

于 2012-07-09T12:12:38.890 回答