Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Applet's A No Show in IE

843807Jan 27 2003 — edited Aug 1 2010
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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 29 2010
Added on Jan 27 2003
7 comments
105 views