基于Tomcat50和 Axis2开发Web Service应用实例.pdf

基于Tomcat50和 Axis2开发Web Service应用实例.pdf

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
基于Tomcat50和 Axis2开发Web Service应用实例

基于Tomcat5.0 和Axis2 开发Web Service 应用实例 版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者 信息和本声明。否则将追究法律责任。 /113473/23690 本文将介绍如何使用Tomcat5.0 和Apache Axis2 开发、部署及测试一个简单的 Web Service 应用。 1.工作环境 Eclipse 3.1.2+Lomboz+jdk1.5+ apache-tomcat-5.0.18+AXIS2:1.0(war 版本和bin 版本) 在/axis2/download/1_0/download.cgi页面下,下载AXIS2 的Binary Distribution url: /ws/axis2/1_0/axis2-std-1.0-bin.zip和war Distribution url: /ws/axis2/1_0/axis2-1.0-docs.zip。把这两个文件解 压,比如解压缩的后得目录为C:\axis2-std-1.0-bin和C:\axis2.war。 在Eclipse 下通过菜单window—preferences…--Java—Build Path—User Libraries 新 建一个user library,比如名字就叫axis2 把C:\axis2-std-1.0-bin\lib 下的所有jar 文件包含进 来。把axis2.war 拷贝到%TOMCAT-HOME%/webapps 下面。 2.检验安装 在Eclipse下启动Tomcat,在地址栏内输入http://localhost:8080/axis2/。 点击Validate,将到达 Axis2 Happiness Page 。 3.WebService 中的HelloWorld 1)新建一个动态web 工程,取名ZZaxis,右键点击项目名,选择Properties-Java Build Path-Add Library-User Library-axis2。 2)新建package sample,建立HelloWorld.java,代码如下。 HelloWorld.java import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMFactory; import org.apache.axiom.om.OMNamespace; public class HelloWorld { public OMElement sayHello(OMElement in){ String name=in.getText(); String info=name+HelloWorld!; OMFactory fac=OMAbstractFactory.getOMFactory(); OMNamespace omNs=fac.createOMNamespace(/,hw); OMElement resp=fac.createOMElement(sayHelloResponse,omNs); resp.setText(info); return resp; } } 3)在WebContent\META-INF\建立services.xml,代码如下。 services.xml ?xml version=1.0 encoding=UTF-8? service name=HelloWorld description This is a sample Web Service. /description parameter name=ServiceClass locked=falsesample.HelloWorld/parameter operation name=sayHello messageReceiver class=org.apache.axis2.receivers.RawXMLINOutMessageReceiver/ /operation /service 4)将目录sample 和目录META-INF 组织如下(新建目录example)。 +-e

文档评论(0)

skvdnd51 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档