仓酷云

标题: PHP网页设计WebService最经常使用的两种办法 [打印本页]

作者: 小妖女    时间: 2015-2-3 23:51
标题: PHP网页设计WebService最经常使用的两种办法
培训的第四阶段,就是应用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的最经常使用的两种办法算是写齐了
毕业设计作品自己个人还是觉得比较满意的,尽管有些功能考虑的不全面,也没有很好的实现。
作者: 乐观    时间: 2015-2-9 17:46
最后祝愿,php会给你带来快乐的同时 你也会给他带来快乐。
作者: 海妖    时间: 2015-2-21 20:42
不禁又想起那些说php是草根语言的人,为什么认得差距这么大呢。
作者: 再见西城    时间: 2015-3-2 20:25
Apache不是非得用80或者8080端口的,我刚开始安得时候就是80端口老占用,就用了个 81端口,结果照常,就是输localhost的时候,应该输入为 localhost:81
作者: 蒙在股里    时间: 2015-3-8 02:03
首推的搜索引擎当然是Google大神,其次我比较喜欢 百度知道。不过搜出来的结果往往都是 大家copy来copy去的,运气的的概率很大。
作者: 小魔女    时间: 2015-3-15 19:30
环境搭建好,当你看见你的浏览器输出“it works\\\\\\\"时你一定是喜悦的。在你解决问题的时候,我强烈建议多读php手册。
作者: admin    时间: 2015-3-22 03:09
建议加几个专业的phper的群,当然啦需要说话的人多,一处一点问题能有人回答你的,当然啦要让人回答你的问题,平时就得躲在里面聊天,大家混熟啦,愿意回答你问题的人自然就多啦。
作者: 深爱那片海    时间: 2015-3-25 07:39
说点我烦的低级错误吧,曾经有次插入mysql的时间 弄了300年结果老报错,其实mysql的时间是有限制的,大概是到203X年  具体的记不清啦,囧。
作者: 因胸联盟    时间: 2015-4-4 23:25
说点我烦的低级错误吧,曾经有次插入mysql的时间 弄了300年结果老报错,其实mysql的时间是有限制的,大概是到203X年  具体的记不清啦,囧。
作者: 柔情似水    时间: 2015-4-14 08:50
因为blog这样的可以让你接触更多要学的知识,可以接触用到类,模板,js ,ajax
作者: 小妖女    时间: 2015-4-22 00:00
最后祝愿,php会给你带来快乐的同时 你也会给他带来快乐。
作者: 精灵巫婆    时间: 2015-4-22 04:43
作为一个合格的coder 编码的规范是必须,命名方面我推崇“驼峰法”,另外就是自己写的代码最好要带注释,不然时间长了,就算是自己的代码估计看起来都费事,更不用说别人拉。
作者: 飘飘悠悠    时间: 2015-4-30 02:43
微软最近出的新字体“微软雅黑”,虽然是挺漂亮的,不过firefox  支持的不是很好,所以能少用还是少用的好。
作者: 变相怪杰    时间: 2015-5-1 00:09
实践是检验自己会不会的真理。
作者: 透明    时间: 2015-5-5 10:55
实践是检验自己会不会的真理。
作者: 若相依    时间: 2015-6-28 13:56
为了以后维护的方便最好是代码上都加上注释,“予人方便,自己方便”。此外开发文档什么的最好都弄齐全。我觉得这是程序员必备的素质。虽然会消耗点很多的时间。但是确实是非常有必要的。
作者: 若天明    时间: 2015-7-7 11:50
使用 jquery 等js框架的时候,要随时注意浏览器的更新情况,不然很容易发生框架不能使用。
作者: 兰色精灵    时间: 2015-7-9 22:04
找到的的资料很多都是在论坛里的,需要注册,所以我一般没到一个论坛都注册一个id,所有的id都注册成一样的,这样下次再进来的时候就不用重复注册啦。当然有些论坛的某些资料是需要的付费的。
作者: 谁可相欹    时间: 2015-7-10 13:36
没接触过框架的人,也不用害怕,其实框架就是一种命名规范及插件,学会一个框架其余的框架都很好上手的。




欢迎光临 仓酷云 (http://ckuyun.com/) Powered by Discuz! X3.2