RE: bean with request scope stays longer than I expected????

2006-06-19 Thread Surapuraju, Vamsi
Surapuraju 724 709 2391 -Original Message- From: Andrew Robinson [mailto:[EMAIL PROTECTED] Sent: Monday, June 19, 2006 2:30 PM To: MyFaces Discussion Subject: Re: bean with request scope stays longer than I expected does your view have "#{yourBean.allEmployees}" anywhere tha

Re: bean with request scope stays longer than I expected????

2006-06-19 Thread Andrew Robinson
ect: Re: bean with request scope stays longer than I expected Where is the code (and where is it called) that loads the employees list? On 6/19/06, Surapuraju, Vamsi <[EMAIL PROTECTED]> wrote: > > > HI, > below is the sample code > > public class DeptBackingB

RE: bean with request scope stays longer than I expected????

2006-06-19 Thread Surapuraju, Vamsi
-Original Message- From: Andrew Robinson [mailto:[EMAIL PROTECTED] Sent: Monday, June 19, 2006 1:22 PM To: MyFaces Discussion Subject: Re: bean with request scope stays longer than I expected Where is the code (and where is it called) that loads the employees list? On 6/19/06, Surapuraju, Vamsi

Re: bean with request scope stays longer than I expected????

2006-06-19 Thread Andrew Robinson
Where is the code (and where is it called) that loads the employees list? On 6/19/06, Surapuraju, Vamsi <[EMAIL PROTECTED]> wrote: HI, below is the sample code public class DeptBackingBean { List employees; public getAllEmplyees() { //code to get all emps

bean with request scope stays longer than I expected????

2006-06-19 Thread Surapuraju, Vamsi
HI,   below is the sample code       public class DeptBackingBean {     List employees;       public getAllEmplyees() {     //code to get all emps     }       public deleteEmployee() {     //some code to delete     }     }   On my jsf page I use getAllEmpl