Repository: cxf Updated Branches: refs/heads/master bcf0c9f82 -> 0a6d5eae9
Make sure the logging interceptors are before the stax wss4j things Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/0a6d5eae Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/0a6d5eae Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/0a6d5eae Branch: refs/heads/master Commit: 0a6d5eae96c58e98dd08e289b85f74e6312b1f7f Parents: bcf0c9f Author: Daniel Kulp <[email protected]> Authored: Thu Aug 21 14:21:37 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Thu Aug 21 14:22:05 2014 -0400 ---------------------------------------------------------------------- .../apache/cxf/ws/security/wss4j/WSS4JStaxOutInterceptor.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/0a6d5eae/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JStaxOutInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JStaxOutInterceptor.java b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JStaxOutInterceptor.java index 6193e2e..84930bd 100644 --- a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JStaxOutInterceptor.java +++ b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JStaxOutInterceptor.java @@ -33,6 +33,7 @@ import org.apache.cxf.common.logging.LogUtils; import org.apache.cxf.interceptor.AbstractOutDatabindingInterceptor; import org.apache.cxf.interceptor.AttachmentOutInterceptor; import org.apache.cxf.interceptor.Fault; +import org.apache.cxf.interceptor.LoggingOutInterceptor; import org.apache.cxf.interceptor.StaxOutInterceptor; import org.apache.cxf.message.Exchange; import org.apache.cxf.message.Message; @@ -77,7 +78,7 @@ public class WSS4JStaxOutInterceptor extends AbstractWSS4JStaxInterceptor { super(props); setPhase(Phase.PRE_STREAM); getBefore().add(StaxOutInterceptor.class.getName()); - + getAfter().add(LoggingOutInterceptor.class.getName()); ending = createEndingInterceptor(); } @@ -85,7 +86,7 @@ public class WSS4JStaxOutInterceptor extends AbstractWSS4JStaxInterceptor { super(); setPhase(Phase.PRE_STREAM); getBefore().add(StaxOutInterceptor.class.getName()); - + getAfter().add(LoggingOutInterceptor.class.getName()); ending = createEndingInterceptor(); }
