十、Axis WebService常用命令和调试工具

上面我们在发布wsdd服务的时候都会在dos窗口写上一段命令,下面还介绍下其他的几个命令:

A、 AdminClient命令

java org.apache.axis.client.AdminClient c:/deploy.wsdd

这样就可以用AdminClient发布一个WebService了,如果你对AdminClient的参数信息不是很了解输入:java org.apache.axis.client.AdminClient就可以查看帮助了。

Usage:  AdminClient [Options] [list | <deployment-descriptor-files>]

Processes a set of administration commands.

The following Options are available:

        -l<url>         sets the AxisServlet URL

        -h<hostName     sets the AxisServlet host

        -p<portNumber>  sets the AxisServlet port

        -s<servletPath> sets the path to the AxisServlet

        -f<fileName>    specifies that a simple file protocol should be used

        -u<username>    sets the username

        -w<password>    sets the password

        -d              sets the debug flag (for instance, -ddd would set it to

3)

        -t<name>        sets the transport chain touse

Commands:

        list            will list the currently deployed services

        quit            will send a quit message to SimpleAxisServer

        passwd          value changes the admin password

Deployment Descriptor files:

<deployment-descriptor-files> deploys or undeploys Axis components and

web services described in these files

If -l or -h -p -s are not set, the AdminClient will invoke

http://localhost:8080/axis/servlet/AxisServlet

帮助信息如上所示,如果你有下载axis的源码,可以看看AdminClient的源码就知道是怎么回事了。如果上述命令找不到AdminClient,请设置dirs

java org.apache.axis.client.AdminClient c:/deploy.wsdd –p8081

上面的-p8081设置端口信息,默认AdminClient会使用8080端口。当你的端口换成其他的可以用-p设置端口

java org.apache.axis.client.AdminClient

-lhttp://localhost:8080/axiswebProject/services/AdminService deploy.wsdd

通过-l指定你的AdminService的url路径完成发布wsdd,这个很有效

B、 调试工具,监听WebService的通讯信息

 

在dos窗口输入:

C:\SoftWare\tomcat-5.0.28\tomcat-5.0.28\webapps\AxisWebService\WEB-INF>java -Djava.ext.dirs=lib org.apache.axis.utils.tcpmon

org.apache.axis.utils.tcpmon是一个端口监听的工具类,它可以监听到指定host、port的WebService通信信息

 

在listen port填写你要监听的端口即可,是监听的端口不实服务器的端口。也就是你请求服务器的端口。

C、 查看发布的WebService服务信息

 

通过在WebBrowser地址栏输入:

http://localhost:8080/[Project]/servlet/AxisServlet

可以查看你发表过的WebService,Project是你的axis的web工程

  • 作者:hoojo
    出处:
    blog:http://blog.csdn.net/IBM_hoojo
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

  • 版权所有,转载请注明出处 本文出自:
    分享道版权所有,欢迎转载,转载请注明出处,谢谢
    收藏
    关注
    评论
    原文地址:https://www.cnblogs.com/hoojo/p/1911390.html