上面我们在发布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工程