【发布时间】:2015-12-03 02:13:05
【问题描述】:
以下是“外部”表中的典型 SOAP 请求。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<settleResponse xmlns="urn:ABC">
<settleReturn xmlns="">
<message>Missing first name</message>
<errorCode>INVALID_ACC</errorCode>
<customData>offendingTransactionID=12345678</customData>
<divisionRequestID xsi:nil="true"/>
<status>Failed</status>
</settleReturn>
</settleResponse>
</soapenv:Body>
</soapenv:Envelope>
我需要检索参数 errorCode、status... 并将它们保存到数据库表中。我该怎么做?
【问题讨论】:
-
SOAP XML 上方位于“消息”列内,数据类型为“外部”表中的 CLOB。
-
@apc :请查看此请求。