axis2
文章平均质量分 50
xpmwgcwm
这个作者很懒,什么都没留下…
展开
-
axis2 中启动soap monitor
1. 首先说明使用axis2-1.4.1, 在axis2-1.6.0上没有试验成功2. 由于axis2默认情况下已经自带了soapmonitor模块,因此,soapmonitor模块并不需要单独安装。但applet所涉及到的相应的.class文件需要安装一下。在\webapps\axis2\WEB-INF\lib目录中找到soapmonitor-1.4.1.jar文件,将该文件解压...原创 2012-05-27 10:13:46 · 146 阅读 · 0 评论 -
Axis2 开发环境设置
在Eclipse中安装axis2 插件1. go to http://archive.apache.org/dist/ws/axis2/tools/1_4/2. download two plugin a. axis2-eclipse-codegen-wizard-1.4.zip b. axis2-eclipse-service-archiver-wizard...原创 2011-12-08 09:23:57 · 143 阅读 · 0 评论 -
axis 服务器端例子
1. java code in server[code="java"]package com.google.test;public class SayHello { public String getName(String name) { return "hello "+name; } }[...原创 2011-12-09 16:46:27 · 101 阅读 · 0 评论 -
axis2 客户端例子
generate client1. run command wsdl2java -uri http://localhost:8080/axis2/services/MyService?wsdl -p client -s -o stub2. copy it to eclipse[code="java"]import javax.xml.namespace.QNam...原创 2011-12-09 16:48:51 · 89 阅读 · 0 评论 -
SOAP Debugging with tcpdump
You are on a Linux box (SOAP client) making a SOAP request to a SOAP server somewhere on port 80, to view the request and response with tcpdump here are the commands execute at shell. Incoming SOA...原创 2012-02-20 10:31:38 · 89 阅读 · 0 评论