0

SOAP API のリクエストは以下のとおりです。

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:WashOut"
  <soapenv:Header/>
  <soapenv:Body>
  <urn:Activate_VAS_Request soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
     <OPER_NAME xsi:type="xsd:string">?</OPER_NAME>
     <OPER_PASSWORD xsi:type="xsd:string">?</OPER_PASSWORD>
     <MSISDN xsi:type="xsd:string">?</MSISDN>
     <VAS_ID xsi:type="xsd:int">?</VAS_ID>
     <PARAM_VAL xsi:type="xsd:string">?</PARAM_VAL>
  </urn:Activate_VAS_Request>
  </soapenv:Body>
</soapenv:Envelope>

リクエストのレスポンスを以下に示します。

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
  <soap:Fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
     <faultcode xsi:type="xsd:QName">Server</faultcode>
     <faultstring xsi:type="xsd:string">Cannot find SOAP action mapping for</faultstring>
  </soap:Fault>
 </soap:Body>
</soap:Envelope>

エラーの原因となるもの。

4

2 に答える 2