天天看點

(三)基于PHP——複雜的WSDL的建立(WSDL篇)

轉載請注明出處:http://blog.csdn.net/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',
		'[email protected]'
	);
	
	$pinfo[]=new PhoneBookInfo(
      'lisi',
      '13444444444',
      'friend',
      '[email protected]'
     );
  
  $pinfo[]=new PhoneBookInfo(
      'wangwu',
      '135555555555',
      'friend',
      '[email protected]'
     );   
 	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());
}
?>
           

3、關鍵修改myphone.wsdl

<?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>
           

對比修改地方:

(三)基于PHP——複雜的WSDL的建立(WSDL篇)

測試結果:

(三)基于PHP——複雜的WSDL的建立(WSDL篇)

另外需要注意的地方:

如果遇到I/O錯誤:

1、在php.ini中打開extension=php_curl.dll

2、copy: libeay32.dll、ssleay32.dll到system32下

這兩個dll網上都有下載下傳!我就不傳了!