somsin / wsdl2objc

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

GroupWise WSDL + WSDL2ObjC = 560 errors #87

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. selected source - groupwise xml + several .xsd (look to attached files)
2. selected output directory
3. pressed "Parse WSDL"

What is the expected output?
99.9% Ready and 

What do you see instead?
~560 errors

What version of the product are you using? On what operating system?
0.6, 0.7 b1 

Please provide any additional information below.
MC OS X - 10.5.8, iPhone SDK 3.1.3, selected destination - Simulator 3.0

The files I wanted to convert to ObjC attached. They are from Novell
Development Kit - the directory I was given called
"novell-gwsoap-devel-2008.12.23-1cross_platform"

Original issue reported on code.google.com by use...@gmail.com on 7 May 2010 at 2:45

GoogleCodeExporter commented 9 years ago
UPDATE:

Ok, some hand work* + rev 168 = 33 errors + 133 warnings.

All of errors are typical:

typedef enum types_StatusTrackingOptions {
    types_StatusTrackingOptions_none = 0,
    types_StatusTrackingOptions_None,
    types_StatusTrackingOptions_Delivered,
    types_StatusTrackingOptions_DeliveredAndOpened,
    types_StatusTrackingOptions_All,
} types_StatusTrackingOptions;

types_StatusTrackingOptions types_StatusTrackingOptions_enumFromString(NSString 
*string);
NSString * 
types_StatusTrackingOptions_stringFromEnum(types_StatusTrackingOptions 
enumValue);
@interface types_StatusTracking : types_StatusTrackingOptions {

- and I'm having error "cannot find interface declaration 
for 'types_StatusTrackingOptions', superclass of 'types_StatusTracking'".

*hand work = fixing non-valid file names of output like ".h" + ".m" + replacing 
one 
of the @interface BEFORE it was used futher in code!

Original comment by use...@gmail.com on 7 Jun 2010 at 12:12