I also changed my xml file 

I deleted the

        <cxf:bus>
                <cxf:inInterceptors>
                        <ref bean="MyLoginInInterceptor" />        
                </cxf:inInterceptors>
                <cxf:outInterceptors>
                        <ref bean="MyLoginOutInterceptor" />
                </cxf:outInterceptors>
        </cxf:bus>

and added this under the <jaxrs:server> tag

                <jaxrs:inInterceptors>
                        <ref bean="MyLoginInInterceptor" />
                </jaxrs:inInterceptors>
                <jaxrs:outInterceptors>
                        <ref bean="MyLoginOutInterceptor" />
                </jaxrs:outInterceptors>


but still the same problem. My exception mapper is never invoked and
WebApplicationException is thrown as normal.



--
View this message in context: 
http://cxf.547215.n5.nabble.com/Custom-Response-from-handleFault-JAX-RS-tp5738651p5738955.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to