|
hi,
no, he means that your servlet prints out html code
that makes the browser display an applet.
to make the applet display values that a user
send to your servlet, you can pass the values with:
<applet code="..." >
<param name="paraName"
value="paraValue">
</applet>
if you want it the other way round (your servlet
shall display values a user entered into your applet), your applet has to open
an URLConnection to your servlet's URL, with URLConnection.getOutputStream() you
can open an OutputStream to your servlet and write data to it.
hope this helps!
-mw
|
- AW: call Applet in servlet Gast, Thorsten
- Re: AW: call Applet in servlet anoop
- Michael Weller
