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 mi...@apache.org on 2007/04/18 14:18:40 UTC

svn commit: r529993 - /webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl

Author: milinda
Date: Wed Apr 18 05:18:37 2007
New Revision: 529993

URL: http://svn.apache.org/viewvc?view=rev&rev=529993
Log:
fix minor bugs caused by using axis2_date_time_t inside templates

Modified:
    webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl

Modified: webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl?view=diff&rev=529993&r1=529992&r2=529993
==============================================================================
--- webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl (original)
+++ webservices/axis2/trunk/java/modules/adb-codegen/src/org/apache/axis2/schema/template/CADBBeanTemplateHeader.xsl Wed Apr 18 05:18:37 2007
@@ -24,7 +24,7 @@
 
         #include <stdio.h>
         #include <axiom.h>
-        #include <axutil_utils.h>
+        #include <axis2_util.h>
         #include <axiom_soap.h>
         #include <axis2_client.h>
 
@@ -77,10 +77,10 @@
           </xsl:if>
         </xsl:for-each>
         <!--include special headers-->
-        <xsl:if test="property/@type='axis2_date_time_t*'">
+        <xsl:if test="property/@type='axutil_date_time_t*'">
           #include &lt;axutil_date_time.h&gt;
         </xsl:if>
-        <xsl:if test="property/@type='axis2_base64_binary_t*'">
+        <xsl:if test="property/@type='axutil_base64_binary_t*'">
           #include &lt;axutil_base64_binary.h&gt;
         </xsl:if>
 
@@ -131,7 +131,7 @@
         <xsl:for-each select="property">
             <xsl:variable name="propertyType">
             <xsl:choose>
-                <xsl:when test="@isarray">axis2_array_list_t*</xsl:when>
+                <xsl:when test="@isarray">axutil_array_list_t*</xsl:when>
                 <xsl:when test="not(@type)">axiom_node_t*</xsl:when> <!-- these are anonymous -->
                 <xsl:when test="@ours">axis2_<xsl:value-of select="@type"/>_t*</xsl:when>
                 <xsl:otherwise><xsl:value-of select="@type"/></xsl:otherwise>



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