RE: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-29 Thread Sergey Beryozkin
o the list of resource methods, I'll update the code... Cheers, Sergey -Original Message- From: Yong-Loh [mailto:vasantha_rap...@infosys.com] Sent: 29 January 2010 03:50 To: users@cxf.apache.org Subject: Re: CXF with JAX-RS : No operation matching request path /detail/ is fo

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Yong-Loh
Hi Sergey, Thanks a lot for the inputs provided. This issue got resolved. Problem is with the annotations used in ContentProcessImpl. I have used QueryParam annotations in the method signature in ContentProcessImpl. I think, it would be better if the issue is logged somewhere why a particular

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Sergey Beryozkin
Hi I can not reproduce it. You haven't send the source so this is the source I've come up with : @Path("/") public interface ContentProcess { @GET @Path("/content/") @Produces("application/xml") public Book getContent(@QueryParam("address") String address); @GET @Path("/detail/") @Produ

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Yong-Loh
Hi Sergey, I have to leave right now. Please let me know your findings so that I can work on them tomorrow morning when I come in. Thanks & Regards, Yong-Loh Yong-Loh wrote: > > Hi Sergey, > > I have uploaded it. I can see a link samplewar.zip in the earlier post. > > Are you not able to se

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Yong-Loh
Hi Sergey, I have uploaded it. I can see a link samplewar.zip in the earlier post. Are you not able to see the link? Thanks & Regards, Yong-Loh Sergey Beryozkin-2 wrote: > > Where is the link to the uploaded war ? > > thanks, Sergey > >> >> Hi Sergey, >> >> We are using the CXF latest versi

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Sergey Beryozkin
Where is the link to the uploaded war ? thanks, Sergey Hi Sergey, We are using the CXF latest version..i.e 2.2.6. I have uploaded the sample war(Just need to add the required jar files in the lib folder to make it work). I have a resource class with two GET methods(one with the path /conten

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Yong-Loh
Hi Sergey, We are using the CXF latest version..i.e 2.2.6. I have uploaded the sample war(Just need to add the required jar files in the lib folder to make it work). I have a resource class with two GET methods(one with the path /content and the other with /detail). The one with /content is wo

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Sergey Beryozkin
Hi There's no need to upload the complete war application. Please create a test war which will include : WEB-INF/web.xml WEB-INF/beans.xml WEB-INF/classes/Content class (empty class will do, just add the annotations there if any which are actually used) WEB-INF/classes/ContentProcess interfac

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Yong-Loh
Hi Sergey, I am not able to upload the war file(its of 9MB). It says file is too large. How do I attach it to JIRA? Thanks & Regards, Yong-Loh Sergey Beryozkin-2 wrote: > > Hi > > What CXF version you're using ? The reason why this method is not selected > should've been logged (definitely s

Re: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-28 Thread Sergey Beryozkin
Hi What CXF version you're using ? The reason why this method is not selected should've been logged (definitely starting from 2.2.5), can you set a log level to DEBUG and see what is going on. I feel there's some important detail which is missing. I do not see any reason why @Path("/detail/")

RE: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-27 Thread Yong-Loh
Hi David, Thanks for the reply. I have hit the WADL address. I could only see /content/. Cant find out /detail/. One question: Is it mandatory that, I need to pass all the queryparams in the URL. Because, when I removed all the parameters from the getLocalDetail method signature, it works. I g

RE: CXF with JAX-RS : No operation matching request path /detail/ is found

2010-01-27 Thread KARR, DAVID (ATTCINW)
> -Original Message- > From: Yong-Loh [mailto:vasantha_rap...@infosys.com] > Sent: Wednesday, January 27, 2010 8:15 PM > To: users@cxf.apache.org > Subject: CXF with JAX-RS : No operation matching request path /detail/ > is found > > > Hi All, > > We are using CXF with JAX-RS for buildin