Hello,
I have a simple applet (using JApplet), which has a JList, and is
filled in the init() function.
I am loading it using either APPLET  (in HTML) or  jsp:plugin
type="applet"(in JSP)

1)if the applet is loaded using APPLET tag. Every thing works fine. The
applet is loaded and the list box is filled
EG#
<APPLET  CODEBASE = "/applets"   CODE   = "MyApplets.class"   WIDTH    =
400
  HEIGHT   = 300   HSPACE   = 0   VSPACE   = 0   ALIGN    = middle>

2)If JSP is used to load applet ... the applet is loaded, but the list
box is NEVER  filled.
EG#
 <jsp:plugin type="applet" code="MyApplet.class" codebase="/applets"
name="MyApplet" width="600" height="400"     hspace="0"  vspace="0"
align="middle">
 </jsp:plugin>


Why does the applet MyApplet.class, work differently  when loaded
through HTML & JSP.
Why is the list box in the applet not getting filled when loaded using
JSP??

Any suggestions please.
Thanks
Abhijit Neogy

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to