Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

after upgrading to JBoss AS 7, suddenly the POST request of the first login page of our application results in a ViewExpiredException. Everything worked fine under JBoss AS 6.

Since the classloading is way nicer in AS 7, I put some dependencies from the "server/default/lib" folder into the Maven dependencies to deploy them with the application (WAR/EJB-JAR packed as EAR). I also added the directive to alter the classpath in MANIFEST.MF. Thus, every library is found. However, modules that are already shipped with JBoss are set to provided in the pom.xml. We also use the MyFaces Tomahawk library (pom.xml dependency is org.apache.myfaces.tomahawk.tomahawk20 (version 1.1.10). The tomahawk library is now shipped with the application instead of previously copied into some lib-folder of JBoss.

What has changed from AS6 to AS7, so that this ViewExpiredException occurs immediately?

Best regards, Sebastian

share|improve this question
1  
Sorry, I forgot my magic ball at home today... :) – Ondra Žižka Jul 22 '11 at 12:11
Now seriously - I am afraid that's not much information usable to identify your problem. Try to turn on debug logging of AS 7 and check what happens with sessions. – Ondra Žižka Jul 22 '11 at 12:12
Also, better place for such specific questions - or rather help request - may be AS 7 forum on jboss.org. – Ondra Žižka Jul 22 '11 at 12:12
Yeah, I was afraid that it's really too specific (or unspecfic) to be answered. I hoped anybody would have experienced this as well or knows something about any implementation changes from AS6 to AS7. For a start: Do you know where I could look what changes are made to my views? – Sebastian Wramba Jul 25 '11 at 6:51

1 Answer

up vote 1 down vote accepted

I haven't tested this but intend to see whether it fixes a similar problem I was hitting:

Cookie based sessions broken I found it from this another stack over flow post ViewExpiredException in Firefox and IE after migrating to Jboss 7.0 AS

share|improve this answer
Tested it this morning and has fixed the issue. – user695654 Aug 5 '11 at 9:08
Thank you so much! Didn't try it yet, but I'm sure this will be the missing piece. Suggested the other question as a duplicate of this one to keep things clean. – Sebastian Wramba Aug 8 '11 at 14:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.