2 Replies Latest reply on Aug 28, 2013 6:23 AM by neelamsingh123

    Issue on IE with JBoss upgrade

    neelamsingh123

      Hi,

      I am new to JBoss. I recently moved my application from JBoss 6.1.0 FInal to 6.1.0 EAP. The application is on JBOSS and uses Shiro authentication. The application has been deployed successfully and the login screen comes up as expected. This issue I am facing is that on Internet Explorer, once I login the welcome page does not come up. The screen remains blank. This works perfectly well on Mozilla or Chrome. Does anyone have any ideas?

      Thanks

        • 1. Re: Issue on IE with JBoss upgrade
          mr.bee

          Hi,

          I am also facing the same issue.

           

          regards,

          Nabeel

          • 2. Re: Issue on IE with JBoss upgrade
            neelamsingh123

            I managed to resolve the issue. After login in my application, the welcome.xhtml page was being invoked, the purpose of which was to re-direct the controller to welcome page as:

             

            <meta http-equiv="refresh" content="0;url=user/DeviceStatusRequest.jsf"/>

            This was the only content present in welcome.xhtml.

             

            Firefox and Chrome were re-directing as expected:

             

            17:50:20,604 FINE  [javax.enterprise.resource.webcontainer.jsf.lifecycle] (http-/0.0.0.0:8080-1) About to render view /welcome.xhtml
            17:50:20,605 FINE  [javax.enterprise.resource.webcontainer.jsf.lifecycle] (http-/0.0.0.0:8080-1) Exiting RenderResponsePhase
            17:50:20,606 FINE  [javax.enterprise.resource.webcontainer.jsf.timing] (http-/0.0.0.0:8080-1)  [TIMING] - [2ms] : Execution time for phase (including any

            PhaseListeners) -> RENDER_RESPONSE 6
            17:50:20,616 FINE  [javax.enterprise.resource.webcontainer.jsf.application] (http-/0.0.0.0:8080-1) servletPath /user/DeviceStatusRequest.jsf

             

            However, IE was trying to create a facelet for the xhtml file and failing:

             

            17:46:05,505 FINE  [javax.enterprise.resource.webcontainer.jsf.lifecycle] (http-/0.0.0.0:8080-1) About to render view /welcome.xhtml
            17:46:05,505 FINE  [javax.enterprise.resource.webcontainer.jsf.facelets.factory] (http-/0.0.0.0:8080-1) Resource-Url from external context: jndi:/default-

            host/LADWP-0.0.1/welcome.xhtml
            17:46:05,505 FINE  [javax.enterprise.resource.webcontainer.jsf.facelets.factory] (http-/0.0.0.0:8080-1) Creating Facelet for: jndi:/default-host/LADWP-

            0.0.1/welcome.xhtml

             

            Adding the necessary xml directive and jsf tags to the xhtml file resolved the issue.