I'm working on an applet chat client and for some reason the applet won't load up properly in IE. I've checked a number of other browsers, which load the applet fine, but IE refuses. Furthermore, the error message it gives is "class Client.ChatPanel not found" where 'ChatPanel' is the name of the class to be run.
Does anyone have any ideas as to why IE would fail at this and not the other browsers I've tested like Netscape 6, Safari, or Mozilla?
Following is the html that starts the applet:
<applet code="Client.ChatPanel.class" codebase="chatroom/Conference/" height=450 width=500>
<param name="server" VALUE ="xxxxxx">
<param name="room" value = "<? echo $_POST[ 'roomname' ] ?>">
<param name="port" value=1789>
<param name="loginid" value="<?php echo $_SESSION['username']; ?>" >
<param name="password" value="<?php echo $_SESSION['password']; ?>" >
</applet>
I've replaced the server with 'xxxxxx' but it normally has the IP address of the host computer. The values for the parameters are pulled from session variables that do work and php is running properly.
Thank you in advance for any help.