`
viproc
  • 浏览: 46134 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

PHP企业级应用之WebService

    博客分类:
  • php
php 
阅读更多

经典里的PHP气氛还是太差了,都是些简单的应用,我来段企业级应用吧,主要是讲PHP5对webservice的一些实现(以下的程序可以被JAVA,NET,C等正常调用)
国内用PHP写WebService的真的很少,网上资料也没多少,公司的项目开发过程中,经历了不少这方面的东西,写出来以供大家参考(谢谢老农提供的WSDL和程序文件)
客户端

复制内容到剪贴板
代码:
<?php
header ( "Content-Type: text/html; charset=utf-8" );
/*
* 指定WebService路径并初始化一个WebService客户端
*/
$ws = "http://soap/soapCspMessage.php?wsdl";
$client = new SoapClient ( $ws, array ('trace' => 1, 'uri' => 'http://www.zxsv.com/SoapDiscovery/' ) );
/*
* 获取SoapClient对象引用的服务所提供的所有方法
*/
echo ("SOAP服务器提供的开放函数:");
echo ('<pre>');
var_dump ( $client->__getFunctions () );
echo ('</pre>');
echo ("SOAP服务器提供的Type:");
echo ('<pre>');
var_dump ( $client->__getTypes () );
echo ('</pre>');
echo ("执行GetGUIDNode的结果:");
//$users = $client->GetUsers();
//var_dump($HelloWorld );
$parameters = array('uname'=>'zxsv',"upassword"=>'123');
$out = $client->HelloWorld($parameters);
$datadb = $out->HelloWorldResponse;
var_dump($out);
?>

服务端

复制内容到剪贴板
代码:
<?php
class Member
{
public $UserId;
public $Name;
public function __construct($parmas){
$this->UserId = $parmas[0];
$this->Name = $parmas[1];
}
}
$servidorSoap = new SoapServer('testphp.xml',array('uri' => 'http://www.TestPHP.com/','encoding'=>'utf-8','soap_version' => SOAP_1_2 ));
$servidorSoap->setClass(Testphp);
$servidorSoap->handle();
class Testphp {
public function HelloWorld($uid){
return array('HelloWorldResult'=>"mystring".$uid->{'uname'}.' and '.$uid->{'upassword'});
}
public function GetMember($uid){
$s=array();
for($i=0;$i<$uid->{'uid'};$i++){
$s[] =&new Member(array($i, $uid->{'uname'}.'我测试'.$i));
}
return array('GetMemberResult'=>$s);
}
}
?>

到这里应该都看的懂吧
下面是WSDL文件

复制内容到剪贴板
代码:
<?xml version="1.0" encoding="utf-8"?>
<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/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="http://www.TestPHP.com/">
<s:element name="HelloWorld">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="upassword" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="HelloWorldResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetMember">
<s:complexType>
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="uid" type="s:int" />
<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetMemberResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetMemberResult" type="tns:ArrayOfMember" />
</s:sequence>
</s:complexType>
</s:element>
<s:complexType name="ArrayOfMember">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="Member" nillable="true" type="tns:Member" />
</s:sequence>
</s:complexType>
<s:complexType name="Member">
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="UserId" type="s:int" />
<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
</s:sequence>
</s:complexType>
</s:schema>
</wsdl:types>
<wsdl:message name="HelloWorldSoapIn">
<wsdl:part name="parameters" element="tns:HelloWorld" />
</wsdl:message>
<wsdl:message name="HelloWorldSoapOut">
<wsdl:part name="parameters" element="tns:HelloWorldResponse" />
</wsdl:message>
<wsdl:message name="GetMemberSoapIn">
<wsdl:part name="parameters" element="tns:GetMember" />
</wsdl:message>
<wsdl:message name="GetMemberSoapOut">
<wsdl:part name="parameters" element="tns:GetMemberResponse" />
</wsdl:message>
<wsdl:portType name="TestPHPSoap">
<wsdl:operation name="HelloWorld">
<wsdl:input message="tns:HelloWorldSoapIn" />
<wsdl:output message="tns:HelloWorldSoapOut" />
</wsdl:operation>
<wsdl:operation name="GetMember">
<wsdl:input message="tns:GetMemberSoapIn" />
<wsdl:output message="tns:GetMemberSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="TestPHPSoap" type="tns:TestPHPSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="HelloWorld">
<soap:operation soapAction="http://www.TestPHP.com/HelloWorld" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetMember">
<soap:operation soapAction="http://www.TestPHP.com/GetMember"/>
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="TestPHPSoap12" type="tns:TestPHPSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="HelloWorld">
<soap12:operation soapAction="http://www.TestPHP.com/HelloWorld"/>
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="GetMember">
<soap12:operation soapAction="http://www.TestPHP.com/GetMember"/>
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="TestPHP">
<wsdl:port name="TestPHPSoap" binding="tns:TestPHPSoap">
<soap:address location="http://soap/goodwsdl/testphp.php" />
</wsdl:port>
<wsdl:port name="TestPHPSoap12" binding="tns:TestPHPSoap12">
<soap12:address location="http://soap/goodwsdl/testphp.php" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

这里有返回的两个字段,一个是返回字符串,这个很好理解
<s:element name="HelloWorld">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="upassword" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="HelloWorldResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>

这一段就字符串的
那返回数组的就比较麻烦了,我和老农搞了一两周才发现是WSDL文件写错了,看下面的一段
<s:element name="GetMember">
<s:complexType>
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="uid" type="s:int" />
<s:element minOccurs="0" maxOccurs="1" name="uname" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetMemberResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetMemberResult" type="tns:ArrayOfMember" />
</s:sequence>
</s:complexType>
</s:element>
<s:complexType name="ArrayOfMember">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="Member" nillable="true" type="tns:Member" />
</s:sequence>
</s:complexType>
<s:complexType name="Member">
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" name="UserId" type="s:int" />
<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
</s:sequence>
</s:complexType>
第一段GetMember是输入,最重要的是GetMemberResponse这段,看type="tns:ArrayOfMember"这里,返回一个数组,WSDL中定义了ArrayOf这个,后面的就简单了,ArrayOfMember的类型是type="tns:Member" ,从name="Member"得到要返回的数组,完工。

分享到:
评论

相关推荐

    WebService电子书6本(PDF)

    WebService电子书合集包含了六本深入浅出的教程,涵盖了从基础到高级的各类主题,是学习和理解WebService技术的...深入理解并熟练运用WebService,将有助于你在分布式系统、跨平台通信和企业级应用开发中发挥关键作用。

    php webservice类nusoap

    **PHP Webservice 类库nusoap详解** 在PHP开发中,Web服务(Web Service)是一种通过互联网进行应用程序间通信的标准技术。它允许不同系统之间的数据交换,不受编程语言或操作系统限制。nusoap是一个轻量级、开源的...

    Webservice Client and Server demo in PHP

    SOAP是一种结构化的消息交换格式,常用于企业级的Web服务。 6. **classUtils.php** - 公共工具类,通常包含一些辅助函数,用于数据处理、验证、日志记录等,这些功能在多个文件中可能会被复用。 通过这些文件,...

    axis2之webservice

    标题中的“axis2之webservice”指的是Apache Axis2框架下的Web服务实现技术。...通过学习这个教程,开发者将能够利用Apache Axis2创建和管理高质量、高性能的Web服务,进一步融入分布式系统和企业级应用开发。

    WebService

    WebService在企业级应用中广泛使用,例如: - 数据交换:不同系统间的数据同步,如电子商务网站与物流系统的订单信息传递。 - 服务集成:将第三方API整合到自己的系统中,如支付网关的调用。 - 异构系统通信:...

    xml php webservice 相关pdf

    通过学习这些资料,你可以深入理解如何利用PHP和XML来构建和利用Web服务,从而提升你的Web开发技能,尤其是在企业级应用集成和分布式系统通信方面。这四个文件将为你提供丰富的理论知识和实践指导,帮助你在PHP和Web...

    AXIS发布webservice

    AXIS发布WebService是一个在IT行业中常见的任务,尤其在企业级应用集成或Web服务开发中扮演着重要角色。AXIS是一个开放源码的Java库,它提供了用于创建、部署和使用Web服务的工具和API。本篇文章将深入探讨AXIS如何...

    基于axis2的webservice

    【基于Axis2的Web服务详解】 ...总结,基于Axis2的Web服务提供了强大且灵活的Web服务解决方案,适合企业级应用的开发。了解并掌握Axis2的使用,能够帮助开发者更有效地构建和维护Web服务,实现不同系统之间的无缝集成。

    基于.NET框架的webservice实例解析

    随着技术的发展,现代的Web服务更多地转向了RESTful架构,使用JSON作为数据交换格式,但.NET框架中的Web服务仍然是许多遗留系统和企业级应用的基础部分。理解并熟练掌握这一技术,对于.NET开发者来说是非常有价值的...

    微软CRM访问接口WEBSERVICE

    微软客户关系管理(Microsoft CRM)是一款企业级的客户关系管理系统,旨在帮助公司管理和优化与客户、潜在客户以及其他业务伙伴的关系。在本主题中,我们将深入探讨如何通过Web Service接口访问微软CRM系统,以及...

    java_webservice_myeclipse.rar

    Java Web服务(Web Service)是一种基于开放标准的、平台无关的通信协议,...在实际工作中,Web服务常用于企业级应用集成,例如数据交换、远程调用等场景。因此,掌握Web服务开发技能对于Java开发者来说是十分重要的。

    PB12.5 web开发实例

    通过深入学习和实践这些知识点,开发者可以在PB12.5环境中高效地开发和利用Web服务,实现跨平台的企业级应用。在提供的压缩包文件"pb_web"中,可能包含示例代码、教程文档或其他资源,供学习者进一步探索和理解这些...

    FLEX企业应用开发实战(完整版)

    《FLEX企业应用开发实战(完整版)》是一本深入探讨Adobe Flex在企业级应用开发中的实践指南。这本书全面覆盖了Flex技术的核心概念、工具、框架以及实际开发过程中的策略和技巧,旨在帮助读者从初学者到专业人士的转变...

    Linux Apache Java Php介绍

    ### Linux Apache Java Php介绍 #### LAJP:一种融合了LAMP与Java的高效开发模式 在互联网技术领域,LAMP架构...未来,LAJP有望成为后PC时代下多语言混合编程的重要工具之一,帮助企业级应用更好地应对挑战和机遇。

    PHP学习基础

    【PHP学习基础】 在IT领域,PHP是一种广泛使用的服务器端...理解并掌握这些技术对于PHP开发者来说,对于构建大型企业级应用至关重要。同时,实际项目中,代码的具体实现可能因需求和安全策略而有所不同,需要灵活调整。

    webservice技术架构

    2. **整合应用**:通过Web Services,企业可以集成来自多个系统的数据和功能,实现内部系统间的数据流动和业务流程自动化。 总之,Web Services技术架构提供了一种标准化的方法来构建和集成分布式系统,它通过SOAP...

    webservice axis包

    它提供了一整套开发、部署和调用Web服务的解决方案,基于Java平台,广泛应用于企业级应用集成。 在开发Web服务时,使用Axis主要有以下几个关键知识点: 1. **SOAP协议**:Simple Object Access Protocol,简单对象...

    航信系统CBE接口二次开发Webservicers应用说明

    - **开发商版**:专为软件开发商和OEM商设计,提供多IP、多域名、多配置和多OFFICE号的支持,为企业级软件开发提供了全方位的服务。 #### 4. CBE接口二次开发购买指导 针对不同的开发需求,CBE接口提供了从基础版...

Global site tag (gtag.js) - Google Analytics