senojsitruc / wsdl2objc

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

App Crash on run due to an uncaught exception #31

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Download a fresh r112 copy of the app.
2. Run it.
3. Crash.

I managed to fix it for my system with this ugly fix:
1. Downloaded source code via svn and imported into xcode.
2. Edited USParserApplication.m @Line: 94 outURL methode
    from:        return [NSURL URLWithString:pathString];

   to:          if (pathString!=nil)
            return [NSURL URLWithString:pathString];
        else return nil;

Gretz,
Dobo

Original issue reported on code.google.com by vod...@gmail.com on 15 Sep 2009 at 12:15

GoogleCodeExporter commented 8 years ago
Please upgrade to r131on the iPhone branch. That's the latest.

Original comment by hasse...@gmail.com on 15 Sep 2009 at 4:48

GoogleCodeExporter commented 8 years ago
Already fixed in r131

Original comment by hasse...@gmail.com on 15 Sep 2009 at 4:49