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

Popular posts from this blog

php - How to pass multiple values from url -

php - Laravel not returning controller -

c# - Confused on how to specify a Platform and Version while using ChromeOptions for RemoteWebDriver with Selenium donNet since recent updates -