1 Reply Latest reply on Jan 21, 2009 4:59 PM by jguglielmin

    Debug page popups up after manually visiting it

    edykory

      Hi there!
      I have noticed this pretty strange (for me) behavior in Seam 2.1.1.GA. I go to this page test.seam which has only a form with user/password. It normally works as expected, but if, before submitting the form, I open a new browser tab with http://localhost:8080/seamgroovy/debug.seam and then I go back to tab with the form and try to submit it I get just a debug page (no exceptions thrown). If, on the other hand I open test.seam, then I open the debug page in the same tab and then again test.seam, everything goes ok.


      Seam 2.1.1GA with icefaces 1.7.2 on JBoss 5.0.0.GA


      Cheers!

        • 1. Re: Debug page popups up after manually visiting it
          jguglielmin

          Not too sure I know exactly what you are trying to do, but another tab in the same browser (for IE and FF anyways) are still in the same session, so if you want to open multiple tabs of the same view you would need the following context param in your web.xml.


           <context-param>
                  <param-name>com.icesoft.faces.concurrentDOMViews</param-name>
                  <param-value>true</param-value>
              </context-param>



          If you have the view in Session scope, you would still have the same view in both tabs as well.  Since 1.7.2.SP1 is currently recommended, I will assume this is the version you are using.  Advice would be to use jboss-4.2.3.GA for a while longer as well.  ICEfaces-1.8 is targeted to support jboss-5.0.0.GA fully.