Applet does not init Tomcat 5.5
The applet called in the following index.jsp code is not initiated in Internet Explorer.
The HTML and jsp code works fine.
Do I need to do anything on the Tomcat configuration to enable applets.
The jre 1.5 is installed.
<HTML>
<HEAD>
<TITLE> Learning JSP </TITLE>
</HEAD>
<BODY>
<CENTER><H1> Try Again</H1></CENTER>
<BR/>
<jsp:plugin type="applet" code="BMT_ClientApplet.class" codebase="C:/eclipse-SDK-3.0.2-win32/eclipse/workspace/Hello Sweden/WEB-INF/classes" height="550" width="550" >
</jsp:plugin>
<% String user=request.getParameter("user"); %>
<H3>Welcome <%= (user==null) ? "" : user %>!</H3>
<P><B> Today is <%= new java.util.Date() %>. Have a nice day! :-)</B></P>
<B>Enter name:</B>
<FORM METHOD=get>
<INPUT TYPE="text" NAME="user" SIZE=15>
<INPUT TYPE="submit" VALUE="Submit name">
</FORM>
</BODY>
</HTML>
Any help will be appreciated
Regards
|