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 "Aaron Gourley (JIRA)" <ji...@apache.org> on 2010/02/19 19:22:27 UTC

[jira] Created: (AXIS2-4630) ADB generates code that doesn't compile when WSDL has abstract types.

ADB generates code that doesn't compile when WSDL has abstract types.
---------------------------------------------------------------------

                 Key: AXIS2-4630
                 URL: https://issues.apache.org/jira/browse/AXIS2-4630
             Project: Axis2
          Issue Type: Bug
          Components: adb
    Affects Versions: 1.5.1
            Reporter: Aaron Gourley


In ADBBeanTemplate.xsl, occurrences of the following exist without taking into consideration the fact that the class may have been declared as abstract:

new <xsl:value-of select="$name"/>();

Classes are declared abstract if @isAbstract='true' here (also in ADBBeanTemplate.xsl):

<xsl:if test="@isAbstract and @unwrapped and not(@skip-write)">abstract</xsl:if>

Obviously, abstract classes can not be instantiated directly.  Specifically I am seeing the problem in the generated Factory.fromString() method.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.