I'm deploying a web application into JBoss EAP6 and Glassfish 4, every thing works as expected till the point where I add deltaskpike jars to the projet.
Once deltaskpike enabled, the following code inside a servlet:
request.getServletContext().getRequestDispatcher("/faces/page.xhtml").forward(request, response);
will send a redirect response (HTTP: 302) to the browser instead of forwarding on the server side. if I remove deltaskpike jars from the application the dispatcher forward works as expected.
If I forward to any thing other than FacesServlet it works as expected.
Is Deltaspike modifying the default behaviour of RequestDispatcher ?