How to use applet in jsp with tomcat ?? Help me please
843833Aug 8 2001 — edited Aug 8 2001Hi all,
I've read lot of thread about JSP using Applet and it seems to be difficult to do.
My problem is that I'm using an applet into a jsp page, my jsp create the applet parameter.
The source returned by the jsp page seems to be good but the applet (which shall display a Pie Chart) display only a circle (correspond to init method). Is there any way to fix this problem ??
I've put my applet source and class into web-inf\classes\myclasses directory and I call it in the jsp page by using
<jsp:useBean id="PieChart" class="htmlgraph.PieChart" scope="request" />
I'm working with Tomcat 3.2 and jdk 1.2, the applet is working fine with fixed parameter (when I use it in a basic html file), but not in my jsp page.
Hope someone will be able to help me
Thanks in advance
Shamann