使用javaee教程的简单java-wx webservice

时间:2014-10-20 00:02:45

标签: java eclipse web-services tomcat wsdl

我试图按照本教程构建一个简单的Web服务,但是在tomcat中部署代码后无法访问WSDL -

以下是我遵循的步骤 -

  1. 在Eclipse中创建一个动态Web项目。
  2. 创建了一个包和类..这是下面的代码

    package helloservice.endpoint;
    
    import javax.jws.WebService;
    import javax.jws.WebMethod;
    
    @WebService
    public class Hello {
       private String message = new String("Hello, ");
    
       public void Hello() { }
    
       @WebMethod
       public String sayHello(String name) {
          return message + name + ".";
       }
    }
    
  3. 在tomcat中部署代码并运行它但无法访问WSDL。我去了tomcat经理,看到" helloservice"应用

  4. **http://localhost:8080/helloservice/HelloService?wsdl**
    

    从文档中HelloService之后的helloservice是什么。这是班级名称吗?

    我该如何调试?

0 个答案:

没有答案