Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 17867 invoked from network); 30 Jun 2009 01:24:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 30 Jun 2009 01:24:40 -0000 Received: (qmail 11571 invoked by uid 500); 30 Jun 2009 01:24:51 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 11497 invoked by uid 500); 30 Jun 2009 01:24:51 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 11488 invoked by uid 99); 30 Jun 2009 01:24:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Jun 2009 01:24:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Jun 2009 01:24:49 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id EE6BC23888CD; Tue, 30 Jun 2009 01:24:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r789527 - /cxf/trunk/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RetransmissionInterceptor.java Date: Tue, 30 Jun 2009 01:24:28 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090630012428.EE6BC23888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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() {