You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by "Matt Lovett (JIRA)" <ji...@apache.org> on 2007/02/15 18:57:06 UTC

[jira] Resolved: (SANDESHA2-55) pass options to responseMessageContext

     [ https://issues.apache.org/jira/browse/SANDESHA2-55?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matt Lovett resolved SANDESHA2-55.
----------------------------------

    Resolution: Fixed

> pass options to responseMessageContext
> --------------------------------------
>
>                 Key: SANDESHA2-55
>                 URL: https://issues.apache.org/jira/browse/SANDESHA2-55
>             Project: Sandesha2
>          Issue Type: Bug
>            Reporter: Takahide Nogayama
>         Assigned To: Matt Lovett
>            Priority: Critical
>         Attachments: patch3.txt, patch3copied.txt
>
>
> org.apache.sandesha2.workers.SenderWorker.checkForSyncResponses(MessageContext msgCtx) creates responseMessageContext and set some information from input argument messagecontext to responseMessageContext. I think that MessageContext.options should also be set to responseMessageContext. In current implementation, it is discarded.
> We can see similar case in org.apache.axis2.description.OutInAxisOperation.send(MessageContext msgctx). And the fix code is from here.
> -current------------------------------------------------------------------------------------------
> // create the responseMessageContext
> MessageContext responseMessageContext = new MessageContext();
> ------------------------------------------------------------------------------------------------------
> -fix-----------------------------------------------------------------------------------------------------
> // create the responseMessageContext
> MessageContext responseMessageContext = new MessageContext();
> responseMessageContext.setOptions(msgCtx.getOptions());   // set options.
> ------------------------------------------------------------------------------------------------------

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org