Forwarding a page with parameters

Don't use redirect = true in your struts-config.xml in this case - you'll lose your parameters. Instead, do this:

 ActionRedirect redirect = new ActionRedirect(mapping.findForward(SUCCESS_FORWARD));
        redirect.addParameter("id",request.getParameter("form_id"));
        redirect.addParameter("formId",formId);