以前开发webservice使用IBM工具比较简单,最近重新感觉一下使用AXIS2。
基本步骤:
1 eclipse
2 axis2文件
3 tomcat容器/jetty
创建javaBean,反向为wsdl,同时使用wsdl制作client。
TestCal
Hi there,this is an AXIS service!
Perhaps there will be a form for invoking the service here...
This XML file does not appear to have any style @R_702_4045@ion associated with it. The document tree is shown below.
package com.rx;
import java.rmi.remoteexception;
public class MyTest {
/**
* @param args
* @throws remoteexception
*/
public static void main(String[] args) throws remoteexception {
TestCal testCal = new TestCalProxy();
System.out.println(testCal.say("bdfdfa"));
}
}
import java.rmi.remoteexception;
public class MyTest {
/**
* @param args
* @throws remoteexception
*/
public static void main(String[] args) throws remoteexception {
TestCal testCal = new TestCalProxy();
System.out.println(testCal.say("bdfdfa"));
}
}
war部署到容器中。
客户端测试代码
在tomcat和jetty(D:\jetty-6.1.6>java -jar start.jar)下都测试通过。
下面的推荐我没仔细看,瞄了一眼, 感觉还比较全。
推荐:http://sumdwang.blog.163.com/blog/static/7929695020113281127488/
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。