the applet does not run on the server, even if its embedded in a jsp or asp or php or whatever page.
the applet always run on the client machine.
therefor, the answer to your question is no.
applet does not have security issues that are jsp related.
(but they have planty of security issues that are not).
Main Topics
Browse All Topics





by: prabhukrishnanPosted on 2000-10-11 at 08:13:10ID: 4676481
I don't think that is really a potential problem.
1) The applet is downloaded from the server. So the access of the system or what the applet can actually do is dictated by the applet itself.
2) I don't think there is any difference between loading applet from a plain html and from a jsp , because , JSP is finally getting compiled to a servlet and all the servlet can send back is html.
So when the JSP is invoked , a html is returned which has a link to the applet . When the browser comes across this applet tag link ,
it fetches it as a seperate request.
So I think security is same as that of a applet loaded by a html
Prabhu