users@glassfish.java.net

Re: Web Service question

From: Vijay Ramachandran <Vijay.Ramachandran_at_Sun.COM>
Date: Thu, 07 Jun 2007 14:13:59 -0700

If you are not using any descriptors at all, then try this :

@STateless()
@WebService(serviceName="foo-1.0.0")
public ......

Vijay

Daniel Cavalcanti wrote:
> I have a simple question...
>
> I have a test web service:
> @Stateless()
> @WebService()
> public class TestWS {
> @WebMethod() public String hello(@WebParam() String name) {
> return "Hello " + name + "!";
> }
> }
>
> When I deploy, the WSDL URL is
> http://localhost:8080/TestWSService/TestWS?wsdl.
> How can I change that to have something like:
>
> http://localhost:8080/foo-1.0.0/TestWS?wsdl.
>
> thanks,
> Daniel.
>