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 na...@apache.org on 2010/01/07 10:13:42 UTC

svn commit: r896807 - /webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl

Author: nandika
Date: Thu Jan  7 09:12:54 2010
New Revision: 896807

URL: http://svn.apache.org/viewvc?rev=896807&view=rev
Log:
compilation issue on windows on generated code fixed

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

Modified: webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl?rev=896807&r1=896806&r2=896807&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl (original)
+++ webservices/axis2/trunk/java/modules/codegen/src/org/apache/axis2/wsdl/template/c/ServiceSkeleton.xsl Thu Jan  7 09:12:54 2010
@@ -388,8 +388,6 @@
 	    
           <xsl:value-of select="$method-prefix"/>_t *svc_skeleton_wrapper = NULL;
 
-          svc_skeleton_wrapper = (<xsl:value-of select="$method-prefix"/>_t*)svc_skeleton;
-          
           <xsl:for-each select="method">
             <xsl:text>
             </xsl:text>
@@ -412,6 +410,7 @@
             </xsl:for-each>
           </xsl:for-each>
 
+          svc_skeleton_wrapper = (<xsl:value-of select="$method-prefix"/>_t*)svc_skeleton;
           operation_ctx = axis2_msg_ctx_get_op_ctx(msg_ctx, env);
           operation = axis2_op_ctx_get_op(operation_ctx, env);
           op_qname = (axutil_qname_t *)axis2_op_get_qname(operation, env);