Re: scope of a bean

2000-12-08 Thread Craig R. McClanahan
Randy Layman wrote: Section 1.4.3 of the JSP 1.1 Final Spec (page 24). Its available at http://www.javasoft.com/products/jsp/download.html http://www.javasoft.com/products/jsp/download.html My own understanding: Session starts at the first time a user in a particular web browser instance

Re: scope of a bean

2000-12-06 Thread Pascal Mainini
Hi Peter try setting scope to session instead of request, so the bean should only be instantiated once a session and your project should work. Pascal Mainini [EMAIL PROTECTED] Web Developer Raptus AG/SA Burgweg 1 CH-2563 Ipsach Tel/Fax: +41 32 331 29 03 http://www.raptus.com Ursprüngliche

RE: scope of a bean

2000-12-06 Thread CPC Livelink Admin
Also, are you using a forward or redirect? A redirect makes a new request from the browser, a forward does it all internally (ie same request). -Original Message- From: Edson Carlos Ericksson Richter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 12:48 PM To: [EMAIL

Re: scope of a bean

2000-12-06 Thread Matt Goss
set the scope to session or application request scope is just while the page is loading Peter Choe wrote: i am trying to write an jsp where a bean is instaniated and has it data initialized on one jsp page. and then another page should be able to read the data from the bean. i have set

RE: scope of a bean

2000-12-06 Thread CPC Livelink Admin
? Regards, Paul -Original Message- From: Peter Choe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 01:51 PM To: [EMAIL PROTECTED] Subject: Re: scope of a bean so... if i use a redirect like an action in a form, it creates a new bean? CPC Livelink Admin wrote: Also, are you

Re: scope of a bean

2000-12-06 Thread Matt Goss
check out the servlet 2.2 specification. http://java.sun.com/products/servlet/download.html Mike Campbell wrote: Can someone point me to where these varying scopes are defined? Specifically, where does a "session" begin and end? Page and request I think I can figure out. Thanks. begin:vcard

RE: scope of a bean

2000-12-06 Thread Randy Layman
to be used by two separate instances if you're using cookie based sessions. Randy -Original Message- From: Mike Campbell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 3:07 PM To: '[EMAIL PROTECTED]' Subject: RE: scope of a bean Can someone point me to where the