I have created a piece of code that supposively uses the JSON library
to retrieve information from a third party server.
Strangely, when I initiate the destination URL, the code skips
directly to the "finally" block without throwing an exception.
By stepping through the code I can see that a library seems to report
that at some point the classloader class seems to end in a
UnsatisfiedLinkError message, maybe creating havoc..
What could be the cause of this ?
try {
myurl = URL.encode(url); // the line that bombs
...
}
} catch (NullPointerException e) {
log.warning("NullPointerException");
}
catch (Exception e) {
log.warning("Exception: " + e.getMessage());
} finally {
log.warning("Final " + myurl); // Always goes here
}
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.