I have been trying to figure out what is causing the exception below, and have yet to find out. I am using facelets with seam in a 4.0.3 server configuration. I found some related topics and saw someone mentioned that this had been talked about already a few times, but I could not find anything that resolved the issue.
It does not cause any visible (at the browser end) errors, but it consistently shows up in the log. Someone mentioned that it could be two phase listeners, if that is possible how could it happen, if my project only has it defined once in the faces config? This is my faces-config.xml: | <?xml version="1.0" encoding="UTF-8"?> | <!DOCTYPE faces-config | PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN" | "http://java.sun.com/dtd/web-facesconfig_1_0.dtd"> | <faces-config> | <application> | <view-handler> | com.sun.facelets.FaceletViewHandler | </view-handler> | <variable-resolver>org.jboss.seam.jsf.SeamVariableResolver</variable-resolver> | </application> | | <lifecycle> | <phase-listener>org.jboss.seam.jsf.SeamPhaseListener</phase-listener> | </lifecycle> | </faces-config> | Any help (or links regarding solutions) would be appreciated, Thanks. | java.lang.IllegalStateException: No active session context | at org.jboss.seam.Seam.isSessionInvalid(Unknown Source) | at org.jboss.seam.contexts.Lifecycle.endRequest(Unknown Source) | at org.jboss.seam.jsf.SeamPhaseListener.afterPhase(Unknown Source) | at org.apache.myfaces.lifecycle.LifecycleImpl.informPhaseListenersAfter(LifecycleImpl.java:458) | at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:307) | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:95) | at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81) | at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) | at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) | at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) | at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) | at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39) | at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159) | at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:407) | at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59) | at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) | at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) | at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) | at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) | at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) | at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744) | at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) | at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112) | at java.lang.Thread.run(Thread.java:595) | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3914857#3914857 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3914857 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
