Repository: cxf Updated Branches: refs/heads/master 266ad768f -> 3bd1723a6
fix RM11 CloseSequence's invalid Sequence soap header Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3bd1723a Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3bd1723a Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3bd1723a Branch: refs/heads/master Commit: 3bd1723a6fa236641b8a07628b505fe755c31f9d Parents: 266ad76 Author: Akitoshi Yoshida <[email protected]> Authored: Wed May 14 12:16:12 2014 +0200 Committer: Akitoshi Yoshida <[email protected]> Committed: Wed May 14 12:16:12 2014 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/ws/rm/RMCaptureOutInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/3bd1723a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMCaptureOutInterceptor.java ---------------------------------------------------------------------- diff --git a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMCaptureOutInterceptor.java b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMCaptureOutInterceptor.java index 9d8f85b..2c5e832 100644 --- a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMCaptureOutInterceptor.java +++ b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMCaptureOutInterceptor.java @@ -114,7 +114,7 @@ public class RMCaptureOutInterceptor extends AbstractRMInterceptor<Message> { boolean isApplicationMessage = !RMContextUtils.isRMProtocolMessage(action); boolean isPartialResponse = MessageUtils.isPartialResponse(msg); RMConstants constants = protocol.getConstants(); - boolean isLastMessage = constants.getCloseSequenceAction().equals(action); + boolean isLastMessage = RM10Constants.CLOSE_SEQUENCE_ACTION.equals(action); RMProperties rmpsOut = RMContextUtils.retrieveRMProperties(msg, true); if (null == rmpsOut) {
