As per my requirement, i want to call applet from servlet/jsp, I followed below steps,
- Created Applet java class file and copied in web/jsp
- Then called that applet class in jsp file using
But getting ClassNotFoundException
, same code running other than openbravo project, working fine.
I am unable to find the root cause. Please help me.
<html>
<head>
<title>Welcome JSP-Applet Page</title>
</head>
<body>
<jsp:plugin type="applet" code="ButtonMoveApplet.class" width="400" height="400">
<jsp:fallback>
<p>Unable to load applet</p>
</jsp:fallback>
</jsp:plugin>
</body>
</html>