使用Axis编写WebService比較简单,就我的理解,WebService的实现代码和编写Java代码事实上没有什么差别,主要是将哪些Java类公布为WebService。

以下是一个从编写測试样例到公布WebService,以及编写測试代码的过程介绍。

本样例的WebService提供了两个方法。各自是sayHello和sayHelloToPerson。第一个仅仅是返回一个"Hello"字符串,没有參数,第二个函数接受一个字符串作为參数。返回"Hello 參数值",该样例比較简单。可是清楚的说明了从编写代码到公布为WebService以及測试编写好的WebService全过程。

编写服务代码

服务代码提供了两个函数。分别为sayHello和sayHelloToPerson,源码例如以下:

  1. /*
  2. * File name: HelloService.java
  3. *
  4. * Version: v1.0
  5. *
  6. * Created on Aug 2, 2008 9:40:20 AM
  7. *
  8. * Designed by Stephen
  9. *
  10. * (c)Copyright 2008
  11. */
  12. package com.sinosoft.webservice;
  13. /** *//**
  14. * @author Stephen
  15. *
  16. * Test web service
  17. */
  18. public class HelloService {
  19. /** *//**
  20. * 不带參数的函数
  21. *
  22. * @return 返回Hello字符串
  23. */
  24. public String sayHello() {
  25. return "Hello";
  26. }
  27. /** *//**
  28. * 带參数的函数
  29. *
  30. * @param name
  31. *            名称
  32. * @return 返回加上名称的欢迎词
  33. */
  34. public String sayHelloToPerson(String name) {
  35. if (name == null || name.equals("")) {
  36. name = "nobody";
  37. }
  38. return "Hello " + name;
  39. }
  40. }

公布WebService

