0

我必须生成以下代码并假设使用 zend_soap_client 来完成,但我不知道该怎么做,因为我没有 wsdl 文件。这里的代码:

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<processOCIMessage soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<arg0 xsi:type="soapenc:string"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
<BroadsoftDocument protocol="OCI"
xmlns="C" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<sessionId xmlns="">unique_sessionId </sessionId>
<command xsi:type="ServiceProviderDnGetSummaryListRequest" xmlns="">
<serviceProviderId>your_serviceProvider_Id
</serviceProviderId>
</command>
</BroadsoftDocument>
</arg0>
</processOCIMessage>
</soapenv:Body>
</soapenv:Envelope>

我想我必须在非wsdl模式下这样做......

任何帮助将不胜感激。
问候安德里亚

4

1 回答 1

0

如果您正在请求 Soap 服务,那么您将需要 WSDL URI。

如果您正在创建 SOAP 服务,请使用资源

http://bogdan-albei.blogspot.com/2009/05/quickstart-web-services-with-soap-and.html

于 2013-03-15T18:11:47.570 回答