Change By: Alexander Papadakis (11/Apr/14 4:30 AM)
Workaround Description:     private void forwardHosted(Request request, Response response) throws ServletException, IOException {
        logger.trace("SAML 1.1::Proceeding to IDP index page");
        RequestDispatcher dispatch = getContext().getServletContext()
                .getRequestDispatcher(this.idpConfiguration.getHostedURI());

        recycle(response);
        response.reset();

        try {
            dispatch.forward(request, response);
        } catch (ClassCastException cce) {
            /
/ *  JBAS5.1 and 6 quirkiness */

            dispatch.forward(request.getRequest(), response);
        }
    }
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira