Re: Path problem.

2010-05-18 Thread Sergey Beryozkin
Hi if you have jaxrs:server/@address= "/myservice" then you'd need to remove @Path("/myservice/") from the resource class. So you have a URI like ' http://host/myservice/users' then 'myservice' will be matched against jaxrs:server/@address= "/myservice" with "users" remaining and thus if you do no

Path problem.

2010-05-17 Thread rangeli nepal
I have a custom filter and my application was working nice and fine. I had a configuration as shown in beginning section. My class declaration was something like following: Later on since I have to use this filter in many my service, I changed my configuration as shown in end section. Now I ge