php webservice

发请求客户端client.php

<?php
//需要到php.ini文件中打开extension=php_soap.dll
try{
    //wsdl方式调用web service
    //wsdl方式中由于wsdl文件写定了,如果发生添加删除函数等操作改动,不会反应到wsdl,相对non-wsdl方式来说不够灵活
    //$soap = new SoapClient("http://127.0.0.1/test/test.wsdl");

    //non-wsdl方式调用web service,没有要调用的wsdl文件,所以第一参数为空
    //location webservice服务路径的地址
    //uri      要用要调用的webserivce中的uri一致
    $soap = new SoapClient(null, array(‘location‘=>‘http://127.0.0.1/test/server.php‘, ‘uri‘ =>‘test_php_webservice‘));

    echo $soap->fun1(array(1,2,3));
    //echo $soap->fun2(123);

    //wsdl方式wsdl文件中未定义fun3,fun4方法,所以此处只能以non-wsdl方式调用
    //echo $soap->fun3(‘sss‘);
    //echo $soap->fun4(‘aaa‘);
}catch(SoapFault $fault){
    //可以使用try catch也可以不用,使用try catch错误信息会自动记录到SoapFault类对象中
    echo $fault->getMessage();;
}catch(Exception $e){
    echo $e->getMessage();
}

/*
SoapClient类

这个类用来使用Web services。SoapClient类可以作为给定Web services的客户端。
它有两种操作形式:

* WSDL 模式
* Non-WSDL 模式

在WSDL模式中,构造器可以使用WSDL文件名作为参数,并从WSDL中提取服务所使用的信息。

non-WSDL模式中使用参数来传递要使用的信息。

SoapServer类

这个类可以用来提供Web services。与SoapClient类似,SoapServer也有两种操作模式:WSDL模式和non-WSDL模式。这两种模式的意义跟 SoapClient的两种模式一样。在WSDL模式中,服务实现了WSDL提供的接口;在non-WSDL模式中,参数被用来管理服务的行为。

在SoapServer类的众多方法中,有三个方法比较重要。它们是SoapServer::setClass(),SoapServer::addFunction()和SoapServer::handle()。
*/
?>

服务器端server.php

<?php
class TestClass {
    function fun1($arg1) {
        return json_encode($arg1);
    }
    function fun2($arg2) {
        return $arg2;
    }
}
function fun3($arg3) {
    return $arg3;
}
function fun4($arg4) {
    return $arg4;
}

//wsdl方式提供web service,如果生成了wsdl文件则可直接传递到//SoapServer的构造函数中
//ini_set(‘soap.wsdl_cache_enabled‘,‘0‘);//关闭WSDL缓存
//$server = new SoapServer(‘http://127.0.0.1/test/test.wsdl‘);
/*
已有现成的简单wsdl文件,需要使用时可在此基础上简单修改使用
1,把所有test_php_webservice换成自定义名称
2,把类名TestClass换成实际所需类名
3,把方法名fun1,fun2换成实际所用方法名,及参数,返回值类型,也可按已有fun1,fun2标签格式新增所需方法
4,把http://127.0.0.1:80/test/server.php换成实际服务器端处理路径
*/

//non-wsdl方式这个是没有使用wsdl文件的,所以第一个参数为null,如果有使用wsdl,那么第一个参数就是这个wsdl文件的地址。
//uri          相当于命名空间,可以是任何不和别人重合的字符串
//soap_version 表示soap的版本号,目前就两个版本号SOAP_1_1,SOAP_1_2
$server = new SoapServer ( null, array ( ‘uri‘ => ‘test_php_webservice‘, ‘soap_version‘ => SOAP_1_2 ) );

// setClass和addFunction不能同时设置,addFunction可以添加多个方法,设置的setClass类里面的方法或者addFunction添加的方法,可以在客户端直接通过$soap对象->方法名调用
$server->setClass ( ‘TestClass‘ );

//addFunction只适用于non-wsdl方式,wsdl方式可访问方法都是在wsdl中固定的
//$server->addFunction(‘fun3‘);
//$server->addFunction(‘fun4‘);
$server->handle ();
?>

test.wsdl文件

<?xml version="1.0" ?>
<definitions name="test_php_webservice" targetNamespace="urn:test_php_webservice" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:test_php_webservice" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns="http://schemas.xmlsoap.org/wsdl/">
<types xmlns="http://schemas.xmlsoap.org/wsdl/" />

<portType name="test_php_webservicePort">

<operation name="fun1">
<input message="tns:fun1Request" />
<output message="tns:fun1Response" />
</operation>

<operation name="fun2">
<input message="tns:fun2Request" />
<output message="tns:fun2Response" />
</operation>

</portType>

<binding name="test_php_webserviceBinding" type="tns:test_php_webservicePort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />

<operation name="fun1">
<soap:operation soapAction="urn:test_php_webservice#TestClass#fun1" />
<input>
<soap:body use="encoded" namespace="urn:test_php_webservice" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body use="encoded" namespace="urn:test_php_webservice" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>

<operation name="fun2">
<soap:operation soapAction="urn:test_php_webservice#TestClass#fun2" />
<input>
<soap:body use="encoded" namespace="urn:test_php_webservice" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body use="encoded" namespace="urn:test_php_webservice" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>

</binding>
<service name="test_php_webservice">
<documentation />
<port name="test_php_webservicePort" binding="tns:test_php_webserviceBinding"><soap:address location="http://127.0.0.1:80/test/server.php" />
</port>
</service>

<message name="fun1Request">
<part name="name" type="xsd:array" />
</message>
<message name="fun1Response">
<part name="fun1" type="xsd:array" />
</message>

<message name="fun2Request">
<part name="name" type="xsd:array" />
</message>
<message name="fun2Response">
<part name="fun2" type="xsd:string" />
</message>

</definitions>
时间: 2024-11-07 19:07:02

php webservice的相关文章

自定义及发布一个webservice服务

自定义及发布一个webservice服务    - 声明 某个业务服务为webservice服务       通过@webservice 注解来声明    - 发布webservice服务       Endpoint.publish()发布 (默认对public修饰的方法进行发布)    - 通过wsimport生成本地代理来访问自己发布的webservice       wsimport 1.发布自定义webservice phone.java package ws.myWebService

调用已发布的WebService

WebService服务演示 登录http://www.webxml.com.cn 单击手机查询服务 3.         选择要调用的方法 例如: getMobileCodeInfo. 4. 输入要查询的手机号单击”调用” 截图如下, 免费用户 UserID为null a)   可以看到返回如下结果: <?xml version="1.0" encoding="utf-8" ?> <string xmlns="http://WebXml

webservice实验一

实验目的:安装jdk1.6_21以后的版本,利用JAX-WS API自己发布webservice并调用,以及用wsimport生成webservice客户端代码调用一个免费的web服务(如webxml.com.cn上的获取手机归属地的服务). 一.webservice原理了解 webservice是一种通用的跨语言跨平台的数据交互方式,之所以能够做到这一点,是因为它的底层实现机制是依赖于HTTP协议以及XML格式这些开发的标准.webservice使用SOAP(simple object acc

C# 动态生成WebService,无需添加引用

C#项目调用WebService是很常见的现象,但一旦修改链接地址就需要重新更新引用很是麻烦,这里跟大家分享一个通过地址,无需添加引用动态生成Webservice的小方法 方法类: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.ServiceModel; 6 using System.ServiceModel.Channels

一个简单的WebService服务

现在,网上提供的免费的webservice服务的网站: http://www.webxml.com.cn/ 从扩展名上看,是 .net构建的网站. 看看功能的实现效果: 需求:我们要远程调用手机号归属地的查询: 开发步骤: 1.建立工程:ws01_firstws 2.用jdk自带的工具读取wsdl地址 新建 结果输出: 根据远程的服务生成的这些内容称之为stub-桩,将生成的桩复制到项目的目录中去: 下一步:要编写客户端调用. public class FirstClient { public

Java调用WebService 接口 实例

这里给大家介绍一下,Java调用webservice的一个实例的过程. 本项目不能运行,因为接口地址不可用. 这里只是给大家介绍一个过程,同时留作自己的笔记.如果要学习,可以参照别人的实例.比较好. ①选择项目根目录的src ,右键,new --> webservice client 然后输入地址: http://172.18.100.52:456/hello?wsdl 必须要加wsdl结尾,这样才是一个webservice的接口. finlish.这时候刷新项目.可以看到项目下/src/com

WebService -- Java 实现之 CXF (初体验)

1. 认识WebService 简而言之,她就是:一种跨编程语言以及操作系统的远程调用技术. 大家都可以根据定义好的规范和接口进行开发,尽管各自的使用的开发语言和操作系统有所不同,但是由于都遵循统一的规范还有接口,因而可以做到透明和正常交互. 2. CXF 官方主页:http://cxf.apache.org/ 定义: Apache CXF is an open source services framework. CXF helps you build and develop services

.net实现webservice简单实例分享

原理:WebService是一个SOA(面向服务的编程)的架构,它是不依赖于语言,不依赖于平台,可以实现不同的语言间的相互调用,通过Internet进行基于Http协议的网络应用间的交互.作用:主要用于数据交换.提供服务接口优点:可跨平台.部署简单调用方便.无需额外客户端支持 一.创建一个WebService服务1.创建一个普通的Asp.Net Web应用程序,名称为WebServiceDemo 2.在刚创建的web程序里添加一个WebService服务文件,名称为TestService.asm

CXF框架实现webservice实例

服务器端: 1.新建Web项目,例如CXF_Server,导入cxf-2.4.2的相关jar包,如下图所示: 2.新建一个webservice服务接口MyService,该接口通过注解来暴露服务:  package com.founder.service; import javax.jws.WebService; @WebService(serviceName="MyServiceManage") public interface MyService { /**  * add():定义

C/C++利用gsoap库调用WebService

C/C++调用WebService需要用到soap库,一般使用的有gsoap和axis cpp两种实现,这里使用gsoap来调用.gsoap可以在 linxu.windows.mac多种平台上使用. gsoap的主页地址是http://gsoap2.sourceforge.net/ 新建一个WebService: 1 //写一个简单的方法 2 [WebMethod(Description="返回字符串")] 3 public string HelloWorld(string str)