要将上边写的HelloService类公布为WebService。须要先搭建Web应用。以下是在Tomcat下使用Axis(http://ws.apache.org/axis/)创建WebService服务的样例。

在Tomcat下创建Web应用

在该样例中,在Tomcat下创建了一个context path为ws的WEB应用。

1. 在myeclipse中创建WebServiceTest的webproject

2. 在WEB-INF目录下web.xml文件,该文件的内容例如以下:

  1. <?xml version="1.0" encoding="ISO-8859-1"?

    >

  2. <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
  3. Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
  4. <web-app>
  5. <display-name>Apache-Axis</display-name>
  6. <listener>
  7. <listener-class>org.apache.axis.transport.http.AxisHTTPSessionListener</listener-class>
  8. </listener>
  9. <servlet>
  10. <servlet-name>AxisServlet</servlet-name>
  11. <display-name>Apache-Axis Servlet</display-name>
  12. <servlet-class>
  13. org.apache.axis.transport.http.AxisServlet
  14. </servlet-class>
  15. </servlet>
  16. <servlet>
  17. <servlet-name>AdminServlet</servlet-name>
  18. <display-name>Axis Admin Servlet</display-name>
  19. <servlet-class>
  20. org.apache.axis.transport.http.AdminServlet
  21. </servlet-class>
  22. <load-on-startup>100</load-on-startup>
  23. </servlet>
  24. <servlet>
  25. <servlet-name>SOAPMonitorService</servlet-name>
  26. <display-name>SOAPMonitorService</display-name>
  27. <servlet-class>
  28. org.apache.axis.monitor.SOAPMonitorService
  29. </servlet-class>
  30. <init-param>
  31. <param-name>SOAPMonitorPort</param-name>
  32. <param-value>5001</param-value>
  33. </init-param>
  34. <load-on-startup>100</load-on-startup>
  35. </servlet>
  36. <servlet-mapping>
  37. <servlet-name>AxisServlet</servlet-name>
  38. <url-pattern>/servlet/AxisServlet</url-pattern>
  39. </servlet-mapping>
  40. <servlet-mapping>
  41. <servlet-name>AxisServlet</servlet-name>
  42. <url-pattern>*.jws</url-pattern>
  43. </servlet-mapping>
  44. <servlet-mapping>
  45. <servlet-name>AxisServlet</servlet-name>
  46. <url-pattern>/services/*</url-pattern>
  47. </servlet-mapping>
  48. <servlet-mapping>
  49. <servlet-name>SOAPMonitorService</servlet-name>
  50. <url-pattern>/SOAPMonitor</url-pattern>
  51. </servlet-mapping>
  52. <!-- uncomment this if you want the admin servlet -->
  53. <!--
  54. <servlet-mapping>
  55. <servlet-name>AdminServlet</servlet-name>
  56. <url-pattern>/servlet/AdminServlet</url-pattern>
  57. </servlet-mapping>
  58. -->
  59. <session-config>
  60. <!-- Default to 5 minute session timeouts -->
  61. <session-timeout>5</session-timeout>
  62. </session-config>
  63. <!-- currently the W3C havent settled on a media type for WSDL;
  64. http://www.w3.org/TR/2003/WD-wsdl12-20030303/#ietf-draft
  65. for now we go with the basic 'it's XML' response -->
  66. <mime-mapping>
  67. <extension>wsdl</extension>
  68. <mime-type>text/xml</mime-type>
  69. </mime-mapping>
  70. <mime-mapping>
  71. <extension>xsd</extension>
  72. <mime-type>text/xml</mime-type>
  73. </mime-mapping>
  74. <welcome-file-list id="WelcomeFileList">
  75. <welcome-file>index.jsp</welcome-file>
  76. <welcome-file>index.html</welcome-file>
  77. <welcome-file>index.jws</welcome-file>
  78. </welcome-file-list>
  79. </web-app>

在上面的web.xml中主要是配置了axis的相关配置。

axis的相关配置

在上述的web.xml文件里已经对axis进行了配置,可是还须要进行额外的配置。

复制axis相关的jar文件(官网下载axis-bin-1_4.zip 就有例如以下jar包)

将axis的相关jar文件拷贝到WEB-INF\lib目录下。这些文件包含:

activation.jar

axis.jar

axis-ant.jar

commons-discovery-0.2.jar

commons-logging-1.0.4.jar

jaxrpc.jar

log4j-1.2.8.jar

saaj.jar

wsdl4j-1.5.1.jar

測试公布的Web应用

启动Tomcat服务,打开IE浏览器,訪问地址http://127.0.0.1:8080/WebServiceTest/services,假设看到例如以下界面就说明AXIS部署成功了。

注意点:本人当时使用的时候 新建的web项目名字为webservice


公布WebService

公布WebService须要使用现有的AdminService来实现。这里我写了一个批处理文件来公布WebService。以后假设须要公布其它文件,仅仅须要改动对应的參数就能够了。

创建deploy.wsdd文件

文件deploy.wsdd内容例如以下所看到的:

  1. <?

    xml version="1.0" encoding="UTF-8"?

    >

  2. <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
  3. <service name="HelloServices" provider="java:RPC">
  4. <parameter name="className" value="com.sinosoft.webservice.HelloService"/>
  5. <parameter name="allowedMethods" value="*"/>
  6. </service>
  7. </deployment>

创建公布WebService服务的批处理文件

批处理文件deploywebservice.bat内容例如以下:

  1. java -cp axis-ant.jar;axis-schema.jar;axis.jar;commons-discovery-0.2.jar;commons-logging-1.0.4.jar;jaxrpc.jar;log4j-1.2.8.jar;saaj.jar;wsdl4j-1.5.1.jar;xmlsec-1.3.0.jar org.apache.axis.client.AdminClient -lhttp://localhost:8080/WebServiceTest/services/AdminService deploy.wsdd
  2. pause

当中上面的jar包我都拷到和bat文件在同一个文件夹。如今将全部的jar文件都增加到classpath中进行运行。

-l后的參数是本地要公布WebService的AdminService相应的訪问地址。

最后deploy.wsdd是相应的配置文件名。

公布WebService服务

将deploy.wsdd文件和deploywebservice.bat文件拷贝到同一个文件夹下。运行deploywebservice.bat批处理文件,就能够将deploy.wsdd中描写叙述的Java类公布为WebService。

项目文件文件夹结构

公布完毕之后在訪问http://127.0.0.1:8080/WebServiceTest/services例如以下图所看到的:


 

从上图能够看出。公布成功后。多了一个HelloServices的服务。这样就说明HelloService公布成功了。

查看HelloServices的wsdl

訪问

wsdl" style="color:rgb(16,138,198)">http://127.0.0.1:8080/WebServiceTest/services/HelloServices?

wsdl能够看到例如以下wsdl的内容:

  1. <?

    xml version="1.0" encoding="UTF-8"?>

  2. <wsdl:definitions targetNamespace="http://127.0.0.1:8080/WebServiceTest/services/HelloServices" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://127.0.0.1:8080/WebServiceTest/services/HelloServices" xmlns:intf="http://127.0.0.1:8080/WebServiceTest/services/HelloServices" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  3. <!--WSDL created by Apache Axis version: 1.4
  4. Built on Apr 22, 2006 (06:55:48 PDT)-->
  5. <wsdl:message name="sayHelloToPersonRequest">
  6. <wsdl:part name="name" type="soapenc:string"/>
  7. </wsdl:message>
  8. <wsdl:message name="sayHelloRequest">
  9. </wsdl:message>
  10. <wsdl:message name="sayHelloToPersonResponse">
  11. <wsdl:part name="sayHelloToPersonReturn" type="soapenc:string"/>
  12. </wsdl:message>
  13. <wsdl:message name="sayHelloResponse">
  14. <wsdl:part name="sayHelloReturn" type="soapenc:string"/>
  15. </wsdl:message>
  16. <wsdl:portType name="HelloService">
  17. <wsdl:operation name="sayHello">
  18. <wsdl:input message="impl:sayHelloRequest" name="sayHelloRequest"/>
  19. <wsdl:output message="impl:sayHelloResponse" name="sayHelloResponse"/>
  20. </wsdl:operation>
  21. <wsdl:operation name="sayHelloToPerson" parameterOrder="name">
  22. <wsdl:input message="impl:sayHelloToPersonRequest" name="sayHelloToPersonRequest"/>
  23. <wsdl:output message="impl:sayHelloToPersonResponse" name="sayHelloToPersonResponse"/>
  24. </wsdl:operation>
  25. </wsdl:portType>
  26. <wsdl:binding name="HelloServicesSoapBinding" type="impl:HelloService">
  27. <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  28. <wsdl:operation name="sayHello">
  29. <wsdlsoap:operation soapAction=""/>
  30. <wsdl:input name="sayHelloRequest">
  31. <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://webservice.sinosoft.com" use="encoded"/>
  32. </wsdl:input>
  33. <wsdl:output name="sayHelloResponse">
  34. <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://127.0.0.1:8080/WebServiceTest/services/HelloServices" use="encoded"/>
  35. </wsdl:output>
  36. </wsdl:operation>
  37. <wsdl:operation name="sayHelloToPerson">
  38. <wsdlsoap:operation soapAction=""/>
  39. <wsdl:input name="sayHelloToPersonRequest">
  40. <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://webservice.sinosoft.com" use="encoded"/>
  41. </wsdl:input>
  42. <wsdl:output name="sayHelloToPersonResponse">
  43. <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://127.0.0.1:8080/WebServiceTest/services/HelloServices" use="encoded"/>
  44. </wsdl:output>
  45. </wsdl:operation>
  46. </wsdl:binding>
  47. <wsdl:service name="HelloServiceService">
  48. <wsdl:port binding="impl:HelloServicesSoapBinding" name="HelloServices">
  49. <wsdlsoap:address location="http://127.0.0.1:8080/WebServiceTest/services/HelloServices"/>
  50. </wsdl:port>
  51. </wsdl:service>
  52. </wsdl:definitions>

用Java调用WebService实例

以下是用Java调用刚公布的WebService样例。

Java代码  
  1. /*
  2. * File name: TestHelloService.java
  3. *
  4. * Version: v1.0
  5. *
  6. * Created on Aug 2, 2008 9:54:10 AM
  7. *
  8. * Designed by Stephen
  9. *
  10. * (c)Copyright 2008
  11. */
  12. package test.com.sinosoft.webservice;
  13. import java.io.IOException;
  14. import java.net.MalformedURLException;
  15. import javax.xml.namespace.QName;
  16. import javax.xml.rpc.ServiceException;
  17. import org.apache.axis.client.Call;
  18. import org.apache.axis.client.Service;
  19. import org.apache.commons.logging.Log;
  20. import org.apache.commons.logging.LogFactory;
  21. /**
  22. * @author Stephen
  23. *
  24. * 測试调用WebService
  25. */
  26. public class TestHelloService {
  27. private static final Log log = LogFactory.getLog(TestHelloService.class);
  28. private static final String HELLO_SERVICE_ENDPOINT = "http://127.0.0.1:8080/WebServiceTest/services/HelloServices?

    wsdl";

  29. public static void main(String[] args) {
  30. TestHelloService tester = new TestHelloService();
  31. // tester.callSayHello();
  32. tester.callSayHelloToPerson();
  33. }
  34. public void callSayHello() {
  35. try {
  36. Service service = new Service();
  37. Call call = (Call) service.createCall();
  38. call.setTargetEndpointAddress(new java.net.URL(
  39. HELLO_SERVICE_ENDPOINT));
  40. //以下名字查询的http://127.0.0.1:8080/WebServiceTest/services/HelloServices?wsdl文件中有
  41. call.setOperationName(new QName("http://webservice.sinosoft.com/",
  42. "sayHello"));
  43. call.setReturnType(org.apache.axis.Constants.XSD_STRING);
  44. try {
  45. //远程调用公布的方法
  46. String ret = (String) call.invoke(new Object[] {});
  47. System.out.println("The return value is:" + ret);
  48. return;
  49. } catch (IOException e) {
  50. e.printStackTrace();
  51. }
  52. } catch (MalformedURLException e) {
  53. e.printStackTrace();
  54. } catch (ServiceException e) {
  55. e.printStackTrace();
  56. }
  57. log.error("call sayHello service error!");
  58. }
  59. public void callSayHelloToPerson() {
  60. try {
  61. Service service = new Service();
  62. Call call = (Call) service.createCall();
  63. call.setTargetEndpointAddress(new java.net.URL(HELLO_SERVICE_ENDPOINT));
  64. call.setOperationName(new QName("http://webservice.sinosoft.com/",
  65. "sayHelloToPerson"));
  66. call.addParameter("name", org.apache.axis.Constants.XSD_STRING,
  67. javax.xml.rpc.ParameterMode.IN);
  68. call.setReturnType(org.apache.axis.Constants.XSD_STRING);
  69. try {
  70. String ret = (String) call.invoke(new Object[] { "Stephen" });
  71. System.out.println("The return value is:" + ret);
  72. return;
  73. } catch (IOException e) {
  74. e.printStackTrace();
  75. }
  76. } catch (MalformedURLException e) {
  77. e.printStackTrace();
  78. } catch (ServiceException e) {
  79. e.printStackTrace();
  80. }
  81. log.error("call sayHello service error!");
  82. }
  83. }


传參调用简便方法:
           说明:getSasmOrgUnits  为调用webwervice中的方法的名称  
            //
 private static final String HELLO_SERVICE_ENDPOINT = "http://172.16.100.129:6888/ormrpc/services/WSBaseSasmFacade?wsdl"; 
            Service service = new Service();  

            Call call = (Call) service.createCall();  

            call.setTargetEndpointAddress(new java.net.URL(  

                    HELLO_SERVICE_ENDPOINT));  
            String ret =  (String)call.invoke("getSasmOrgUnits", new Object[] {MD5("參数1"),MD5("參数2")});

                System.out.println("The return value is:" + ret);  


利用Java编写简单的WebService实例的更多相关文章

  1. 利用Java编写简单的WebService实例-转载

    使用Axis编写WebService比较简单,就我的理解,WebService的实现代码和编写Java代码其实没有什么区别,主要是将哪些Java类发布为WebService.下面是一个从编写测试例子到 ...

  2. Python 利用Python编写简单网络爬虫实例3

    利用Python编写简单网络爬虫实例3 by:授客 QQ:1033553122 实验环境 python版本:3.3.5(2.7下报错 实验目的 获取目标网站“http://bbs.51testing. ...

  3. Python 利用Python编写简单网络爬虫实例2

    利用Python编写简单网络爬虫实例2 by:授客 QQ:1033553122 实验环境 python版本:3.3.5(2.7下报错 实验目的 获取目标网站“http://www.51testing. ...

  4. 利用java编写的盲注脚本

    之前在网上见到一个盲注的题目,正好闲来无事,便用java写了个盲注脚本,并记录下过程中的坑 题目源码: <?php header("Content-Type: text/html;ch ...

  5. 基于《仙剑奇侠传柔情版》利用Java的简单实现(一)

    基于<仙剑奇侠传柔情版>利用Java的简单实现(一) 2018-12-01 23:55:36   by Louis  一,新建一个类GameFrame.class,具体代码如下: pack ...

  6. Java 使用Axis实现WebService实例

    在上一篇WebService实例中,基于jdk1.6以上的javax.jws 发布webservice接口.这篇博文则主要用eclipse/myeclipse 使用axis插件进行发布和调用WebSe ...

  7. 一个简单的WebService实例

    WebService在.NET平台下的作用是在不同应用程序间共享数据与数据交换. 要达到这样的目标,Web services要使用两种技术: XML(标准通用标记语言下的一个子集):XML是在web上 ...

  8. JAX-WS(一)之使用wsgen从Java创建简单的WebService

    概念 JAX-WS2.0的全称Java API for XML-Based Web Service 2.0.JAX-WS2.0是对JAX-RPC1.0规范的扩展,是JAX-RPC1.1的后续版本,JA ...

  9. java编写简单的语法分析预测程序

    编译原理课程中,编了一个简单的语法分析预测程序,这个程序时根据固定的文法得到预测分析表,然后编写程序来判断表达式是否会正确推到出来. 前提是程序没有左递归符合LL(1)文法: 文法如下: E→TE' ...

随机推荐

  1. 【MVC5】使用权限+角色

    1.在Ticket中设置用户角色 在权限的Ticket中设置用户的角色(这里是逗号分割). List<string> roles = new List<string>(); i ...

  2. 【Python 数据分析】从Mysql数据库取出数据作图分析

    在之前的文章中[爬取天气信息]我们已经将昆明二月份的气温爬取到数据库了,那么现在我们需要对这些数据进行一些分析操作,下面是使用matplotlib对这些数据的一些操作 折线图 首先我们读取数据库中的数 ...

  3. 08-hibernate注解-总结

    直接贴过来了: 1, 2,

  4. JBoss目录结构说明

    http://www.blogjava.net/livery/articles/262544.html $JBOSS-HOME/bin:             放置各种脚本文件以及相关文件,包括jb ...

  5. HTTP协议,详解

    整合网上各种资料,原创,不懂可以加 QQ:3111901846 一般学习一样新的知识,你首先要问问自己这三个问题,如果学完以后,你能回答出来这几个问题,证明你还是不错的 1.什么是HTTP协议?2.H ...

  6. 检查SSD磁盘是否开启了TRIM指令

    fsutil behavior QUERY DisableDeleteNotify 如果查询结果是“DisableDeleteNotify = 0”,代表SSD已经支持并启用Trim指令:如果提示为“ ...

  7. SignalR IOS Android

    http://www.dotblogs.com.tw/toysboy21/archive/2014/03/24/144505.aspx https://www.youtube.com/watch?v= ...

  8. 在Unity控制台下使用富文本

    之前都不知道,最近看了csdn一位开发者的博文突然发现 <b>asd</b> <color="red">asd</color> &l ...

  9. PHPCMS 学习

    1.碎片管理2.为了升级操作 MY_ thinkphp为大写phpcms里面也是大写 然后继承如果加构造函数要调用一次父类的构造函数,最好在最上面调用 final 不可重写 重写最好调用一次paren ...

  10. 自己定义滑动删除item的ListView。

    首先继承创建继承ListView和实现OnTouchListener,OnGestureListener的类. 会使用到AbsList中的pointToPosition(int x, int y)方法 ...