Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 29125 invoked from network); 4 Jul 2007 08:41:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Jul 2007 08:41:31 -0000 Received: (qmail 23743 invoked by uid 500); 4 Jul 2007 08:41:34 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 23525 invoked by uid 500); 4 Jul 2007 08:41:33 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 23514 invoked by uid 500); 4 Jul 2007 08:41:33 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 23511 invoked by uid 99); 4 Jul 2007 08:41:33 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2007 01:41:33 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Jul 2007 01:41:30 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id D9F7B1A981A; Wed, 4 Jul 2007 01:41:09 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r553124 - /webservices/axis2/trunk/java/modules/kernel/src/org/apache/axis2/description/OutInAxisOperation.java Date: Wed, 04 Jul 2007 08:41:09 -0000 To: axis2-cvs@ws.apache.org From: deepal@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070704084109.D9F7B1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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