How do you make applets work?

Like in topic - how do you make applets work? When I try to run applet locally (using both IDE and HTML file) everything works, but when I try to run it from any server it doesn’t work.

HTML code of Applet:

<applet code=Core.Core.java archive=https://dl.dropbox.com/u/67758055/toolbox.jar width="700" height="500">
</applet>

I have tried to put applet on Dropbox, here is the result: https://dl.dropbox.com/u/67758055/Applet.html. For me it is loading and then just show white screen.


<applet code="Core.Core.java" archive="https://dl.dropbox.com/u/67758055/toolbox.jar" width="700" height="500">
</applet>

Still the same, unfortunately I didn’t notice any difference.

Well, apparently you didn’t use quotes in some of your parameters.

Applet is loading and don’t show any errors, but it shows only white window (if you look carefully, you will see borders of applet). When I try to open program locally, using HTML code pointing to file on hard drive everything works fine.

Program is made using Java Swing - may this be a problem?

Resource problem?

This is program without any resources, but with multiple classes (Java Swing app). Everything should work both on computer and server, but it works only on the computer.

[icode]code=“Core.Core.java”[/icode] You expect the plugin to compile your sourcecode?

Surprised I didn’t catch that myself… :frowning: