[ 
https://issues.apache.org/jira/browse/AXIS2-3164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12532455
 ] 

David Slubicki commented on AXIS2-3164:
---------------------------------------

It looks like the problem is coming from:
     file:  ADBBeanTemplate.xsl
     package:  org.apache.axis2.schema.template
     jar:  axis2-adb-codegen-1.3.jar  

The problem line starts like this:
     public <xsl:if test="not(@unwrapped) or (@skip-write)">static</xsl:if> 
<xsl:if test="@isAbstract">abstract</xsl:if>

Adding a space between ">" and "abstract" (no quotes) appears to fix the 
problem.  The modified code looks like this:
     public <xsl:if test="not(@unwrapped) or (@skip-write)">static</xsl:if> 
<xsl:if test="@isAbstract"> abstract</xsl:if>


> wsdl2java ADB client creates 'staticabstract' instead of 'static abstract'
> --------------------------------------------------------------------------
>
>                 Key: AXIS2-3164
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3164
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: adb, codegen, databinding, wsdl
>    Affects Versions: 1.3
>         Environment: debian testing, Java 1.5.0_11, eclipse 3.2.1
>            Reporter: Petr Kremen
>
> wsdl2java ADB client creates 'staticabstract' instead of 'static abstract'.

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


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to