You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by de...@apache.org on 2007/07/04 10:41:09 UTC

svn commit: r553124 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java

Author: deepal
Date: Wed Jul  4 01:41:07 2007
New Revision: 553124

URL: http://svn.apache.org/viewvc?view=rev&rev=553124
Log:
we do not need to startup the listener , if the replyTo is none too

Modified:
    webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java

Modified: webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java?view=diff&rev=553124&r1=553123&r2=553124
==============================================================================
--- webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java (original)
+++ webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java Wed Jul  4 01:41:07 2007
@@ -193,7 +193,9 @@
             }
         }
         EndpointReference replyTo = mc.getReplyTo();
-        if(replyTo!=null&&!replyTo.hasAnonymousAddress()){
+        if (replyTo!=null &&!
+                replyTo.hasAnonymousAddress() &&
+                !replyTo.hasNoneAddress()){
             useAsync = true;
         }
 



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