SOAP を使用する API に問題があります。私のクライアントは PHP で書かれており、以下を生成します。
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://webportal.gb.co.uk/GBPortal" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Body>
<ns1:CreateAuthenticatedSession xsi:type="ns1:CreateAuthenticatedSession">
<szUsername xsi:type="xsd:string">...</szUsername>
<szPassword xsi:type="xsd:string">...</szPassword>
</ns1:CreateAuthenticatedSession>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
ドキュメント内の参照 XML は次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<CreateAuthenticatedSession xmlns="http://webportal.gb.co.uk/GBPortal">
<szUsername>string</szUsername>
<szPassword>string</szPassword>
</CreateAuthenticatedSession>
</soap:Body>
</soap:Envelope>
私が見る限り、機能的には同じです。
API が XML を拒否する原因となる、私が見逃した相違点はありますか? XML を生成するために文字列連結を使用して回避する必要はありません。
編集:機能的な違いがない場合は、回答を残してください。