Silvia Gaspar wrote:

>         I would like to know if I can pass structures or arrays as
> parameters...Because there is a lot of information to pass to.
> [...]

yes :-)  Java-http-Client(Applet/Application) can receive the following
from Servlet:
 - raw byte[] :
       response.getOutputStream().write(...)

 - java.io.Serializable/Externalizable(?) object :
       new ObjectOutputStream(response.getOutputStream()).writeObject(..)

 - or by the parameter in html :
       Servlet->html->applet


Bo
Sept.06, 2001

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to