You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Brian DePradine (JIRA)" <ji...@apache.org> on 2008/03/07 18:51:46 UTC

[jira] Commented: (AXIS2-3580) Non Blocking Dual Channel fails if MsgContext already had an replyTo Epr set to anonymous

    [ https://issues.apache.org/jira/browse/AXIS2-3580?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12576301#action_12576301 ] 

Brian DePradine commented on AXIS2-3580:
----------------------------------------

Hmm, I am not exactly sure what the problem is that you are trying to fix. Also, there is no need to check for the none URI at the point you suggest, as there is already a check for it in executeImpl().

> Non Blocking Dual Channel fails if MsgContext already had an replyTo Epr set to anonymous
> -----------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3580
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3580
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>            Reporter: Thilina Gunarathne
>            Priority: Critical
>
> OutInAxisOperation line 265 (in 1.3 release code).
>         if (useCustomListener == null || !useCustomListener.booleanValue()) {
>  >>           if(mc.getReplyTo()==null){
>                 EndpointReference replyToFromTransport =
>                         mc.getConfigurationContext().getListenerManager().
>                                 getEPRforService(sc.getAxisService().getName(),
>                                         axisOp.getName().getLocalPart(), mc
>                                         .getTransportIn().getName());
>                 if (mc.getReplyTo() == null) {
>                     mc.setReplyTo(replyToFromTransport);
>                 } else {
>                     mc.getReplyTo().setAddress(replyToFromTransport.getAddress());
>                 }
>             }
>         } 
> >> line should be as follows
>  if(mc.getReplyTo()==null | replyTo.hasNoneAddress()){

-- 
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: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org