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 aj...@apache.org on 2006/05/01 11:09:21 UTC

svn commit: r398555 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl

Author: ajith
Date: Mon May  1 02:09:18 2006
New Revision: 398555

URL: http://svn.apache.org/viewcvs?rev=398555&view=rev
Log:
Fixing a minor error in the generated code for Async code. Thanks thilo for pointing that out

Modified:
    webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl?rev=398555&r1=398554&r2=398555&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl Mon May  1 02:09:18 2006
@@ -486,7 +486,7 @@
         }
 
            //execute the operation client
-           _operationClient.execute(true);
+           _operationClient.execute(false);
 
                     }
                 </xsl:if>