webService笔记
iteye_21009
这个作者很懒,什么都没留下…
展开
-
JBOSS下开发webservice
简介:JAVA EE为webService提供了两种不同的编程模式,EJB容器模式及web容器模式 一、EJB容器模式:在EJB项目的session bean类中实现 1.例子 @Stateless @Remote(HelloWorld.class) @WebService public class HelloWorldImpl implements HelloWorld { ...2010-03-10 15:54:06 · 223 阅读 · 0 评论 -
使用AXIS开发WebService
一、Axis2的下载和安装 1.网址:http://ws.apache.org/axis2/ 2.把axis2.war文件放到\webapps目录下 3.输入http://localhost:8080/axis2/即可显示欢迎的页面 二、测试实现一个POJO 代码: public class SimpleService{ public String getGreeting...2010-03-10 16:00:49 · 78 阅读 · 0 评论