(转)基于PHP——简单的WSDL的创建(WSDL篇)
本文转载自:http://blog.csdn.net/rrr4578/article/details/24451943
1、建立WSDL文件
建立WSDL的工具很多,eclipse、zendstudio、vs都可以,我个人建议自己写,熟悉结构,另外自动工具对xml schame类型支持在类型中可能会报错。
下面是我自己写的模板:
<?xml version ='1.0' encoding ='UTF-8' ?>
<definitions name='自定义名称'
targetNamespace='目标命名空间(WSDL所在地址)'
<!--tns自定义目标空间,下面会用到-->
xmlns:tns='目标命名空间(WSDL所在地址)'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
xmlns='http://schemas.xmlsoap.org/wsdl/'> <!--<types> 元素定义 web service 使用的数据类型,WSDL 使用 XML Schema 语法来定义数据类型,这里可以定义一些Schema不支持的类型-->
<types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="目标命名空间(WSDL所在地址)">
</xsd:schema>
</types> <!--
<message> 元素可定义每个消息的部件,以及相关联的数据类型。
请求-响应是最普通的操作类型,不过 WSDL 定义了四种类型:
One-way 此操作可接受消息,但不会返回响应。
Request-response 此操作可接受一个请求并会返回一个响应。(常用)
Solicit-response 此操作可发送一个请求,并会等待一个响应。
Notification 此操作可发送一条消息,但不会等待响应。
-->
<message name='请求消息名称(方法名+Request)'>
<part name="term" type="xsd:string"/>
</message> <message name='响应消息名称(方法名+Response)'>
<part name="value" type="xsd:string"/>
</message> <!--
<portType> 元素是最重要的 WSDL 元素。它可描述一个 web service、可被执行的操作,以及相关的消息。
它告诉你去哪个WebService的连接点,扮演了一个控制者。
-->
<portType name='执行的操作名称(binding的type与其对应)'>
<operation name='执行操作的方法'>
<input message='tns:*Request'/>
<output message='tns:*response'/>
</operation>
</portType> <!--<binding> 元素为每个端口定义消息格式和协议细节-->
<binding name='Binding的名称,与service的port名称对应' type='指向用于Binding的端口(tns(前缀):PortType名称)'>
<!--style:属性可取值 "rpc" 或 "document",ransport:属性定义了要使用的 SOAP 协议。在这个例子中我们使用 HTTP-->
<soap:binding style='rpc'
transport='http://schemas.xmlsoap.org/soap/http'/>
<!--operation 元素定义了每个端口提供的操作符,对于每个操作,相应的 SOAP 行为都需要被定义-->
<operation name='GetCallDetailRecords'>
<soap:operation soapAction='http://www.cwtservice.cn/newOperation/'/>
<input>
<soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
</input>
<output>
<soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
</output>
</operation>
</binding> <!--<service>包含一个或者多个port元素,每个port元素表示一个不同的Web服务-->
<service name='服务名称'>
<port name='Binding名称' binding='tns:Binding名称'>
<soap:address location='http://目标命名空间(WSDL所在地址)/service.php'/>
</port>
</service>
</definitions>
2、在service目录下建立myphone.wsdl
<?xml version ='1.0' encoding ='UTF-8' ?>
<definitions name='phonebook'
targetNamespace='http://www.mysoapservice.cn/'
xmlns:tns='http://www.mysoapservice.cn/'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
xmlns='http://schemas.xmlsoap.org/wsdl/'> <types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.mysoapservice.cn/">
</xsd:schema>
</types> <message name='GetPhoneBookRequest'>
<part name="name" type="xsd:string"/>
</message> <message name='GetPhoneBookResponse'>
<part name="phonebookInfo" type="xsd:string"/>
</message> <portType name='PhoneBookToEveryOneProt'>
<operation name='GetPhoneBook'>
<input message='tns:GetPhoneBookRequest'/>
<output message='tns:GetPhoneBookResponse'/>
</operation>
</portType> <binding name='PhoneBookSOAP' type='tns:PhoneBookToEveryOneProt'>
<soap:binding style='rpc'
transport='http://schemas.xmlsoap.org/soap/http'/>
<operation name='GetPhoneBook'>
<soap:operation soapAction='http://www.cwtservice.cn/newOperation/'/>
<input>
<soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
</input>
<output>
<soap:body use='encoded' namespace='urn:xmethods-delayed-quotes'
encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
</output>
</operation>
</binding> <service name='PhoneBookService'>
<port name='PhoneBookSOAP' binding='tns:PhoneBookSOAP'>
<soap:address location='http://www.mysoapservice.cn/service.php'/>
</port>
</service>
</definitions>
3、修改service.php
<?php
function GetPhoneBook($name){
$pbook="Zhangsan,13888888888,friend,8888@163.com";
return $pbook;
}
$server = new SoapServer("myphone.wsdl");
$server->addFunction("GetPhoneBook");
$server->handle ();
?>
4、修改client.php
<?php
header('Content-Type:text/html;charset=utf-8');
$client = new SoapClient("http://www.mysoapservice.cn/service.php?WSDL" , array('trace'=>true));
var_dump($client->__getTypes());
try {
$response = $client->GetPhoneBook('zhang');
var_dump($response);
}catch (SoapFault $sf){
var_dump($sf);
print ($client->__getLastRequest());
print ($client->__getLastResponse());
}
?>
测试:
http://www.mysoapclient.cn/client.php
(转)基于PHP——简单的WSDL的创建(WSDL篇)的更多相关文章
- 基于PHP——简单的WSDL的创建(WSDL篇)
1.建立WSDL文件 建立WSDL的工具很多,eclipse.zendstudio.vs都可以,我个人建议自己写,熟悉结构,另外自动工具对xml schame类型支持在类型中可能会报错. 下 ...
- 创建WSDL项目
WSDL文件是测试基于soap的服务,他们定义实际暴露服务和要求SoapUI生成测试,要求信息,验证和MockServices. SoapUI支持最广泛使用的1.1版本的WSDL和SOAP 1.1和1 ...
- CountBoard 是一个基于Tkinter简单的,开源的桌面日程倒计时应用
CountBoard 是一个基于Tkinter简单的,开源的桌面日程倒计时应用. 项目地址 https://github.com/Gaoyongxian666/CountBoard 基本功能 置顶功能 ...
- 创建ASP.NET Core MVC应用程序(3)-基于Entity Framework Core(Code First)创建MySQL数据库表
创建ASP.NET Core MVC应用程序(3)-基于Entity Framework Core(Code First)创建MySQL数据库表 创建数据模型类(POCO类) 在Models文件夹下添 ...
- Tridiv:基于 Web 的 CSS 编辑器,创建炫丽 3D 图形
Tridiv 是一个基于 Web 的编辑器,使用 CSS 创建 3D 形状.它提供了一个传统的四个面板的操作界面,给出了从每个平面的视图,以及一个预览窗格中示出的最终的效果.使用 Tridiv 可以创 ...
- 基于Bootstrap简单实用的tags标签插件
http://www.htmleaf.com/jQuery/ jQuery之家 自由分享jQuery.html5和css3的插件库 基于Bootstrap简单实用的tags标签插件
- soapui中文操作手册(二)----通过您的WSDL请求创建一个测试
1.通过您的WSDL请求创建一个测试 点击加号旁边的导航拓展项目树的Web服务,并选择请求: 在SoapUI Pro中,所述请求编辑出现在右边.SoapUI Pro有一个编辑器,它简化了XML的层 ...
- Docker 基于已有镜像的容器创建镜像
Docker 基于已有镜像的容器创建镜像: docker:/root# docker run -it januswel/centos /bin/bash docker exec -it januswe ...
- 基于最简单的FFmpeg包封过程:视频和音频分配器启动(demuxer-simple)
===================================================== 基于最简单的FFmpeg封装工艺的系列文章上市: 最简单的基于FFmpeg的封装格式处理:视 ...
随机推荐
- 在一个N个整数数组里面,有多个奇数和偶数,设计一个排序算法,令所有的奇数都在左边。
//在一个N个整数数组里面,有多个奇数和偶数,设计一个排序算法,令所有的奇数都在左边. // 例如: 当输入a = {8,4,1,6,7,4,9,6,4}, // a = {1,7,9,8,4,6,4 ...
- 【转载】关于C++中cin的几点说明性总结
转载地址:http://www.07net01.com/program/289153.html 学C++的时候,这几个输入函数弄的有点迷糊:这里做个小结: 1.cin 2.cin.get() 3.ci ...
- 树 List Leaves 【用数组模拟了树状结构建树+搜索叶子节点+按照特殊规律输出每个叶子节点】
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. I ...
- VCFtools
The C++ executable module examples This page provides usage examples for the executable module. Exte ...
- HDU 4004 The Frog's Games(2011年大连网络赛 D 二分+贪心)
其实这个题呢,大白书上面有经典解法 题意是青蛙要跳过长为L的河,河上有n块石头,青蛙最多只能跳m次且只能跳到石头或者对面.问你青蛙可以跳的最远距离的最小值是多大 典型的最大值最小化问题,解法就是贪心 ...
- Flume-NG启动过程源码分析(三)(原创)
上一篇文章分析了Flume如何加载配置文件的,动态加载也只是重复运行getConfiguration(). 本篇分析加载配置文件后各个组件是如何运行的? 加载完配置文件订阅者Application类会 ...
- Git在mac中和远程仓库建立连接
1.下载git http://git-scm.com/download/ 2. 安装git 按照文字提示即可 3. 验证是否成功,输入命令行.输出git版本表示git安装成功. git --versi ...
- linux下图形字符的命令
banner sudo apt-get install sysvbanner banner song 若更改字体可以使用banner song printerbanner -w 50 A toilet ...
- winform里面的label怎么样实现,字上删除的效果
label属性里的Font方法理由 Strikeout 选成True 就行了 button1_Click(object sender, EventArgs e) { Graphics g = Grap ...
- C语言基础二
C--顺序程序设计 赋值语句 赋值语句和赋值表达式的区别: if((a = b) > 0) t = 0; 字符数据的输入输出 putchar函数 该函数为字符输出函数,其作用是向终端数出一个字符 ...