Re: no parallel ajax requests anymore with JSF 2.1?

2012-04-23 Thread Werner Punz
Punzwerner.p...@gmail.com To: users@myfaces.apache.org Sent: Friday, 30 March 2012 6:50 PM Subject: Re: no parallel ajax requests anymore with JSF 2.1? Speaking of the spec, there is a reason why the requests are serialized, you simply cannot do it without loosing the viewstate over time for the long

Re: no parallel ajax requests anymore with JSF 2.1?

2012-04-23 Thread Mark Struberg
, April 23, 2012 11:18 AM Subject: Re: no parallel ajax requests anymore with JSF 2.1? Hi Hard to say whether it is a good or bad feature, since I was not part of the discussion when they went for the serialized model I only can guess why it is like that. As I stated before, not being

Re: no parallel ajax requests anymore with JSF 2.1?

2012-04-22 Thread Paul Rivera
.  Is there any way of configuring the jsf queue to allow this? Best Regards, Paul Rivera From: Werner Punz werner.p...@gmail.com To: users@myfaces.apache.org Sent: Friday, 30 March 2012 6:50 PM Subject: Re: no parallel ajax requests anymore with JSF 2.1? Speaking

Re: no parallel ajax requests anymore with JSF 2.1?

2012-04-22 Thread Scott O'Bryan
To: users@myfaces.apache.org Sent: Friday, 30 March 2012 6:50 PM Subject: Re: no parallel ajax requests anymore with JSF 2.1? Speaking of the spec, there is a reason why the requests are serialized, you simply cannot do it without loosing the viewstate over time for the long running request

Re: no parallel ajax requests anymore with JSF 2.1?

2012-03-30 Thread Michael Heinen
Hi Milo, are you really 100% sure that this is possible with JSF 2.1 and Richfaces 4.2? Did you verify that the requests are in parallel via logging or breakpoins? I tried a few combinations of the richfaces queues which were not working in parallel. Afaik the richfaces queues are on top of

Re: no parallel ajax requests anymore with JSF 2.1?

2012-03-30 Thread Werner Punz
Speaking of the spec, there is a reason why the requests are serialized, you simply cannot do it without loosing the viewstate over time for the long running request. The best bet to workaround this issue is to offload the long running request to something outside of JSF Servlet/Restful

no parallel ajax requests anymore with JSF 2.1?

2012-03-29 Thread Michael Heinen
Hi all, I'm still converting my application (mayfaces, tomahawk and richfaces) from JSF 1.2 to 2.1. Now I noticed that parallel ajax requests are not working at all! E.g. a long running request which calculates something and parallel poll requests to fetch status or partial results until the

Re: no parallel ajax requests anymore with JSF 2.1?

2012-03-29 Thread Milo van der Zee
Hello Michael, in RichFaces you could add multiple queues and they won't wait for eachother. MAG, Milo van der Zee On Thu, 2012-03-29 at 15:30 +0200, Michael Heinen wrote: Hi all, I'm still converting my application (mayfaces, tomahawk and richfaces) from JSF 1.2 to 2.1. Now I noticed