Thanks, I didn't realize that Google App Engine only supported a Java
subset. Kind of goes against the write-once-run-anywhere philosophy, but
I suppose Google can get away with it.
- Dennis
Sagara Gunathunga wrote:
Old UUID generator is based on java.net.InetAddress class but
java.net.InetAddress is not included in the Google App Engine's JRE Class
White List [1] . Once you run the Axiom on Google App Engine it throws
NoClassDefFoundError due to this InetAddress issue. This can be solved by
using java.util.UUID class as the UUID generator .
[1] - http://code.google.com/appengine/docs/java/jrewhitelist.html
Thanks,
On Mon, May 3, 2010 at 12:52 PM, Dennis Sosnoski <[email protected]> wrote:
How did the old UUID generator code interfere with Google App Engine?
- Dennis
Sagara Gunathunga wrote:
+1 for Java 1.5
Few months ago I noticed that Axiom 1.2.8 not work on Google App Engine
due to it's legacy UUID generator codes, once i replace that code with
java.util.UUID it worked fine, hope this also fixed with Amil's change.
Thanks,