Hi, I'm having an issue where all my request headers (and all headers I add during the route) are being copied to my http response (camel 2.12.0).
My CXF service bean looks like this: @Path("/equipment/health/summaries") public class EquipmentHealthSummaryWebService { ... @Path("/stations/{stationId}") @GET @Produces({"application/json", "application/xml"}) @Profiled(tag="web.getEquipmentGroupHealthSummaries", level="WARN") public EquipmentGroupHealthSummaries getEquipmentGroupHealthSummaries(@PathParam("stationId") String stationId) { return null; } ... My configured endpoint looks like this: <cxf:rsServer id="rsEquipmentHealthRecordsWebService" address="/" loggingFeatureEnabled="true"> <cxf:serviceBeans> <ref bean="equipmentHealthRecordWebService"/> <ref bean="equipmentHealthSummaryWebService"/> <ref bean="equipmentGroupWebService"/> </cxf:serviceBeans> <cxf:providers> <ref bean="jsonProvider"/> </cxf:providers> </cxf:rsServer> Finally my route looks like this: from("cxfrs://bean://rsEquipmentHealthRecordsWebService?bindingStyle=SimpleConsumer") .tracing() .setHeader("user").mvel("org.apache.shiro.SecurityUtils.getSubject()") .recipientList(simple("direct:${header.operationName}")); and from("direct:getEquipmentGroupHealthSummaries") .beanRef("equipmentGroupService", "getEquipmentGroupHealthSummaries") When I hit this service, every header in my request gets copied to my response. How can I prevent this? Thanks John -- View this message in context: http://camel.465427.n5.nabble.com/CXF-rest-service-route-copies-all-request-headers-to-response-tp5741613.html Sent from the Camel - Users mailing list archive at Nabble.com.