使用Eclipse for WebSphere 8.0的Web服务

时间:2014-06-13 20:00:45

标签: java eclipse web-services websphere

我正在尝试使用Eclipse创建一个Web服务来托管WebSphere 8.0。

package peter.td.com;

import javax.jws.*;

@WebService
public class First01 {
    @WebMethod
    public int Addition(int a, int b, int c)
    {
        return a+b+c;
    }
}

我做了导出(.ear)并获取了EAR文件并将其部署在WAS 8.0中 当我做http://localhost:9080/WebService01时: 它给了我一个页面找不到错误。

我四处寻找并且找不到任何好的示例来创建Web服务来托管WebSphere。我正在使用Eclipse IDE。

请分享或显示我可以使用Eclipse IDE为WAS 8.0创建WebService的任何教程链接。

1 个答案:

答案 0 :(得分:0)

您的网址不正确。它应该是http://localhost:9080/context-root/First01Service 其中context-root默认为您的Web项目名称。 在Eclipse中获取正确的url和测试服务的最简单方法是将项目添加到服务器,然后展开"服务"在项目文件夹中,右键单击您的Web服务,然后选择使用Web服务资源管理器进行测试。