nishigandharajurkar / wsdl2objc

Automatically exported from code.google.com/p/wsdl2objc
MIT License
0 stars 0 forks source link

Can't decode Axis2 generated WSDL when the java code uses Enums #56

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
A WSDL with the fragment below creates a method call with a $ in its name:
<xs:complexType name="InfoGraphConfig$OUTPUT_TYPE">
            <xs:complexContent>
               <xs:extension base="xs:Enum">
                  <xs:sequence>
                     <xs:element minOccurs="0" name="HTML" nillable="true"
                                 type="ns8:InfoGraphConfig$OUTPUT_TYPE"/>
                     <xs:element minOccurs="0" name="IMAGE" nillable="true"
                                 type="ns8:InfoGraphConfig$OUTPUT_TYPE"/>
                  </xs:sequence>
               </xs:extension>
            </xs:complexContent>
         </xs:complexType>

It also doesn't know how to parse the Enum type. The $ is generated from 
the use of inner classes in Java.

What is the expected output?

What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by jim.ad...@sas.com on 4 Nov 2009 at 2:46