Ah, it seems to be CXF-6062. Any chance of getting this fixed? Jim
-----Original Message----- From: "Jim Talbut" <[email protected]> Sent: 05/11/2014 11:26 To: "[email protected]" <[email protected]> Subject: Setting interceptors on default Spring Bus Hi, I've been using the following Spring XML to set up a interceptors on the default CXF bus. Now that I've moed to CXF 3.0.1 this is no longer working (the interceptors aren't being added). <cxf:bus id="gti-scheduler" name="cxf" > <cxf:inInterceptors> <ref bean="cxfInboundLoggingInterceptor"/> </cxf:inInterceptors> <cxf:outInterceptors> <ref bean="cxfOutboundLoggingInterceptor"/> </cxf:outInterceptors> <cxf:outFaultInterceptors> <ref bean="cxfOutboundLoggingInterceptor"/> </cxf:outFaultInterceptors> <cxf:properties> <entry key="bus.jmx.enabled" value="true"/> <entry key="bus.jmx.usePlatformMBeanServer" value="true" /> <entry key="org.apache.cxf.transport.http.async.SO_KEEPALIVE" value="true" /> <entry key="search.date-format" value="yyyy-MM-dd'T'HH:mm:ss" /> </cxf:properties> </cxf:bus> Has something changed? How can I get interceptors added to every bus used by my war? Thanks Jim
