eclipse怎么添加web service

eclipse怎么添加web service,第1张

在eclipse创建webservice的方法:

1、在Eclipse的菜单栏中,Window -->Preferences -->Web Service -->Axis2 Perferences,在Axis2 runtime location中选择Axis2解压缩包的位置,设置好后,点"OK"即行。

2、新建一个webservice:

(1)新建一个Java Project,命名为"WebServiceTest1"

(2)新建一个class,命名为"CalculateService",完整代码如下:

package edu.sjtu.webservice

/**

* 计算器运算

* @author rongxinhua

*/

public class CalculateService {

//加法

public float plus(float x, float y) {

return x + y

}

//减法

public float minus(float x, float y) {

return x - y

}

//乘法

public float multiply(float x, float y) {

return x * y

}

//除法

public float divide(float x, float y) {

if(y!=0)

{

return x / y

}

else

return -1

}

}

(3)在"WebServiceTest1"项目上new -->other,找到"Web Services"下面的"Web Service";

(4)下一步(next),在出现的Web Services对象框,在Service implementation中点击"Browse",进入Browse Classes对象框,查找到我们刚才写的写的CalculateService类。(如下图)。点击"ok",则回到Web Service话框。

(5)在Web Service对话框中,将Web Service type中的滑块,调到"start service“的位置,将Client type中的滑块调到"Test client"的位置。

(6)在Web Service type滑块图的右边有个"Configuration",点击它下面的选项,进入Service Deployment Configuration对象框,在这里选择相应的Server(我这里用Tomcat6.0)和Web Service runtime(选择Apache Axis2),如下图:

(7)点OK后,则返回到Web Service对话框,同理,Client type中的滑块右边也有"Configuration",也要进行相应的置,步骤同上。完成后,Next -->next即行。进入到Axis2 Web Service Java Bean Configuration,我们选择Generate a default services.xml,如下图所示:

(8)到了Server startup对话框,有个按键"start server"(如下图),点击它,则可启动Tomcat服务器了。

(9)等启完后,点击"next -- >next",一切默认即行,最后,点击完成。最后,出现如下界面:(Web Service Explorer),我们在这里便可测试我们的Web服务。(使用浏览器打开的话使用如下地址:127.0.0.1:19189/wse/wsexplorer/wsexplorer.jsp?org.eclipse.wst.ws.explorer=3)。如下图所示:

计算机右键管理

请点击输入图片描述

开始部署步骤一:

双击IIS管理器,双击DESKTOP,可以看到网站。

步骤二:

右键点击网站—>添加网站—>给网站取名字 + 选择你的webservice的文件夹路径 + 设置IP地址 —>确认 (注意webservice的文件夹里面web.config文件要删掉)

步骤三:

左键点击已经建好的网站名,点击编辑权限—>共享—>共享按钮—>选择everyone 编辑权限读写

步骤四:双击主页的ASP,启用父路径true

步骤五:主页双击默认文档,把你的webservice里面的文件Service.asmx添加进去

最后点击回到主页,点击最右侧的浏览网站:蓝色的IP地址,如果进入的页面没有报错,说明webservice发布成功!

请点击输入图片描述


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/10982683.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-12
下一篇 2023-05-12

发表评论

登录后才能评论

评论列表(0条)

保存