PHP可以基于示例XML文件编写SOAP函数吗?

时间:2013-03-21 10:39:10

标签: php soap

我有一个示例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>

1 个答案:

答案 0 :(得分:0)

XML文件未连接到SOAP服务器 - XML文件表示SOAP请求。

您需要做的是为您的SOAP服务器编写一个php SOAP客户端。为此,您需要:

  1. SOAP服务器的wsdl文件的uri(这实际上是允许客户端创建请求的元数据 - 它描述了服务器允许的功能)
  2. Zend_Soap_Client类 - http://framework.zend.com/manual/2.0/en/modules/zend.soap.client.html
  3. 您可以在此处阅读有关PHP和SOAP的更多信息Implement SOAP services with the Zend Framework