I have been having some trouble uploading my Java Applet embedded in HTML on to my Web server.
The trouble is that when the Applet is on the server it does not run (HTML page is blank).
However it works 100% when running it on my local computer.
I suspect it has something to do with the packages and the relative path that the .class and .jar files are created in.
Here is my code
<HTML> <HEAD> </HEAD> <BODY> <P> <APPLET codebase="classes" code="com/mxgraph/examples/swing/EditorDriver.class" archive ="com/mxgraph/examples/swing/jgraphx.jar" width=850 height=635></APPLET> </P> </BODY> </HTML>
How do i overcome this problem?