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 2005/09/27 13:53:00 UTC

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

Author: ajith
Date: Tue Sep 27 04:52:54 2005
New Revision: 291915

URL: http://svn.apache.org/viewcvs?rev=291915&view=rev
Log:
Set the default AXIS2_HOME to null in the generated stubs. This will cause the client to pick up the mars (module archives) from the default locations

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

Modified: webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl?rev=291915&r1=291914&r2=291915&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl (original)
+++ webservices/axis2/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl Tue Sep 27 04:52:54 2005
@@ -15,7 +15,8 @@
     */
 
     public class <xsl:value-of select="@name"/> extends org.apache.axis2.clientapi.Stub implements <xsl:value-of select="$interfaceName"/>{
-        public static final String AXIS2_HOME = ".";
+        //default axis home being null forces the system to pick up the mars from the axis2 library
+        public static final String AXIS2_HOME = null;
         protected static org.apache.axis2.description.OperationDescription[] _operations;
 
         static{