Re: Random JSF error: no saved view state could be found

2013-10-01 Thread Romain Manni-Bucau
Hmm, can be interesting if you have enough time to try to reproduce it in a shareable (on github?) project. I'm sure it is something stupid we don't see ATM. *Romain Manni-Bucau* *Twitter: @rmannibucau https://twitter.com/rmannibucau* *Blog:

Re: Random JSF error: no saved view state could be found

2013-10-01 Thread Leonardo Uribe
Yes, absolutely. These kind of issues are really hard to reproduce, even more to debug. I'm still thinking it should be something else, but anyway if we can find what's going on and if the issue is related to myfaces it will be fixed in no time. On Oct 1, 2013 10:00 AM, Romain Manni-Bucau

Re: Random JSF error: no saved view state could be found

2013-10-01 Thread Howard W. Smith, Jr.
response inline/below... On Tue, Oct 1, 2013 at 1:13 AM, Romain Manni-Bucau rmannibu...@gmail.comwrote: About it works with mojarra so that's mf it is a big shortcut. It can be a bug in mojarra which make it working too (im not saying it, just you dont know and you cant conclude since you

Re: Random JSF error: no saved view state could be found

2013-10-01 Thread Howard W. Smith, Jr.
responses inline, below. On Tue, Oct 1, 2013 at 3:45 AM, Zmirc zmircmir...@gmail.com wrote: set JAVA_OPTS=%JAVA_OPTS% -Dorg.apache.catalina.session.** StandardSession.ACTIVITY_**CHECK=true set JAVA_OPTS=%JAVA_OPTS% -Dopenejb.session-context=http these two are definitely interesting, even

Re: Random JSF error: no saved view state could be found

2013-10-01 Thread Zmirc
Hi! I'm always open to comments and suggestions, but please try to provide a fix or a solution. That error happens both on CDI and ManagedBeanS. Excluding one and guessing that the other one might be the problem shows that you didn't actually get the bug. If you don't know the other Tomee

Re: Random JSF error: no saved view state could be found

2013-10-01 Thread Howard W. Smith, Jr.
forgot to mention that I usually add 'private' to managed bean members that I reference via @Inject, so in my app, I would do the following: @Inject private UserDataB udB; @Inject private ItemC itemC; @Inject private ImageC imageC; @Inject private UserC userC;