- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Java创建WebService服务端及客户端
文 / D调de恋雨 ??来源于:CSDN
目的:实现发布WebService服务并使用该服务
?
WebService服务端
构架图??? (原图无法显示)
1、创建出项目时 添加 Xfire Web Service? ??? 项目属性 - MyEclipse -Add Xfire Web Service??? (原图无法显示)??? 这步可以默认 - 下一步??? 这时需要 选中 XFire 1.2 HTTP Client Libraries??? (原图无法显示)
?
2、定义接口与实现类
?
package com.accp.Inter;/*** 定义接口* @author jaylian* 2009年3月27日13:26:51*/public interface Ihello {public String hello();}
?
package com.accp.Impl;/*** 实现类* @author jaylian* 2009年3月27日13:29:32*/import com.accp.Inter.Ihello;public class ImplHello implements Ihello {public String hello() {? ? return Hello Accp !!;}}
?
3、services.xml 中的配置
?
?xml version=1.0 encoding=UTF-8?beans xmlns=/config/1.0servicenameACCP/nameserviceClasscom.accp.Inter.Ihello/serviceClassimplementationClasscom.accp.Impl.ImplHello/implementationClass/service/beans
?
(编辑注:上述为spring1.x配置spring2.x为:?xml version=1.0 encoding=UTF-8?beansservice xmlns=/config/1.0nameACCP/nameserviceClasscom.accp.Inter.Ihello/serviceClassimplementationClasscom.accp.Impl.ImplHello/implementationClass/service/beans)
?
4、启动Tomcat??? 运行页面: http://localhost:8080/WebService/services/
?
Available Services:
ACCP [wsdl]
Generated by XFire ( )
?
5、点击[wsdl] 进入?? 地址:http://localhost:8080/WebService/services/ACCP?wsdl
?
?xml version=1.0 encoding=UTF-8 ?
- wsdl:definitions targetNamespace=http://I xmlns:tns=http://I xmlns:wsdlsoap=/wsdl/soap/ xmlns:soap12=/2003/05/soap-envelope xmlns:xsd=/2001/XMLSchema xmlns:soapenc11=/soap/encoding/ xmlns:soapenc12=/2003/05/soap-encoding xmlns:soap11=/soap/envelope/ xmlns:wsdl=/wsdl/- wsdl:types- xsd:schema xmlns:xsd=/2001/XMLSchema attributeFormDefault=qualified elementFormDefault=qualified targetNamespace=http://I- xsd:element name=hello? xsd:complexType / ? /xsd:element- xsd:element name=helloResponse- xsd:complexType- xsd:sequence? xsd:element maxOccurs=1 minOccurs=1 name=out nillable=true type=xsd:string / ? /xsd:sequence? /xsd:complexType? /xsd:element? /xsd:schem
文档评论(0)