On 5/10/07, Daniel Gresh <[EMAIL PROTECTED]> wrote:

Here is the JSP page code, if it helps:

The problem may be because you're using applet tag within XHTML strict.

The applet tag is not supported in XHTML 1.1 (and was depricated in
HTML 4.01), you are encouraged to upgrade to the object tag or to an
even better jsp:plugin
http://java.sun.com/products/jsp/syntax/2.0/syntaxref2023.html#1004158
tag.

Although, upgrading may or may not solve your particular problem, at
least it offers the satisfaction that the code is valid, so that the
browser can process it correctly.

Also check if the applet is being cached somewhere, try deleting the
browsers cache. That may help in solving the problem.

I don't think this problem has anything to do with Tomcat,  for
further help this forum
http://forum.java.sun.com/forum.jspa?forumID=421

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html>
<title>NVAC Polling Controller</title>
<body>
<applet code="applet.NVACApplet" width="200" height="100">
Your browser does not support the applet tag.
</applet>
<%
//Service.init();
%>
<%
//out.print(Service.showString());
%>
</body>
</html>

Thanks,
Dan


Regards
Rashmi

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to