版权声明:本文为博主原创文章,未经博主允许不得转载。
转载请注明出处:http://blog.youkuaiyun.com/cwt0408/article/details/6952936
(谢谢合作!)
调用数组内容:
1、修改service.php
- <?php
- class PhoneBookInfo{
- public $name,$number,$relationship,$email;
- public function __construct($pname,$pnumber,$prelationship,$pemail){
- $this->name=$pname;
- $this->number=$pnumber;
- $this->relationship=$prelationship;
- $this->email=$pemail;
- }
- }
- /*可以在这里调用数据库,下面是测试数据*/
- function GetPhoneBook($inname)
- {
- $pinfo=array();
- $pinfo[]=new PhoneBookInfo(
- 'zhangsan',
- '13333333333',
- 'friend',
- '3333@163.com'
- );
- $pinfo[]=new PhoneBookInfo(
- 'lisi',
- '13444444444',
- 'friend',
- '4444@163.com'
- );
- $pinfo[]=new PhoneBookInfo(
- 'wangwu',
- '135555555555',
- 'friend',
- '5555@163.com'
- );
- return $pinfo;
- }
- $server = new SoapServer("myphone.wsdl");
- $server->addFunction("GetPhoneBook");
- $server->handle ();
- ?>
2、client.php
- <?php
- header('Content-Type:text/html;charset=utf-8');
- $client = new SoapClient("http://www.mysoapservice.cn/service.php?WSDL" , array('trace'=>true));
- var_dump($client->__getTypes());
- try {
- $response = $client->GetPhoneBook('zhang');
- var_dump($response);
- }catch (SoapFault $sf){
- var_dump($sf);
- print ($client->__getLastRequest());
- print ($client->__getLastResponse());
- }
- ?>
- <?xml version ='1.0' encoding ='UTF-8' ?>
- <definitions name='phonebook'
- targetNamespace='http://www.mysoapservice.cn/'
- xmlns:tns='http://www.mysoapservice.cn/'
- xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
- xmlns:xsd='http://www.w3.org/2001/XMLSchema'
- xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
- xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
- xmlns='http://schemas.xmlsoap.org/wsdl/'>
- <types>
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.mysoapservice.cn/"
- xmlns:Q1="soapenc">
- <xsd:complexType name="PhoneBookInfoArray">
- <xsd:complexContent>
- <xsd:restriction base="soapenc:Array">
- <xsd:attribute ref="sopenc:arrayType" wsdl:arrayType="tns:PhoneBookInfo[]"/>
- </xsd:restriction>
- </xsd:complexContent>
- </xsd:complexType>
- <xsd:complexType name="PhoneBookInfo">
- <xsd:all>
- <xsd:element name="name" type="xsd:string"></xsd:element>
- <xsd:element name="number" type="xsd:string"></xsd:element>
- <xsd:element name="relationship" type="xsd:string"></xsd:element>
- <xsd:element name="email" type="xsd:string"></xsd:element>
- </xsd:all>
- </xsd:complexType>
- </xsd:schema>
- </types>
- <message name='GetPhoneBookRequest'>
- <part name="inname" type="xsd:string"/>
- </message>
- <message name='GetPhoneBookResponse'>
- <part name="phonebookInfo" type="xsd:PhoneBookInfoArray"/>
- </message>
- <portType name='PhoneBookToEveryOneProt'>
- <operation name='GetPhoneBook'>
- <input message='tns:GetPhoneBookRequest'/>
- <output message='tns:GetPhoneBookResponse'/>
- </operation>
- </portType>
- <binding name='PhoneBookSOAP' type='tns:PhoneBookToEveryOneProt'>
- <soap:binding style='rpc'
- transport='http://schemas.xmlsoap.org/soap/http'/>
- <operation name='GetPhoneBook'>
- <soap:operation soapAction='http://www.cwtservice.cn/newOperation/'/>
- <input>
- <soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
- encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
- </input>
- <output>
- <soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
- encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
- </output>
- </operation>
- </binding>
- <service name='PhoneBookService'>
- <port name='PhoneBookSOAP' binding='tns:PhoneBookSOAP'>
- <soap:address location='http://www.mysoapservice.cn/service.php'/>
- </port>
- </service>
- </definitions>
测试结果:
另外需要注意的地方:
如果遇到I/O错误:
1、在php.ini中打开extension=php_curl.dll
2、copy: libeay32.dll、ssleay32.dll到system32下
这两个dll网上都有下载!我就不传了!
本文详细介绍了如何使用PHP创建复杂WSDL的过程,包括修改service.php文件、配置客户端及关键调整myphone.wsdl文件的步骤。通过实例演示了如何实现服务调用并处理返回的数据。
1679

被折叠的 条评论
为什么被折叠?



