Derek
Derek

Reputation: 892

How to host an applet on google app engine?

I've downloaded the google plugin for eclipse, along with the necessary app engine stuff. Now the question is, is it possible to host a pre-made applet using google app engine, and if so, how?

Upvotes: 1

Views: 1123

Answers (1)

JB Nizet
JB Nizet

Reputation: 691765

An applet is just a jar or a series of jars that must be downloaded by the browser. Put the jar(s) in your web archive just as you would put a HTML, CSS, image or JS file, and include the markup for the applet in the appropriate page.

See http://download.oracle.com/javase/6/docs/technotes/guides/plugin/developer_guide/using_tags.html for details.

Upvotes: 5

Related Questions