I have an
applet which is in a jar file invoked from a
JSP running in weblogic.
I use the following tag for invoking the applet in the JSP.
<APPLET code="BarChart.class" archive="BarChart.jar" width=500 height=500></APPLET>
But I get a ClassNotFoundException for the applet class.
Is there a specific location in which i have to put the jar file containing the applet or is there a change in the tag used to invoke the applet?
Any pointers or suggestions would be of great help.
Thanks in advance.