vote up 4 vote down star
1

There is a "JRE Class White List" for the Google App Engine.

What I would really like is a "Black List" -- in other words, Java APIs that will not work on GAE. Does such a list exist? Have any developers run into problems with Java APIs on GAE?

flag

63% accept rate
1  
Black list = All classes - White list. What else can we say? – mmyers Apr 15 at 16:08
Exactly what mmyers said. If it was an answer I'd upvote it! – matt b Apr 15 at 16:12
1  
That's a (poor) algorithm for deriving an answer, not an answer. And not helpful. – Tom Hawtin - tackline Apr 15 at 16:14
It's more a way of saying "I don't understand the question", actually. – mmyers Apr 15 at 16:19
OK, I just rephrased for clarity. – Julien Chastang Apr 15 at 16:28
show 1 more comment

3 Answers

vote up 1 vote down

I got a card advertising this service at Google I/O:

LTech AppEngine Compatibility Analyzer

Sounds like it might be of use to you. I have not tried it, if you do try it, please come back and comment. Thanks!

link|flag
vote up 3 vote down

It seems that they've taken more of a white-list approach: http://code.google.com/appengine/docs/java/jrewhitelist.html.

There is also more detail about the sandbox (what files it can access and so on) here: http://code.google.com/appengine/docs/java/runtime.html#The_Sandbox

The restrictions seem to be pretty intuitive (like restricted filesystem access, no JNI, etc).

link|flag
That sandbox link is helpful. Thanks. – Julien Chastang Apr 15 at 16:47
Actually, the generic idea of security limitations is understandable. But I disagree in that this explains HOW the white list was composed. My feeling is that it's based more on developers familiarity with APIs, and that parts of JDK they didn't know well they left out. My specific example is JSR-173 (aka "Stax"), classes under javax.xml.stream (that was excluded for no apparent reason), but there are probably others as well. So I hope someone has a good explanation on "how" part. – StaxMan Apr 20 at 2:39
vote up 3 vote down

I don't know a blacklist, but the following link may be helpful: http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine

link|flag
Thanks Miguel. That is a helpful start. – Julien Chastang Apr 15 at 16:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.