Open GoogleCodeExporter opened 9 years ago
Hi all,
I have same issue. during compile it gives error
%«part.element.type.assignOrRetain» *** ERROR: undefined key ***
Original comment by dbkant...@gmail.com
on 18 May 2011 at 6:53
The steps that I had to go through was to use Microsoft's version of the
parsing of the wsdl file from VS to down load the xsd file. I had used several
others and even though they were the same name they didn't work. At that point
I altered, hard code the wsdl2obc source to pickup that xsd file since the
application or the wsdl file didn't reference it. This got rid of the
unresolved references It worked great.
Original comment by cbellis...@gmail.com
on 19 May 2011 at 1:08
can you send me this hard code updated wsdl2obc source.
Original comment by dbkant...@gmail.com
on 19 May 2011 at 10:04
The file is USParser.m and these are the lines that I had to change. The
problem is the scheme file wasn't part of xml from the wsdl file so I hard
coded the reference. It needed to be here to resolve attribute types for each
element.
USParser.m
- (void)processImportElement:(NSXMLElement *)el wsdl:(USWSDL *)wsdl
{
//NSString *schemaLocation = [[el attributeForName:@"schemaLocation"] stringValue];
NSString *schemaLocation = @"schemeFilename.xsd";
if (schemaLocation != nil)
{
......
This should get you close.
Original comment by cbellis...@gmail.com
on 19 May 2011 at 11:46
Original issue reported on code.google.com by
nicolas....@gmail.com
on 26 Nov 2009 at 6:26