Shun87 / wsdl2objc

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

EnumFromString and StringFromEnum still handling spaces incorrectly #85

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Generate classes from
http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl
2. compile
3. enum utility function calls do not match the function definition

What is the expected output?

    if(compType != nil) [bodyElements
setObject:typens_compTypeType_stringFromEnum(compType) forKey:@"compType"];

What do you see instead?
The function call in the service is not matched to the function name.  The
call uses camel case while the function has an underscore and lowercase word

if(compType != nil) [bodyElements
setObject:typens_compTypeTypeStringFromEnum(compType) forKey:@"compType"];

What version of the product are you using? On what operating system?
URL: http://wsdl2objc.googlecode.com/svn/trunk
Repository Root: http://wsdl2objc.googlecode.com/svn
Repository UUID: 639f78d5-f54e-0410-a9bb-231162db69cc
Revision: 163

Please provide any additional information below.
related to issue 82
Thanks for the quick response!  Hope this helps

Original issue reported on code.google.com by rustyza...@gmail.com on 4 May 2010 at 1:22

GoogleCodeExporter commented 8 years ago
Fixed in revision 164. Please verify.

Original comment by hasse...@gmail.com on 4 May 2010 at 1:52