I need to store form field values from a fairly large form (75 fields) so
that later forms can be prepopulated. I have written a Bean that uses a two
dimensional array of Strings to hold field names and values.

This works well, but I am unsure how it will affect server performance when
accessed by a lot of users concurrently. Am I right in thinking that session
values are stored in the Server's memory?

Also, I know I could simply have written the field names & values directly
to the Session Object rather than writing the Bean. Is there much difference
apart from adding an unnecessary component? (I went for the Bean as I hadn't
used one before and wante to try it out.)

Thanks,

Paul

===========================================================================
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