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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]