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

scope of a bean

2000-12-06 Thread Peter Choe
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 the scope of the bean to request, but when it goes to the other page, i noticed that it is creating a new bean

Re: scope of a bean

2000-12-06 Thread Pascal Mainini
Nachricht Am 12/6/00, 4:52:47 PM, schrieb Peter Choe [EMAIL PROTECTED] zum Thema scope of a bean: 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 the scope

RE: scope of a bean

2000-12-06 Thread CPC Livelink Admin
PROTECTED] Subject: RES: scope of a bean Hi! Is not your bean in different contexts? I`ve this problem in the past, when I used two contexts (and, of course, one JSP page in each context). Edson Richter - Mensagem original - De: Peter Choe [SMTP:[EMAIL PROTECTED]] Enviada em

Re: scope of a bean

2000-12-06 Thread Matt Goss
the scope of the bean to request, but when it goes to the other page, i noticed that it is creating a new bean rather using the bean that was instaniated from the previous page. am i misunderstanding the scope of the bean? how can i get bean to be recognized by two jsp files without using

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