eclipse - Simple java-wx webservice using javaee tutorial -



eclipse - Simple java-wx webservice using javaee tutorial -

im trying build simple webservice next tutorial unable access wsdl 1 time deploy code in tomcat -

here steps followed -

create dynamic web project in eclipse.

created bundle , class..here below code

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) { homecoming message + name + "."; } }

deployed code in tomcat , ran unable access wsdl. went tomcat manager , see "helloservice" application.

**http://localhost:8080/helloservice/helloservice?wsdl**

from document, helloservice after helloservice. class name?

how can debug it?

java eclipse web-services tomcat wsdl

Comments