十、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博客园博客,原文链接:http://www.cnblogs.com/hoojo/archive/2010/12/20/1911390.html,如需转载请自行联系原作者
目录
相关文章
|
自然语言处理 Java
使用axis调用WebService,Java WebService调用工具类
使用axis调用WebService,Java WebService调用工具类
1581 0
使用axis调用WebService,Java WebService调用工具类
|
XML JavaScript Java
Axis调用Webservice添加SoupHeader
Axis调用Webservice添加SoupHeader
143 0
Axis调用Webservice添加SoupHeader
|
安全 Java C#
【知识积累】服务器端获取客户端的IP地址(当客户端调用由Axis开发的WebService)
由于项目中一个小的模块需要获取客户端的IP地址以保证安全调用webservice接口,项目中客户端使用C#编写,服务器端使用Java编写,服务器端与客户端采用Axis开发的WebService进行通信。服务器端维护IP白名单列表,只有IP地址在白名单中的客户端才可以成功调用到接口,获得服务。
225 0
|
Java Apache 网络架构
Webservice调用方式:axis,soap详解
转自:[url] http://blog.csdn.net/baiboy4493/archive/2009/03/13/3987526.aspx [/url]  调用webservice,可以首先根据wsdl文件生成客户端,或者直接根据地址调用,下面讨论直接调用地址的两种不同方式:axis...
1493 0