1 2 Previous Next 23 Replies Latest reply on Oct 9, 2009 8:34 PM by gimpy21

    Seam errors: "missing conversation entry" and "Illegal navigation"

    gimpy21

      I am encountering these two errors regularly whenever I return from a nested conversation (chances are about 1 in 10), but I cannot put my finger on the cause. The error will either be missing conversation entry with an exception chain printed or a simple Illegal navigation with nothing else.


      My setup is fairly simple:



      1. start a conversation to search for an operator.

      2. click to edit returned operator - starts a nested conversation that's linked to a pageflow (w/FlushMode.MANUAL)

      3. OPTIONALLY make a small change (page only has name to edit) to the operator so there's something to flush

      4. click save button which has the pageflow call save() (performs session.flush()) and ends the conversation

      5. watch for error to happen when being sent back to the search page



      There are several things to note:



      1. commenting out session.flush() will make the error disappear (along with my possible changes obviously)

      2. As I was cutting down the size of my operator object to send in as a test case, I could not duplicate the error which leads me to ...

      3. Conversation.flush() has a big TODO




      void flush()
         {
            //we need to flush this stuff asynchronously to handle 
            //nested and temporary conversations which have no
            //ConversationEntry
      
            Manager manager = Manager.instance();
            
            if ( !manager.isLongRunningConversation() )
            {
               throw new IllegalStateException("only long-running conversation outcomes are switchable");
            }
            
            ConversationEntry entry = manager.getCurrentConversationEntry();
            if (entry==null)
            {
               throw new IllegalStateException("missing conversation entry"); //should never happen
            }
            if (viewId!=null)
            {
               entry.setViewId(viewId);
            }
            if (description!=null)
            {
               entry.setDescription(description);
            }
            if (timeout!=null)
            {
               entry.setTimeout(timeout);
            }
            
            description = null;
            viewId = null;
            timeout = null;
         }
      


      Exception thrown (Seam 2.0.0.GA):



      15:01:20,783 ERROR [SeamPhaseListener] uncaught exception
      java.lang.IllegalStateException: missing conversation entry
           at org.jboss.seam.core.Conversation.flush(Conversation.java:124)
           at org.jboss.seam.core.Manager.flushConversationMetadata(Manager.java:882)
           at org.jboss.seam.faces.FacesManager.prepareBackswitch(FacesManager.java:278)
           at org.jboss.seam.jsf.SeamPhaseListener.beforeRenderResponse(SeamPhaseListener.java:470)
           at org.jboss.seam.jsf.SeamPhaseListener.beforeServletPhase(SeamPhaseListener.java:146)
           at org.jboss.seam.jsf.SeamPhaseListener.beforePhase(SeamPhaseListener.java:116)
           at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:222)
           at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
           at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
           at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83)
           at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:85)
           at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
           at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64)
           at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
           at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:44)
           at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
           at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:154)
           at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:260)
           at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:366)
           at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:493)
           at org.jboss.seam.web.Ajax4jsfFilter.doFilter(Ajax4jsfFilter.java:60)
           at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
           at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:58)
           at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69)
           at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
           at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
           at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
           at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
           at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
           at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
           at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
           at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
           at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
           at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
           at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
           at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
           at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
           at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
           at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
           at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
           at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
           at java.lang.Thread.run(Thread.java:595)
      


      So the summary could be



      1. only happens when I utilize session.flush()

      2. harder to come by with a not-tiny entity

      3. apparently at random

      4. occurs around TODO: do this asynchronously and this should never happen comments



      Tested with



      1. Hibernate 3.2.4.sp1

      2. Seam 2.0.0.GA, 2.0.1.GA, 2.1.0.A1

      3. JBPM 3.2.1



      As always, thanks for taking the time to help.

        • 1. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
          gimpy21

          I managed to solve this one. The test data we already had in the database contained a few fields with invalid data. I'm assuming that Hibernate was dying in an area that it was never supposed to with its specific error being swallowed yet still killing the conversation switching (which would lead to the this should never happen error). It's quite odd that I could change the same operator over and over, yet it appeared that I had a 1 in 10 chance the error would occur. So yea, validate your data!

          • 2. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
            scphantm.scphantm.gmail.com

            im having the same problem.  what makes it weird is it only happens on two certain pages in the system.  the really strange thing is my app isn't hooked to a database or anything.  it saves the data to the conversation and at the end it formats it into an xml doc and sends it to a remote system.


            checking the log file, it seems that it doesn't actually submit the form, it simply more or less hits refresh.

            • 3. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
              scphantm.scphantm.gmail.com

              it only happens in firefox.  chrome works perfectly every time, and IE, well it just blows so there are other issues

              • 4. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                scphantm.scphantm.gmail.com

                anyone have ANY ideas on this, im using the following


                seam 2.2.0
                jboss 5.1
                jdk 1.6


                this bug is most likely going to get me fired because the product was supposed to be installed 2 weeks ago but we can't install it with this bug.  it only happens on two pages in the whole system.  ive done everything from strip those two pages to just a button that says next, same deal, about 30% of the time it refreshes and gives me an illegal navigation error.  ive renamed the pages thinking maybe the fact the number 2 was in the filename that may have something to do with it.  nada.  ive even tried to switch over to chrome as our kiosk system but i can't do that because chrome is so new there is no way to remove the print dialog box, so im stuck with firefox because we can configure it in kiosk mode


                it ONLY happens in firefox and the log file indicates that no form data was submitted, just as if someone simply hit the refresh button on the browser.


                please guys, im begging you for ideas here, ive been working on this one for a month now and have made no progress.

                • 5. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                  scphantm.scphantm.gmail.com

                  ok, i found another logging level in jboss and got some more logs to look at.  here is the log generated when i click the button and it simply refreshes.



                  REQUEST URI       =/_master/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:38,597 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)           authType=null
                  2009-09-24 19:06:38,597 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)  characterEncoding=null
                  2009-09-24 19:06:38,598 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)      contentLength=230
                  2009-09-24 19:06:38,598 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)        contentType=application/x-www-form-urlencoded
                  2009-09-24 19:06:38,598 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)        contextPath=/_master
                  2009-09-24 19:06:38,598 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             cookie=JSESSIONID=C270C55FAFD4E860DFB935A3375854E8
                  2009-09-24 19:06:38,598 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=host=localhost:8080
                  2009-09-24 19:06:38,598 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=user-agent=Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=accept=text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=accept-language=en-us,en;q=0.5
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=accept-encoding=gzip,deflate
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=accept-charset=ISO-8859-1,utf-8;q=0.7,*;q=0.7
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=keep-alive=300
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=connection=keep-alive
                  2009-09-24 19:06:38,600 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=referer=http://localhost:8080/_master/eca/citi/CoApp.seam
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=cookie=JSESSIONID=C270C55FAFD4E860DFB935A3375854E8
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=content-type=application/x-www-form-urlencoded
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             header=content-length=230
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             locale=en_US
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             method=POST
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15=j_id15
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:form_control=next
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:c_employer=NONE
                  2009-09-24 19:06:38,601 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:c_position=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:c_elng_yr=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:c_elng_mon=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:phoneTemp=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:c_work_ph=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:c_income=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=j_id15:next=
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)          parameter=javax.faces.ViewState=j_id26
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)           pathInfo=null
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)           protocol=HTTP/1.1
                  2009-09-24 19:06:38,602 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)        queryString=null
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)         remoteAddr=127.0.0.1
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)         remoteHost=127.0.0.1
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)         remoteUser=null
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2) requestedSessionId=C270C55FAFD4E860DFB935A3375854E8
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)             scheme=http
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)         serverName=localhost
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)         serverPort=8080
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)        servletPath=/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2)           isSecure=false
                  2009-09-24 19:06:38,603 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-2) ---------------------------------------------------------------
                  2009-09-24 19:06:38,604 DEBUG [org.ajax4jsf.webapp.BaseFilter] (http-localhost%2F127.0.0.1-8080-2) Filter start request processing at 9/24/09 7:06 PM  for uri: /_master/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:38,604 DEBUG [org.ajax4jsf.webapp.BaseFilter] (http-localhost%2F127.0.0.1-8080-2) Incoming request has Content-Type header without character encoding: application/x-www-form-urlencoded
                  2009-09-24 19:06:38,604 DEBUG [org.ajax4jsf.webapp.BaseFilter] (http-localhost%2F127.0.0.1-8080-2) Filter request output to XML
                  2009-09-24 19:06:38,604 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] (http-localhost%2F127.0.0.1-8080-2) XML filter service start processing request
                  2009-09-24 19:06:38,606 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-2) Process before phase RESTORE_VIEW 1
                  2009-09-24 19:06:38,606 DEBUG [org.ajax4jsf.application.AjaxStateHolder] (http-localhost%2F127.0.0.1-8080-2) Request for a view states holder instance
                  2009-09-24 19:06:38,606 DEBUG [org.ajax4jsf.component.AjaxRegionBrige] (http-localhost%2F127.0.0.1-8080-2) Restore State of UIAjaxComponent with Id _viewRoot
                  2009-09-24 19:06:38,607 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-2) Process after phase RESTORE_VIEW 1
                  2009-09-24 19:06:38,609 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-2) Process before phase RENDER_RESPONSE 6
                  2009-09-24 19:06:38,609 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-2) PhaseListener enter Before RenderView Phase with ViewId /eca/citi/CoAppTwo.xhtml and RenderKitId HTML_BASIC
                  2009-09-24 19:06:38,609 DEBUG [facelets.viewhandler] (http-localhost%2F127.0.0.1-8080-2) Rendering View: /eca/citi/CoAppTwo.xhtml
                  2009-09-24 19:06:38,609 DEBUG [facelets.viewhandler] (http-localhost%2F127.0.0.1-8080-2) ActionId -> ViewId: /eca/citi/CoAppTwo.xhtml -> /eca/citi/CoAppTwo.xhtml
                  2009-09-24 19:06:38,610 DEBUG [facelets.viewhandler] (http-localhost%2F127.0.0.1-8080-2) Building View: /eca/citi/CoAppTwo.xhtml



                  as you can see, it is actually posting the information back to the server.  now, what comes back down to the browser is the exact same page and all the fields are empty.  so i type the word NONE into the employer field and click the exact same next button and it works, now here is the log for that




                  REQUEST URI       =/_master/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)           authType=null
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)  characterEncoding=null
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)      contentLength=230
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)        contentType=application/x-www-form-urlencoded
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)        contextPath=/_master
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             cookie=JSESSIONID=C270C55FAFD4E860DFB935A3375854E8
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=host=localhost:8080
                  2009-09-24 19:06:42,742 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=user-agent=Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)
                  2009-09-24 19:06:42,744 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=accept=text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=accept-language=en-us,en;q=0.5
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=accept-encoding=gzip,deflate
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=accept-charset=ISO-8859-1,utf-8;q=0.7,*;q=0.7
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=keep-alive=300
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=connection=keep-alive
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=referer=http://localhost:8080/_master/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=cookie=JSESSIONID=C270C55FAFD4E860DFB935A3375854E8
                  2009-09-24 19:06:42,745 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=content-type=application/x-www-form-urlencoded
                  2009-09-24 19:06:42,746 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             header=content-length=230
                  2009-09-24 19:06:42,746 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             locale=en_US
                  2009-09-24 19:06:42,746 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             method=POST
                  2009-09-24 19:06:42,746 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15=j_id15
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:form_control=next
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:c_employer=NONE
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:c_position=
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:c_elng_yr=
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:c_elng_mon=
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:phoneTemp=
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:c_work_ph=
                  2009-09-24 19:06:42,748 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:c_income=
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=j_id15:next=
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)          parameter=javax.faces.ViewState=j_id28
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)           pathInfo=null
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)           protocol=HTTP/1.1
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)        queryString=null
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)         remoteAddr=127.0.0.1
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)         remoteHost=127.0.0.1
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)         remoteUser=null
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1) requestedSessionId=C270C55FAFD4E860DFB935A3375854E8
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)             scheme=http
                  2009-09-24 19:06:42,749 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)         serverName=localhost
                  2009-09-24 19:06:42,750 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)         serverPort=8080
                  2009-09-24 19:06:42,750 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)        servletPath=/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:42,750 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1)           isSecure=false
                  2009-09-24 19:06:42,750 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-1) ---------------------------------------------------------------
                  2009-09-24 19:06:42,750 DEBUG [org.ajax4jsf.webapp.BaseFilter] (http-localhost%2F127.0.0.1-8080-1) Filter start request processing at 9/24/09 7:06 PM  for uri: /_master/eca/citi/CoAppTwo.seam
                  2009-09-24 19:06:42,750 DEBUG [org.ajax4jsf.webapp.BaseFilter] (http-localhost%2F127.0.0.1-8080-1) Incoming request has Content-Type header without character encoding: application/x-www-form-urlencoded
                  2009-09-24 19:06:42,751 DEBUG [org.ajax4jsf.webapp.BaseFilter] (http-localhost%2F127.0.0.1-8080-1) Filter request output to XML
                  2009-09-24 19:06:42,751 DEBUG [org.ajax4jsf.webapp.BaseXMLFilter] (http-localhost%2F127.0.0.1-8080-1) XML filter service start processing request
                  2009-09-24 19:06:42,752 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-1) Process before phase RESTORE_VIEW 1
                  2009-09-24 19:06:42,752 DEBUG [org.ajax4jsf.application.AjaxStateHolder] (http-localhost%2F127.0.0.1-8080-1) Request for a view states holder instance
                  2009-09-24 19:06:42,753 DEBUG [org.ajax4jsf.component.AjaxRegionBrige] (http-localhost%2F127.0.0.1-8080-1) Restore State of UIAjaxComponent with Id _viewRoot
                  2009-09-24 19:06:42,753 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-1) Process after phase RESTORE_VIEW 1
                  2009-09-24 19:06:42,754 DEBUG [org.ajax4jsf.event.AjaxPhaseListener] (http-localhost%2F127.0.0.1-8080-1) Process before phase APPLY_REQUEST_VALUES 2
                  2009-09-24 19:06:42,754 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component _viewRoot with class org.ajax4jsf.component.AjaxViewRoot
                  2009-09-24 19:06:42,755 DEBUG [org.ajax4jsf.renderkit.AjaxContainerRenderer] (http-localhost%2F127.0.0.1-8080-1) Decode ajax request status for _viewRoot
                  2009-09-24 19:06:42,755 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component j_id2 with class org.ajax4jsf.component.html.HtmlLoadScript
                  2009-09-24 19:06:42,755 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component j_id4 with class org.ajax4jsf.component.html.HtmlLoadStyle
                  2009-09-24 19:06:42,756 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) client idj_id15:c_employer
                  2009-09-24 19:06:42,756 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) returned value: NONE
                  2009-09-24 19:06:42,756 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) client idj_id15:c_position
                  2009-09-24 19:06:42,756 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) returned value: 
                  2009-09-24 19:06:42,756 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) client idj_id15:c_elng_yr
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) returned value: 
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) client idj_id15:c_elng_mon
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) returned value: 
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) client idj_id15:phoneTemp
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) returned value: 
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) client idj_id15:c_income
                  2009-09-24 19:06:42,757 DEBUG [com.show.pro.components.UIShowroomInput] (http-localhost%2F127.0.0.1-8080-1) returned value: 
                  2009-09-24 19:06:42,757 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component j_id15:j_id57 with class org.ajax4jsf.component.html.HtmlLoadStyle
                  2009-09-24 19:06:42,757 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component j_id15:j_id56 with class org.richfaces.component.html.HtmlPanel
                  2009-09-24 19:06:42,758 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component j_id15:j_id54 with class org.richfaces.component.html.HtmlPanel
                  2009-09-24 19:06:42,758 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component addToErrorForm with class org.ajax4jsf.component.html.AjaxForm
                  2009-09-24 19:06:42,758 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component addToError with class org.ajax4jsf.component.html.HtmlAjaxOutputPanel
                  2009-09-24 19:06:42,758 DEBUG [org.ajax4jsf.renderkit.RendererBase] (http-localhost%2F127.0.0.1-8080-1) Start decoding of component errorPanel with class org.richfaces.component.html.HtmlModalPanel



                  now, they are identical all the way down to the line


                  Process before phase RESTORE_VIEW 1



                  but in the second one SEAM started parsing the fields into the components and processed normally.  now why in the world would it do this and why in the world would it only do it on these pages and why in the world would it only happen about 30% of the time? 

                  • 6. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                    gimpy21

                    Feel free to mail me the smallest test case to richard.ogin@gmail.com and mention which version of FF you're using.

                    • 7. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                      scphantm.scphantm.gmail.com

                      man, this app is so complicated i wouldn't know where to begin to pull it out and have it fail for ya. 


                      but, when i do the app from chrome, this is whats sent back to the server:


                      REQUEST URI       =/_master/eca/citi/PrimaryAppTwo.seam
                      2009-09-25 11:06:09,496 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)           authType=null
                      2009-09-25 11:06:09,496 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)  characterEncoding=null
                      2009-09-25 11:06:09,496 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)      contentLength=307
                      2009-09-25 11:06:09,496 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)        contentType=application/x-www-form-urlencoded
                      2009-09-25 11:06:09,496 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)        contextPath=/_master
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             cookie=JSESSIONID=D28293B58BA2BFA60C8C2EFD1E8ED237
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             cookie=machine-id=68.218.236.244%3A1250005049195
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             cookie=wds_settings=
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             cookie=proboat=pm%3D1%2Cz%3Dfw%2Czin%3Dl6
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=host=localhost:8080
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=connection=keep-alive
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=user-agent=Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.21 Safari/532.0
                      2009-09-25 11:06:09,497 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=referer=http://localhost:8080/_master/eca/citi/PrimaryApp.seam
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=content-length=307
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=cache-control=max-age=0
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=origin=http://localhost:8080
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=content-type=application/x-www-form-urlencoded
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=accept=application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=accept-encoding=gzip,deflate
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=cookie=JSESSIONID=D28293B58BA2BFA60C8C2EFD1E8ED237; machine-id=68.218.236.244%3A1250005049195; wds_settings,proboat=pm%3D1%2Cz%3Dfw%2Czin%3Dl6
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=accept-language=en-US,en;q=0.8
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             header=accept-charset=ISO-8859-1,utf-8;q=0.7,*;q=0.3
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             locale=en_US
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             method=POST
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18=j_id18
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:form_control=next
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_employer=NONE
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_position=
                      2009-09-25 11:06:09,498 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_elng_yr=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_elng_mon=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:phoneTemp=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_work_ph=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_income=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_otherIncome=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_otherIncomeSrc=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:p_estPurchaseAmt=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=j_id18:next=
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)          parameter=javax.faces.ViewState=j_id9
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)           pathInfo=null
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)           protocol=HTTP/1.1
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)        queryString=null
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)         remoteAddr=127.0.0.1
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)         remoteHost=127.0.0.1
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)         remoteUser=null
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3) requestedSessionId=D28293B58BA2BFA60C8C2EFD1E8ED237
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)             scheme=http
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)         serverName=localhost
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)         serverPort=8080
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)        servletPath=/eca/citi/PrimaryAppTwo.seam
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3)           isSecure=false
                      2009-09-25 11:06:09,499 INFO  [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost]] (http-localhost%2F127.0.0.1-8080-3) ---------------------------------------------------------------



                      now why would chrome have 3 more cookies than firefox?

                      • 8. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                        scphantm.scphantm.gmail.com

                        i deleted the cookies out of chrome and tried again, they were not recreated so they may have been from another app im working on.

                        • 9. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                          gimpy21

                          Does it fail with both versions (3.0.x and 3.5.x) of Firefox?

                          • 10. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                            scphantm.scphantm.gmail.com

                            yes, same thing in both versions

                            • 11. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                              gimpy21

                              It's a very odd corner case that needs more eyes and for which we'll need a minimal test case. You mentioned you had the page down to a button and a few input fields. Continue with that and strip any ajax functionality, change any db data to static lists, remove any reliance on pages.xml and jPDL, etc. then post it for us.

                              • 12. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                                scphantm.scphantm.gmail.com

                                man i tried to strip out to a single page but it just can't be done.  it relys on custom jsf components, a very intricate jbpm pageflow, about 4 included template files, this thing has been in development for 6 months now and its huge.  is there a way i can turn on say trace level logging for a particular set of classes and try to figure out why it won't parse the form sometime but will others?

                                • 13. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                                  gimpy21
                                  You can edit jboss server's <install_root>/server/default/conf/jboss-log4j.xml. It contains many examples (it does at least for version 4.2.2) on how to change the verbosity level of a specific class/package.
                                  • 14. Re: Seam errors: "missing conversation entry" and "Illegal navigation"
                                    scphantm.scphantm.gmail.com

                                    yea, ive used that before, but which package should i kick up?  if i do all im going to have a 100 meg log file just starting jboss.

                                    1 2 Previous Next