SOAP サーバーに接続し、"usero1" の "Tier" 属性を "pkg01" に設定するサンプル XML ファイルがあります。
この XML ファイルを SOAP UI で実行すると、機能します。
そして、PHP を介してこのジョブの SOAP 関数を作成したいと考えています。しかし、開始方法がわかりません。また、呼び出す必要がある関数の数もわかりません。誰でも助けてください。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.subscriberservices.sandvine.com">
<soapenv:Header xmlns:svsec="http://services.sandvine.com">
<svsec:username>username</svsec:username>
<svsec:password>password</svsec:password>
</soapenv:Header>
<soapenv:Body>
<ws:SetSubscriberAttributesRequest>
<Debug>false</Debug>
<BulkOperationFailureBehaviour>AllOrNothing</BulkOperationFailureBehaviour>
<SetSubscriberAttributeParameterSets>
<SetSubscriberAttributeParameterSet>
<SubscriberKey>
<SubscriberRealmKey>
<Name>DEFAULT</Name>
</SubscriberRealmKey>
<Name>user01</Name>
</SubscriberKey>
<SubscriberAttributeDefinitionKey>
<Name>Tier</Name>
</SubscriberAttributeDefinitionKey>
<Value>pkg01</Value>
</SetSubscriberAttributeParameterSet>
</SetSubscriberAttributeParameterSets>
<ResponseGroups>
<ResponseGroup>Subscriber.Shallow</ResponseGroup>
</ResponseGroups>
</ws:SetSubscriberAttributesRequest>
</soapenv:Body>
</soapenv:Envelope>