Click to See Complete Forum and Search --> : Applet in browser can't find it's main class on sever


johnsch
October 1st, 1999, 10:07 AM
Hi

I have an applet that works great when I am testing it on my local network
using IE 5. But when I try to run from a computer on internet I get an
exception class not found for the main class of my applet. I am using the
java plugin and java html converter. I am using the Java Web Server but my
computer is going through a @Home proxy server to reach the internet.

I am using the following html:.


<html>
<head> <title>Swing JDBC Test</title></head>
<body>

<center>
<h1>Swing JDBC Test</h1>

<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
WIDTH = 600 HEIGHT = 400
codebase="http://java.sun.com/products/plugin/1.1.1/jinstall-111-win32.cab#V
ersion=1,1,1,0">
<PARAM NAME = CODE VALUE = "QClient.class" >
<PARAM NAME = ARCHIVE VALUE = "QClient.jar" >

<PARAM NAME="type" VALUE="application/x-java-applet;version=1.1">
<COMMENT>
<EMBED type="application/x-java-applet;version=1.1" java_CODE =
"QClient.class" java_ARCHIVE = "QClient.jar" WIDTH = 600 HEIGHT = 400
pluginspage="http://java.sun.com/products/plugin/1.1.1/plugin-install.html">
<NOEMBED></COMMENT>

</NOEMBED></EMBED>
</OBJECT>


</body>
</html>


Thank for your help
John