|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
培训的第四阶段,就是应用PHP语言开发实际的程序。以结合实际的项目开发来进行学习,效果真的很好,在学习完之后就开始练习,能比较容易掌握所学的知识,这是学校的学习所没法比的。企业级使用,次要是讲PHP5对webservice的一些完成(以下的法式可以被JAVA,NET,C等正常挪用) 国际用PHP写WebService的真的很少,网上材料也没几何,公司的项目开辟过程当中,履历了很多这方面的器材,写出来以供人人参考 客户端
代码:
01.<?php
02.header ( "Content-Type: text/html; charset=utf-8" );
03./*
04.* 指定WebService途径并初始化一个WebService客户端
05.*/
06.$ws = "http://soap/soapCspMessage.php?wsdl";
07.$client = new SoapClient ( $ws, array ('trace' => 1, 'uri' => 'http://www.zxsv.com/SoapDiscovery/' ) );
08./*
09.* 获得SoapClient对象援用的办事所供应的一切办法
10.*/
11.echo ("SOAP办事器供应的开放函数:");
12.echo ('<pre>');
13.var_dump ( $client->__getFunctions () );
14.echo ('</pre>');
15.echo ("SOAP办事器供应的Type:");
16.echo ('<pre>');
17.var_dump ( $client->__getTypes () );
18.echo ('</pre>');
19.echo ("履行GetGUIDNode的了局:");
20.//$users = $client->GetUsers();
21.//var_dump($HelloWorld );
22.$parameters = array('uname'=>'zxsv',"upassword"=>'123');
23.$out = $client->HelloWorld($parameters);
24.$datadb = $out->HelloWorldResponse;
25.var_dump($out);
26.?>
办事端
代码:
01.<?php
02.class Member
03.{
04.public $UserId;
05.public $Name;
06.public function __construct($parmas){
07.$this->UserId = $parmas[0];
08.$this->Name = $parmas[1];
09.}
10.}
11.$servidorSoap = new SoapServer('testphp.xml',array('uri' => 'http://www.TestPHP.com/','encoding'=>'utf-8','soap_version' => SOAP_1_2 ));
12.$servidorSoap->setClass(Testphp);
13.$servidorSoap->handle();
14.class Testphp {
15.public function HelloWorld($uid){
16.return array('HelloWorldResult'=>"mystring".$uid->{'uname'}.' and '.$uid->{'upassword'});
17.}
18.public function GetMember($uid){
19.$s=array();
20.for($i=0;$i<$uid->{'uid'};$i++){
21.$s[] =&new Member(array($i, $uid->{'uname'}.'我测试'.$i));
22.}
23.return array('GetMemberResult'=>$s);
24.}
25.}
26.?>
到这里应当都看的懂吧
上面是WSDL文件
代码:
001.<?xml version="1.0" encoding="utf-8"?>
002.<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.TestPHP.com/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.TestPHP.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
003.<wsdl:types>
004.<s:schema elementFormDefault="qualified" targetNamespace="http://www.TestPHP.com/">
005.<s:element name="HelloWorld">
006.<s:complexType>
007.<s:sequence>
008.<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
009.<s:element minOccurs="0" maxOccurs="1" name="upassword" type="s:string" />
010.</s:sequence>
011.</s:complexType>
012.</s:element>
013.<s:element name="HelloWorldResponse">
014.<s:complexType>
015.<s:sequence>
016.<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
017.</s:sequence>
018.</s:complexType>
019.</s:element>
020.<s:element name="GetMember">
021.<s:complexType>
022.<s:sequence>
023.<s:element minOccurs="1" maxOccurs="1" name="uid" type="s:int" />
024.<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
025.</s:sequence>
026.</s:complexType>
027.</s:element>
028.<s:element name="GetMemberResponse">
029.<s:complexType>
030.<s:sequence>
031.<s:element minOccurs="0" maxOccurs="1" name="GetMemberResult" type="tns:ArrayOfMember" />
032.</s:sequence>
033.</s:complexType>
034.</s:element>
035.<s:complexType name="ArrayOfMember">
036.<s:sequence>
037.<s:element minOccurs="0" maxOccurs="unbounded" name="Member" nillable="true" type="tns:Member" />
038.</s:sequence>
039.</s:complexType>
040.<s:complexType name="Member">
041.<s:sequence>
042.<s:element minOccurs="1" maxOccurs="1" name="UserId" type="s:int" />
043.<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
044.</s:sequence>
045.</s:complexType>
046.</s:schema>
047.</wsdl:types>
048.<wsdl:message name="HelloWorldSoapIn">
049.<wsdl:part name="parameters" element="tns:HelloWorld" />
050.</wsdl:message>
051.<wsdl:message name="HelloWorldSoapOut">
052.<wsdl:part name="parameters" element="tns:HelloWorldResponse" />
053.</wsdl:message>
054.<wsdl:message name="GetMemberSoapIn">
055.<wsdl:part name="parameters" element="tns:GetMember" />
056.</wsdl:message>
057.<wsdl:message name="GetMemberSoapOut">
058.<wsdl:part name="parameters" element="tns:GetMemberResponse" />
059.</wsdl:message>
060.<wsdl:portType name="TestPHPSoap">
061.<wsdl:operation name="HelloWorld">
062.<wsdl:input message="tns:HelloWorldSoapIn" />
063.<wsdl:output message="tns:HelloWorldSoapOut" />
064.</wsdl:operation>
065.<wsdl:operation name="GetMember">
066.<wsdl:input message="tns:GetMemberSoapIn" />
067.<wsdl:output message="tns:GetMemberSoapOut" />
068.</wsdl:operation>
069.</wsdl:portType>
070.<wsdl:binding name="TestPHPSoap" type="tns:TestPHPSoap">
071.<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
072.<wsdl:operation name="HelloWorld">
073.<soap:operation soapAction="http://www.TestPHP.com/HelloWorld" />
074.<wsdl:input>
075.<soap:body use="literal" />
076.</wsdl:input>
077.<wsdl:output>
078.<soap:body use="literal" />
079.</wsdl:output>
080.</wsdl:operation>
081.<wsdl:operation name="GetMember">
082.<soap:operation soapAction="http://www.TestPHP.com/GetMember" />
083.<wsdl:input>
084.<soap:body use="literal" />
085.</wsdl:input>
086.<wsdl:output>
087.<soap:body use="literal" />
088.</wsdl:output>
089.</wsdl:operation>
090.</wsdl:binding>
091.<wsdl:binding name="TestPHPSoap12" type="tns:TestPHPSoap">
092.<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
093.<wsdl:operation name="HelloWorld">
094.<soap12:operation soapAction="http://www.TestPHP.com/HelloWorld" />
095.<wsdl:input>
096.<soap12:body use="literal" />
097.</wsdl:input>
098.<wsdl:output>
099.<soap12:body use="literal" />
100.</wsdl:output>
101.</wsdl:operation>
102.<wsdl:operation name="GetMember">
103.<soap12:operation soapAction="http://www.TestPHP.com/GetMember" />
104.<wsdl:input>
105.<soap12:body use="literal" />
106.</wsdl:input>
107.<wsdl:output>
108.<soap12:body use="literal" />
109.</wsdl:output>
110.</wsdl:operation>
111.</wsdl:binding>
112.<wsdl:service name="TestPHP">
113.<wsdl:port name="TestPHPSoap" binding="tns:TestPHPSoap">
114.<soap:address location="http://soap/goodwsdl/testphp.php" />
115.</wsdl:port>
116.<wsdl:port name="TestPHPSoap12" binding="tns:TestPHPSoap12">
117.<soap12:address location="http://soap/goodwsdl/testphp.php" />
118.</wsdl:port>
119.</wsdl:service>
120.</wsdl:definitions>
这里有前往的两个字段,一个是前往字符串,这个很好了解
01.<s:element name="HelloWorld">
02.<s:complexType>
03.<s:sequence>
04.<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
05.<s:element minOccurs="0" maxOccurs="1" name="upassword" type="s:string" />
06.</s:sequence>
07.</s:complexType>
08.</s:element>
09.<s:element name="HelloWorldResponse">
10.<s:complexType>
11.<s:sequence>
12.<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
13.</s:sequence>
14.</s:complexType>
15.</s:element>
这一段就字符串的
那前往数组的就对照费事了,我和老农弄了一两周才发明是WSDL文件写错了,看上面的一段
01.<s:element name="GetMember">
02.<s:complexType>
03.<s:sequence>
04.<s:element minOccurs="1" maxOccurs="1" name="uid" type="s:int" />
05.<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
06.</s:sequence>
07.</s:complexType>
08.</s:element>
09.<s:element name="GetMemberResponse">
10.<s:complexType>
11.<s:sequence>
12.<s:element minOccurs="0" maxOccurs="1" name="GetMemberResult" type="tns:ArrayOfMember" />
13.</s:sequence>
14.</s:complexType>
15.</s:element>
16.<s:complexType name="ArrayOfMember">
17.<s:sequence>
18.<s:element minOccurs="0" maxOccurs="unbounded" name="Member" nillable="true" type="tns:Member" />
19.</s:sequence>
20.</s:complexType>
21.<s:complexType name="Member">
22.<s:sequence>
23.<s:element minOccurs="1" maxOccurs="1" name="UserId" type="s:int" />
24.<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
25.</s:sequence>
26.</s:complexType>
第一段GetMember是输出,最主要的是GetMemberResponse这段,看type=”tns:ArrayOfMember”这里,前往一 个数组,WSDL中界说了ArrayOf这个,前面的就复杂了,ArrayOfMember的类型是type=”tns:Member” ,从name=”Member”失掉要前往的数组,竣工。
Ping Service,博客法式供应一种告诉机制,以便在第一工夫将博客的更新信息宣布到供应Ping Service办事的网站,写聚合的时分研讨了一下
先看尺度吧
这是一个尺度的Ping Service,用XMLRPC来传数据的,正文写的这么具体,代码申明就不需求了吧,PHP5开启XMLRPC办法
client.php
代码:
01.<?php
02.$host = 'zxsv';
03.$port = 80;
04.$rpc_server = '/test/xmlrpc_server.php';
05.$title = 'zxsv';
06.$server = 'http://zxsv/test/';
07.$rss = 'http://zxsv/test/rss.php';
08.//weblogUpdates.Ping办法
09.$Ping = xmlrpc_encode_request('weblogUpdates.Ping', array($title, $server ));
10.//weblogUpdates.extendedPing办法
11.$extendedPing = xmlrpc_encode_request('weblogUpdates.extendedPing', array($title, $server, $rss ));
12.//挪用rpc_client_call函数把一切恳求发送给XML-RPC办事器端后获得信息
13.$response = rpc_client_call($host, $port, $rpc_server, $Ping);
14.$split = '<?xml version="1.0" encoding="iso-8859-1"?>';
15.$xml = explode($split, $response);
16.$xml = $split . array_pop($xml);
17.$response = xmlrpc_decode($xml);
18.//输入从RPC办事器端获得的信息
19.print_r($response);
20./**
21.* 函数:供应给客户端停止毗连XML-RPC办事器真个函数
22.* 参数:
23.* $host 需求毗连的主机
24.* $port 毗连主机的端口
25.* $rpc_server XML-RPC办事器端文件
26.* $request 封装的XML恳求信息
27.* 前往:毗连胜利胜利前往由办事器端前往的XML信息,掉败前往false
28.*/
29.function rpc_client_call($host, $port, $rpc_server, $request) {
30.
$fp = fsockopen($host, $port);
31.
$query = "POST $rpc_server HTTP/1.0\nUser_Agent: XML-RPC Client\nHost: ".$host."\nContent-Type: text/xml\nContent-Length: ".strlen($request)."\n\n".$request."\n";
32.
if (!fputs($fp, $query, strlen($query))) {
33.
$errstr = "Write error";
34.
return false;
35.
}
36.
$contents = '';
37.
while (!feof($fp)){
38.
$contents .= fgets($fp);
39.
}
40.
fclose($fp);
41.
return $contents;
42.}
43.?>
server.php
代码:
01.<?php
02./**
03.* 函数:供应给RPC客户端挪用的函数
04.* 参数:
05.* $method 客户端需求挪用的函数
06.* $params 客户端需求挪用的函数的参数数组
07.* 前往:前往指定挪用了局
08.*/
09.function rpc_server_extendedping($method, $params) {
10.
$title = $params[0];
11.
$server = $params[1];
12.
$rss = $params[2];
13.
//两头的判别,胜利前往$XML_RPC_String
14.
$XML_RPC_String = array('flerror'=>false,'message'=>'Thanks for the ping.');
15.
return $XML_RPC_String;
16.}
17.function rpc_server_ping($method, $params) {
18.
$title = $params[0];
19.
$server = $params[1];
20.
//两头的判别,胜利前往$XML_RPC_String
21.
$XML_RPC_String = array('flerror'=>false,'message'=>'Thanks for the ping.');
22.
return $XML_RPC_String;
23.}
24.//发生一个XML-RPC的办事器端
25.$xmlrpc_server = xmlrpc_server_create();
26.//注册一个办事器端挪用的办法rpc_server,实践指向的是rpc_server_extendedping函数
27.xmlrpc_server_register_method($xmlrpc_server, "weblogUpdates.extendedPing", "rpc_server_extendedping");
28.xmlrpc_server_register_method($xmlrpc_server, "weblogUpdates.Ping", "rpc_server_ping");
29.//承受客户端POST过去的XML数据
30.$request = $HTTP_RAW_POST_DATA;
31.//print_r($request);
32.//履行挪用客户真个XML恳求后获得履行了局
33.$xmlrpc_response = xmlrpc_server_call_method($xmlrpc_server, $request, null);
34.//把函数处置后的了局XML停止输入
35.header('Content-Type: text/xml');
36.echo $xmlrpc_response;
37.//烧毁XML-RPC办事器端资本
38.xmlrpc_server_destroy($xmlrpc_server);
39.?>
类写的,有BUG
代码:
01.<?php
02.class Pings {
03.
public $xmlrpc_server;
04.
public $xmlrpc_response;
05.
public $methodName;
06.
public function __construct() {
07.
//发生一个XML-RPC的办事器端
08.
$this->xmlrpc_server = xmlrpc_server_create ();
09.
$this->run ();
10.
}
11.
12.
//注册一个办事器端挪用的办法rpc_server,实践指向的是ping函数
13.
public function rpc_server() {
14.
$this->methodName = !$this->methodName ? 'weblogUpdates.extendedPing':'weblogUpdates.Ping';
15.
xmlrpc_server_register_method ( $this->xmlrpc_server, $this->methodName, array (__CLASS__, "ping"));
16.
}
17.
/**
18.
* 函数:供应给RPC客户端挪用的函数
19.
* 参数:
20.
* $method 客户端需求挪用的函数
21.
* $params 客户端需求挪用的函数的参数数组
22.
* 前往:前往指定挪用了局
23.
*/
24.
public function ping($method, $params) {
25.
$this->title = $params [0];
26.
$this->server = $params [1];
27.
$this->rss = $params [2];
28.
$this->tag = $params [3];
29.
//$a = $this->title ? $this->update():'';
30.
$string = array ('flerror' => false, 'message' => 'Thanks for the ping.', 'legal' => "You agree that use of the blueidea.com ping service is governed by the Terms of Use found at www.blueidea.com." );
31.
return $string;
32.
}
33.
34.
public function update(){
35.
echo '这里放更新的一些前提';
36.
}
37.
38.
public function run() {
39.
$this->rpc_server ();
40.
$request = isset ( $GLOBALS ["HTTP_RAW_POST_DATA"] ) ? file_get_contents ( "php://input" ) : $GLOBALS ["HTTP_RAW_POST_DATA"];
41.
$this->xmlrpc_response = xmlrpc_server_call_method ( $this->xmlrpc_server, $request, null );
42.
//把函数处置后的了局XML停止输入
43.
header ( 'Content-Type: text/xml' );
44.
echo $this->xmlrpc_response;
45.
}
46.
47.
//烧毁XML-RPC办事器端资本
48.
public function __destruct() {
49.
xmlrpc_server_destroy ( $this->xmlrpc_server );
50.
}
51.}
52.$Obj = new Pings ( );
53.?>
WebService的最经常使用的两种办法算是写齐了
毕业设计作品自己个人还是觉得比较满意的,尽管有些功能考虑的不全面,也没有很好的实现。 |
|