- 浏览: 66701 次
- 性别:
- 来自: 武汉
文章分类
最新评论
-
xuehanxin:
楼主威武好东西
grails 文档 -
xuehanxin:
楼主乃神人也,崇拜中
ActiveMQ 与Spring结合示例 -
wkcgy:
楼主辛苦了!!
jeecms的自定义的伪静态的实现分析 -
a123456603:
有没有qq的联系一下
jeecms的自定义的伪静态的实现分析 -
ningzhisheng:
最近也在学习jeecms,谢谢分享!
jeecms的自定义的伪静态的实现分析
基于Zend_Soap的webservice及其多语言通信(java)(一)
看了一下ZF手册中的关于Zend_Soap的说明,感觉很晕,不知所云,是不是个人理解有问题,那就不得而知了,总觉得没有动手做过的就算看了再多文档也不顶事,于是做了一个关于复杂对象传输的例子,对于那些简单对字符窜做的东西基本不实用,所以直接做个可以用到项目中的。
对于复杂对象的传输这里决不仅指的是数组,还有自定义对象(stdclass),有人说php数组可以解决复杂数据结构的问题用自定义对象不是多此一举,原则上是这样,但是如果涉及到多语言通信的话,问题就会暴露出来,这个我们先放一下,在说完这个实例后再谈。
Zend_Soap中的自定义对象的关键点在于annotation,annotation在java中用的较多,不知道php中是不是这么叫,总知是一个参数类型的说明,看例子。
<?php class Role{ /** * @return string */ public function getDesc() { return $this->desc; } /** * @return string */ public function getParentid() { return $this->parentid; } /** * @return string */ public function getRoleid() { return $this->roleid; } /** * @return string */ public function getRolename() { return $this->rolename; } /** * @param string $desc */ public function setDesc($desc) { $this->desc = $desc; } /** * @param string $parentid */ public function setParentid($parentid) { $this->parentid = $parentid; } /** * @param string $roleid */ public function setRoleid($roleid) { $this->roleid = $roleid; } /** * @param string $rolename */ public function setRolename($rolename) { $this->rolename = $rolename; } /** * @var string */ public $roleid; /** * @var string */ public $rolename; /** * @var string */ public $parentid; /** * @var string */ public $desc; }
这里定义了一个Role对象,并用标明了各个成员变量的类型,注意这种annotaion是不能省略的.
下面再给一个复合的数据结构的定义。
require_once 'Priority.php'; class RolePriority{ /** * @return Priority[] */ public function getPrioritys() { return $this->prioritys; } /** * @return string */ public function getRoleid() { return $this->roleid; } /** * @return string */ public function getRolename() { return $this->rolename; } /** * @param Priority[] $prioritys */ public function setPrioritys($prioritys) { $this->prioritys = $prioritys; } /** * @param string $roleid */ public function setRoleid($roleid) { $this->roleid = $roleid; } /** * @param string $rolename */ public function setRolename($rolename) { $this->rolename = $rolename; } /** * @var string */ public $rolename; /** * @var string */ public $roleid; /** * @var Priority[] */ public $prioritys; }
这样,根据需求,一个webservice可能要设计很多这样的数据结构,这里就省略了,做法大同小异而已。
在定义完这些对象以后,我们要定义一个webservice的接口文件,也就是要这个webservice去做什么。这里定义一个名叫Gateway的文件,当然根据ZF的命名规则,这个是要加前缀的,具体怎么回事,请参考zf文档,这里不细说。
<?php
require_once 'CommonMsg.php'; require_once 'MsgResp.php'; require_once 'User.php'; require_once 'UserPriority.php'; require_once 'Userole.php'; require_once 'RolePriority.php'; require_once 'Role.php'; require_once 'Priority.php'; class Custom_Soap_Gateway{ /** * @param string * @param string * @param string * @return MsgResp */ public function logonUser($username, $password,$key) { $msgResp =new MsgResp(); $user =new User(); if($username&&$password&&$key) { $user->userid ='1'; $user->sex='男'; $user->username='刘少奇'; } $msgResp->user =$user; $msgResp->code='0000'; $msgResp->msg='login successfully'; return $msgResp; } /** * @param string * @param string * @return MsgResp */ public function logoutUser($username,$key) { $msgResp =new MsgResp(); $user =new User(); if($username&&$key) { $user->userid ='1'; $user->sex='男'; $user->username='刘少奇'; } $msgResp->user =$user; $msgResp->code='0000'; $msgResp->msg='logout successfully'; return $msgResp; } /** * @param string * @param string * @return Userole */ public function getUserRole($username,$key) { $userole =new Userole(); for($i=0;$i<10;$i++) { $role =new Role(); $role->roleid =$i; $role->parentid='-1'; $role->rolename="role_$i"; $role->desc='xixi'; $userole->roles[$i]=$role; } $userole->userid='1'; $userole->username='刘少奇'; return $userole; } /** * @param array * @param string * @return MsgResp */ public function modifyUser($userinfo,$key) { $msgResp =new MsgResp(); $user =new User(); if($userinfo&&$key) { $user->userid =$userinfo[0]; $user->sex =$userinfo[1]; $user->username =$userinfo[2]; } $msgResp->user =$user; $msgResp->code='0000'; $msgResp->msg='modify successfully'; return $msgResp; } /** * @param string * @param string * @return UserPriority */ public function getUserPriority($username,$key) { $userPriority =new UserPriority(); if($username&&$key) { for($i=0;$i<10;$i++) { $priority =new Priority(); $priority->prid=$i; $priority->operation="opti_$i"; $userPriority->prioritys[$i]=$priority; } $userPriority->userid='1'; $userPriority->username='刘少奇'; } return $userPriority; } }
这里直接就给了个处理文件,返回值写死了,但做法是一样的,定义的几个方法会暴露于交互接口。
在Action中的调用处理,咱们这里就直接写了不做动态的写法
<?php /** * * @author Administrator * */ class admin_SoapController extends Zend_Controller_Action { private $_WSDL_URI="http://localhost/ZFDEMO/admin/soap/index?wsdl"; public function preDispatch() { } public function indexAction() { if (isset ( $_GET ['wsdl'] )) { //return the WSDL $this->hadleWSDL(); } else { //handle SOAP request $this->handleSOAP (); } } public function clientAction() { error_reporting( E_ALL | E_STRICT ); try { $client = new Zend_Soap_Client('http://localhost/ZFDEMO/admin/soap/index?wsdl'); $rs_logout = $client->logoutUser('刘少奇','123456'); $rs_logon =$client->logonUser('刘少奇','123456','key'); $rs_userole =$client->getUserRole('刘少奇','123456'); $rs_priority =$client->getUserPriority('刘少奇','123456'); $userinfo =array( '0'=>'1', '1'=>'刘少奇', '2'=>'男' ); $rs_moduser =$client->modifyUser($userinfo,'11111'); Zend_Debug::dump($rs_logout,'logout user info',true); Zend_Debug::dump($rs_moduser,'modify user info',true); Zend_Debug::dump($rs_logon,'logon user info',true); Zend_Debug::dump($rs_userole,'userole info',true); Zend_Debug::dump($rs_priority,'user property info',true); } catch (SoapFault $s) { echo $s->faultstring; die('ERROR: [' . $s->faultcode . '] ' . $s->faultstring); } catch (Exception $e) { echo $e->getMessage(); die('ERROR: ' . $e->getMessage()); } } private function hadleWSDL() { $autodiscover = new Zend_Soap_AutoDiscover ('Zend_Soap_Wsdl_Strategy_ArrayOfTypeComplex'); $autodiscover->setUri('http://localhost/ZFDEMO/admin/soap/index'); $autodiscover->setClass ('Custom_Soap_Gateway'); $autodiscover->handle (); } private function handleSOAP() { try{ $soap = new Zend_Soap_Server( $this->_WSDL_URI ); $soap->setClass('Custom_Soap_Gateway'); $soap->registerFaultException(array('Custom_Soap_SoapException')); $soap->handle(); }catch(Exception $e) { echo $e->getMessage(); } } }
注意 http://localhost/ZFDEMO/admin/soap/index?wsdl 这个url实际上指向的就是indexAction,它的处理方法当然是hadleWSDL(), 其作用是通过我们的接口类自动生成wsdl的文件,并将其指向soap_server进行处理($autodiscover->setUri('http://localhost/ZFDEMO/admin/soap/index');),我们直接在IE上输入此URL得到wsdl的完整内容。
(略)
到此,soap端口已经开放,可以进行通信。于是通过soap_client(clientAction)去调用。
得到结果如下:
["user"] => object(stdClass)#45 (3) { ["userid"] => string(1) "1" ["username"] => string(9) "刘少奇" ["sex"] => string(3) "男" } ["code"] => string(4) "0000" ["msg"] => string(19) "logout successfully" } modify user info object(stdClass)#70 (3) { ["user"] => object(stdClass)#71 (3) { ["userid"] => string(1) "1" ["username"] => string(3) "男" ["sex"] => string(9) "刘少奇" } ["code"] => string(4) "0000" ["msg"] => string(19) "modify successfully" } logon user info object(stdClass)#46 (3) { ["user"] => object(stdClass)#47 (3) { ["userid"] => string(1) "1" ["username"] => string(9) "刘少奇" ["sex"] => string(3) "男" } ["code"] => string(4) "0000" ["msg"] => string(18) "login successfully" } userole info object(stdClass)#48 (3) { ["username"] => string(9) "刘少奇" ["userid"] => string(1) "1" ["roles"] => array(10) { [0] => object(stdClass)#49 (4) { ["roleid"] => string(1) "0" ["rolename"] => string(6) "role_0" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [1] => object(stdClass)#50 (4) { ["roleid"] => string(1) "1" ["rolename"] => string(6) "role_1" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [2] => object(stdClass)#51 (4) { ["roleid"] => string(1) "2" ["rolename"] => string(6) "role_2" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [3] => object(stdClass)#52 (4) { ["roleid"] => string(1) "3" ["rolename"] => string(6) "role_3" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [4] => object(stdClass)#53 (4) { ["roleid"] => string(1) "4" ["rolename"] => string(6) "role_4" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [5] => object(stdClass)#54 (4) { ["roleid"] => string(1) "5" ["rolename"] => string(6) "role_5" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [6] => object(stdClass)#55 (4) { ["roleid"] => string(1) "6" ["rolename"] => string(6) "role_6" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [7] => object(stdClass)#56 (4) { ["roleid"] => string(1) "7" ["rolename"] => string(6) "role_7" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [8] => object(stdClass)#57 (4) { ["roleid"] => string(1) "8" ["rolename"] => string(6) "role_8" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } [9] => object(stdClass)#58 (4) { ["roleid"] => string(1) "9" ["rolename"] => string(6) "role_9" ["parentid"] => string(2) "-1" ["desc"] => string(4) "xixi" } } } user property info object(stdClass)#59 (3) { ["username"] => string(9) "刘少奇" ["userid"] => string(1) "1" ["prioritys"] => array(10) { [0] => object(stdClass)#60 (6) { ["prid"] => string(1) "0" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_0" ["desc"] => NULL } [1] => object(stdClass)#61 (6) { ["prid"] => string(1) "1" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_1" ["desc"] => NULL } [2] => object(stdClass)#62 (6) { ["prid"] => string(1) "2" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_2" ["desc"] => NULL } [3] => object(stdClass)#63 (6) { ["prid"] => string(1) "3" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_3" ["desc"] => NULL } [4] => object(stdClass)#64 (6) { ["prid"] => string(1) "4" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_4" ["desc"] => NULL } [5] => object(stdClass)#65 (6) { ["prid"] => string(1) "5" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_5" ["desc"] => NULL } [6] => object(stdClass)#66 (6) { ["prid"] => string(1) "6" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_6" ["desc"] => NULL } [7] => object(stdClass)#67 (6) { ["prid"] => string(1) "7" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_7" ["desc"] => NULL } [8] => object(stdClass)#68 (6) { ["prid"] => string(1) "8" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_8" ["desc"] => NULL } [9] => object(stdClass)#69 (6) { ["prid"] => string(1) "9" ["type"] => NULL ["url"] => NULL ["module"] => NULL ["operation"] => string(6) "opti_9" ["desc"] => NULL } } }php的调用到此结束, 关于针对多语言通信的记录在下一篇内容中。
相关推荐
php扩展 php_soap webservice服务端搭建demo 附件中包含所有文件,详细说明见readme
标题中的“json.rar_Soap To json_java webservice json_json rpc SOAP_json we”提到了几个关键点: 1. **SOAP to JSON**:SOAP(Simple Object Access Protocol)是一种基于XML的协议,用于在Web上交换结构化和...
本文档中提到的例子涉及到了一个基于股票市场交易信息的WebService,其中一项功能就是返回某一天内所有股票的总交易量。 服务名为`urn:BasicTradingService`,包含了一个名为`getTotalVolume()`的方法,该方法接收...
SOAP(Simple Object Access Protocol)协议是一种轻量级的、基于XML的协议,用于在Web服务中交换结构化和类型化的信息。它允许不同系统间的应用程序通过网络进行通信,不依赖特定的操作系统或编程语言。SOAP协议...
【标签】"webservice-sqlserver java_webservice webservice__sgip wsdl_webservice_ wsdl.rar"进一步揭示了技术栈。"sqlserver"表明数据库管理是通过SQL Server完成的,这通常涉及到使用JDBC(Java Database ...
### Java使用SOAP获取WebService实例解析 #### WebService简介 WebService是一种跨编程语言和操作系统平台的、在网络上进行数据交换的一种方式。它使用标准的Internet协议,如HTTP、XML、SOAP等来实现不同系统间的...
JAVA 调用 SAP SOAP webservice 详解 在本文中,我们将详细介绍如何使用 JAVA 调用 SAP SOAP webservice,包括配置 SAP 登录信息、创建 java 项目、添加 web 服务客户端、生成 JAVA 类、调用接口等步骤。 配置 SAP...
为了解决这些问题,一种基于XML的SOAP/WebService架构应运而生。这种架构不仅能够支持跨平台通信,还具备良好的可扩展性和互操作性。 #### 2. 基于XML的SOAP/WebService架构的技术细节 ##### 2.1 XML技术 XML...
标签中的“java_webservice”和“service_webservice”强调了这是基于Java的Web服务实现,而“web_service_”和“webservice”则指代Web服务本身。标签“sayhello__webservice”可能是对Web服务功能的简要概括。 在...
Java与SOAP(Simple Object Access Protocol)以及Web服务的结合是一种常见的技术栈,用于构建分布式系统。本教程将深入探讨如何使用Java进行SOAP Web服务的调用,并帮助你掌握这一技能。 首先,理解SOAP是什么至关...
本源码是基于zend框架实现的webservice soap,用户中心,可实现同步注册,同步获取用户信息,不限于语言
java代码-使用java解决http请求SOAP webService接口的源代码 ——学习参考资料:仅用于个人学习使用!
在IT行业中,Web服务是应用程序之间进行通信的一种标准方式,而SOAP(Simple Object Access Protocol)是一种基于XML的协议,用于交换结构化的、机器可读的数据。SOAP WebService调试工具是开发人员用来测试、验证和...
SOAP(Simple Object Access Protocol)是一种基于XML的协议,用于在Web服务中交换结构化和类型化信息。在C#、C++以及C#(也就是.NET框架中的SOAP支持)中,SOAP序列化是将对象转换为可以发送通过网络的XML消息的...
SOAP(Simple Object Access Protocol)是一种基于XML的网络通信协议,用于在不同的应用程序之间交换结构化信息。它允许服务提供者和服务消费者通过HTTP等传输协议进行通信。本DEMO主要展示了如何在Java环境中使用...
通过深入学习这些Java SOAP知识点,开发者能够有效地构建和使用SOAP Web服务,进行分布式系统的集成和通信。提供的学习资料应该包含了示例代码、教程文档以及可能的案例研究,帮助你更好地理解和应用这些概念。在...
在IT行业中,C++是一种强大的编程语言,常用于开发高性能的应用程序,包括系统软件、游戏引擎、财务和工程软件等。而Web服务则是一种通过HTTP协议进行通信的技术,允许不同系统之间的数据交换。当我们需要在C++应用...
1. **WebServices基本概念**:WebServices是一种基于网络的服务,它能够通过XML(可扩展标记语言)进行数据交换,并使用SOAP协议传输数据。WSDL是WebServices的接口定义,用于描述服务的位置、操作以及如何调用这些...