Hi David
The problem is that you compile the Applet code in an App Engine
environment. App Engine provides an application-server-like
environment, so consequentially compiling Swing UI code within the App
Engine environment does not work.
I guess you have setup a project with GWT/GA, so you have one project
in your IDE. But once your program is deployed to the server and
available to your clients, there are three contexts where your code
will run:
- Server-side within the App Engine
- Client-side in the browser JavaScript engine (the GWT client code)
- Client-side through the browsers Java-Plugin in a sandboxed JavaVM
(the applet code)
You have to consider these contexts while compilation. Your Applet
code has to be compile with a standard JDK.
Hope I have cleared things up? It is actually not as complicated as it
seems...
Regards, Adrian