I'm having a huge bummer: I'm trying to generate a WS client with wsdl2java from axis2. The problem is: in the underlying schema is an the following definition:
<xsd:attribute name="Class" type="ClassType">
That leads to the generation of a java class where an attribute "class" is defined and a javabean-style accessor is declard:
ClassType getClass ()
Well, you can see the problem ;)
getClass is already inherited by Object and declared final - so how do I get around that by using axis?
Thanks a lot for your help, I'm really stuck here!