users@glassfish.java.net

Re: Web Service question

From: Daniel Cavalcanti <dhcavalcanti_at_gmail.com>
Date: Fri, 8 Jun 2007 09:26:11 -0400

Thanks,
How about if I use a descriptor: sun-ejb-jar.xml

On 6/7/07, Vijay Ramachandran <Vijay.Ramachandran_at_sun.com> wrote:
>
> 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.
>
>
>