You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/06/30 03:24:28 UTC

svn commit: r789527 - /cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java

Author: dkulp
Date: Tue Jun 30 01:24:28 2009
New Revision: 789527

URL: http://svn.apache.org/viewvc?rev=789527&view=rev
Log:
[CXF-2318] Put RetransmissionInterceptor ahead of the AttachmentOutStuff

Modified:
    cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java

Modified: cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java?rev=789527&r1=789526&r2=789527&view=diff
==============================================================================
--- cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java (original)
+++ cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java Tue Jun 30 01:24:28 2009
@@ -21,6 +21,7 @@
 
 import java.io.OutputStream;
 
+import org.apache.cxf.interceptor.AttachmentOutInterceptor;
 import org.apache.cxf.interceptor.Fault;
 import org.apache.cxf.interceptor.StaxOutInterceptor;
 import org.apache.cxf.io.WriteOnCloseOutputStream;
@@ -38,6 +39,7 @@
     public RetransmissionInterceptor() {
         super(Phase.PRE_STREAM);
         addBefore(StaxOutInterceptor.class.getName());
+        addBefore(AttachmentOutInterceptor.class.getName());
     }
     
     public RMManager getManager() {