Re: Camel CXF Jaxrs service implementation class's methods are not executing

2014-09-29 Thread vrahul
Thanks Jiang, I understand why control should not go to service impl. But now my concern is why we need to write the impl class at all. As in below example I have create a web service called FeatureService, and in cxf:rsServer tag's serviceClass attribute we need to pass the above FeatureService's

Re: Camel CXF Jaxrs service implementation class's methods are not executing

2014-09-09 Thread vrahul
This became a code quality concern for us. Can you please explain that why cxf-rs server bean implementation behave is different with camel. is there any way i can implement cxf-rs services the same way as it is. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-CXF-Jaxr

Camel CXFrs server mapper.setSerializationInclusion(Inclusion.NON_NULL) in spring file

2014-05-14 Thread vrahul
Hi following is my cxfrs server configuration I need to configure Inclusion.NON_NULL here so that it can exclude the null fields from the generated gson string. Any idea how i can achieve this. -- View this message in context: http://camel.465427.n5.nabble

Re: Problem with Camel,osgi-compendium and mvn camel:run

2014-04-14 Thread vrahul
No i am not using Blueprint, I have to use spring only. -- View this message in context: http://camel.465427.n5.nabble.com/Problem-with-Camel-osgi-compendium-and-mvn-camel-run-tp4598536p5750192.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Problem with Camel,osgi-compendium and mvn camel:run

2014-04-14 Thread vrahul
I am using 2.10.0.redhat-60024 version but still getting the same namespace not found exception. Is there is a way to run the compendium namespace camel file in fuse ide/mvn camel:run. -- View this message in context: http://camel.465427.n5.nabble.com/Problem-with-Camel-osgi-compendium-and-

Re: CXF jaxrs custome exception mapper with camel

2014-04-07 Thread vrahul
Cxf with camel always surprised me. ExceptionMapper is a basic requirement expected from the restfull server. Please let me know once you are done with the investigation :) . This is a urgency for me to have a exception mapper or similar alternate. -- View this message in context: http://ca

Re: CXF jaxrs custome exception mapper with camel

2014-04-07 Thread vrahul
Cxf with camel always surprised me. ExceptionMapper is a basic requirement expected from the restfull server. Please let me know once you are done with the investigation :) . This is a urgency for me to have a exception mapper or similar alternate. -- View this message in context: http://ca

CXF jaxrs custome exception mapper with camel

2014-04-07 Thread vrahul
Hi, I am trying to use ExceptionMapper class for my custom exception, below is my custom exception mapper class import javax.ws.rs.core.Response; import javax.ws.rs.ext.ExceptionMapper; import javax.ws.rs.ext.Provider; import com.my.flm.item.exception.CustomException; @Provider public class Item

Re: Camel CXF Jaxrs service implementation class's methods are not executing

2014-04-04 Thread vrahul
Thanks Sergey, I have also tried by creating services using cxf jaxrs server endpoint as below and used in camel I might consider experimenting with camel restlet , http and jetty but also those will come under the scope of

Camel CXF Jaxrs service implementation class's methods are not executing

2014-04-03 Thread vrahul
Hi, I am confused with the behaviour of cxf rest web service with camel route file. I have noticed the control never go inside the implementing class of the rest service interface. Following are the steps how i am writing the web service using cxf jaxrs and camel 1. i have create a interface.