PHP で適切な SOAP 呼び出しを作成するのに問題があります。SOAP UI で次の呼び出しをテストして動作しましたが、オブジェクト、配列、SOAPHeaders の作成からすべてを試しましたが、正しい呼び出しを取得できないようです。SOAP UI で機能するリクエストは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="com.dtn.aghost.API.subscriptions">
<soapenv:Header>
<com:ServiceCredentials>
<usernamePasswordCombo>
<username>[username]</username>
<password>[password]</password>
</usernamePasswordCombo>
</com:ServiceCredentials>
</soapenv:Header>
<soapenv:Body>
<com:SubscriptionServiceIdList>
<visible>1</visible>
</com:SubscriptionServiceIdList>
</soapenv:Body>
</soapenv:Envelope>
ありがとう!