Ayyappa wrote:
i am calling a applet from a .jsp page in the following manner <applet  code="crossword.Test"  height="200" width="200">
</applet>i am having the .class file of the applet in a package inside the classes folder in WEB-INF. It says that class Test not foundI even tried using the <jsp:plugin> tag but it asks me to install the java plugin. can i call the applet using the applet tag above or is it important to use the <jsp:plugin> tag. Ayyappa email -id  [EMAIL PROTECTED]
Applet classes are located relative to the directory that the requesting page is in.  So, if the page above is in directory "$PAGE", the class file would be loaded from "$PAGE/crossword/Test.class".  You can change the base directory for where applets are located by using the "codebase" attribute on the <applet> tag.

Craig McClanahan
 

Reply via email to