Closed GoogleCodeExporter closed 9 years ago
The more I dig into this, while it still seems that anyType isn't handled, the
problem seems deeper. The WSDL includes this. The complaint seems to be that
the type
for 'entry' is nil.
<xsd:complexType name="anyType2anyTypeMap">
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="0" name="entry">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="0" name="key" type="xsd:anyType"/>
<xsd:element maxOccurs="1" minOccurs="0" name="value" type="xsd:anyType"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
Original comment by robnapier@gmail.com
on 7 Jan 2009 at 2:21
The problem here is that anything with a structure where there is no type
attribute fails to properly parse.
Original comment by hasse...@gmail.com
on 31 Aug 2009 at 8:22
FWIW, I've got a fix for this bug amongst others. It's part of a wider-ranging
fix where I've added the ability to
import wsdls.
Original comment by hasse...@gmail.com
on 1 Sep 2009 at 5:10
I have the same problem with the anyTypes, I checked out the newest version and
parsed my WSDL with it, but
the problem persists, the generated code even has more errors now.
Original comment by wero.shinoda@gmail.com
on 2 Sep 2009 at 4:02
Did you check out the branch version or the trunk? Personally I'm working of
the branch.
For anyType, modify USWSDL.m and add near line 108 something like:
[xsd addSimpleClassWithName:@"anyType" representationClass:@"NSString *"];
[xsd addSimpleClassWithName:@"any" representationClass:@"NSString *"];
Let me know if it works.
Original comment by hasse...@gmail.com
on 3 Sep 2009 at 8:48
Original comment by hasse...@gmail.com
on 5 Sep 2009 at 5:01
anyType added in revision 104 on the iPhone branch.
Please check that it works as expected
Original comment by hasse...@gmail.com
on 5 Sep 2009 at 6:14
i am having same problem and found no solution yet
Original comment by fashf...@gmail.com
on 23 Jul 2014 at 5:27
Original issue reported on code.google.com by
robnapier@gmail.com
on 7 Jan 2009 at 2:10