Re: MyFaces and multithreading problem

2006-10-26 Thread Dennis Byrne
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: Thursday, October 26, 2006 10:24 AM >To: 'MyFaces Discussion' >Subject: Re: MyFaces and multithreading problem > >I'm not entirely sure about the threading model that MyFaces uses, however >I have noticed that callba

Re: MyFaces and multithreading problem

2006-10-26 Thread dmurley
I'm not entirely sure about the threading model that MyFaces uses, however I have noticed that callbacks from the extention filter may be on different threads. Daniel > By definition, one request is only processed by one execution thread. I > don't thins myfaces starts a new thread in order to do

Re: MyFaces and multithreading problem

2006-10-26 Thread Dennis Byrne
- >From: Irek Matysiewicz [mailto:[EMAIL PROTECTED] >Sent: Thursday, October 26, 2006 09:24 AM >To: users@myfaces.apache.org >Subject: MyFaces and multithreading problem > >We have a managed bean with session scope. It's used in one .jsp file. Usually >only one thread uses this bean

Re: MyFaces and multithreading problem

2006-10-26 Thread Ricardo Tercero Lozano
By definition, one request is only processed by one execution thread. I don't thins myfaces starts a new thread in order to do things (but in fact, I cannot confirm it). What I've found some times is a double submit issue (of course nothing to do with myfaces). Check that you are not submit the sam

MyFaces and multithreading problem

2006-10-26 Thread Irek Matysiewicz
We have a managed bean with session scope. It's used in one .jsp file. Usually only one thread uses this bean, and everything works ok. But today we discovered, that two threads access the same getter method of the bean at the same time, and this leads to serious problems. Both getter invocation