Author: eglynn
Date: Wed Jul 11 09:40:06 2007
New Revision: 555332
URL: http://svn.apache.org/viewvc?view=rev&rev=555332
Log:
Setting fault observer in AbstractEndpointSelectionInterceptor, to avoid faults
thrown from the in-interceptor-chain just being dropped on the floor.
Modified:
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractEndpointSelectionInterceptor.java
Modified:
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractEndpointSelectionInterceptor.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractEndpointSelectionInterceptor.java?view=diff&rev=555332&r1=555331&r2=555332
==============================================================================
---
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractEndpointSelectionInterceptor.java
(original)
+++
incubator/cxf/trunk/rt/core/src/main/java/org/apache/cxf/interceptor/AbstractEndpointSelectionInterceptor.java
Wed Jul 11 09:40:06 2007
@@ -64,6 +64,8 @@
chain.add(ep.getInInterceptors());
chain.add(ep.getBinding().getInInterceptors());
chain.add(ep.getService().getInInterceptors());
+
+ chain.setFaultObserver(ep.getOutFaultObserver());
}
/**