我有一个示例XML文件,它连接到SOAP服务器并将“usero1”的“Tier”属性设置为“pkg01”。
在SOAP UI上运行此XML文件时,它可以正常工作。
我想通过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>
答案 0 :(得分:0)
XML文件未连接到SOAP服务器 - XML文件表示SOAP请求。
您需要做的是为您的SOAP服务器编写一个php SOAP客户端。为此,您需要:
您可以在此处阅读有关PHP和SOAP的更多信息Implement SOAP services with the Zend Framework