Skip to content

Commit

Permalink
Only copy the RECV_RESULTS over if we don't already have them in the …
Browse files Browse the repository at this point in the history
…current message context

git-svn-id: https://svn.apache.org/repos/asf/webservices/axis2/branches/java/1_1@481501 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Ruchith Udayanga Fernando committed Dec 2, 2006
1 parent d953971 commit e8e60db
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -254,7 +254,8 @@ public RampartMessageData(MessageContext msgCtx, boolean sender) throws RampartE
MessageContext inMsgCtx;
if (opCtx != null
&& (inMsgCtx = opCtx
.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE)) != null) {
.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE)) != null
&& msgContext.getProperty(WSHandlerConstants.RECV_RESULTS) == null) {
msgContext.setProperty(WSHandlerConstants.RECV_RESULTS,
inMsgCtx.getProperty(WSHandlerConstants.RECV_RESULTS));

Expand Down

0 comments on commit e8e60db

Please sign in to comment.