users@glassfish.java.net

Re: Web Service question

From: Vijay Ramachandran <Vijay.Ramachandran_at_Sun.COM>
Date: Fri, 08 Jun 2007 12:05:52 -0700

Use the endpoint-address-uri element to specify the exact URI you want.

Vijay

Daniel Cavalcanti wrote:
> Thanks,
> How about if I use a descriptor: sun-ejb-jar.xml
>
> On 6/7/07, *Vijay Ramachandran* <Vijay.Ramachandran_at_sun.com
> <mailto: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.
>>
>
>