public void doForward()

in tiles-request-portlet/src/main/java/org/apache/tiles/request/portlet/PortletRequest.java [282:303]


    public void doForward(String path) throws IOException {
        if (responseDelegate.isResponseCommitted()) {
            doInclude(path);
            return;
        }

        try {
            PortletRequestDispatcher rd = getPortletContext()
                    .getRequestDispatcher(path);

            if (rd == null) {
                throw new IOException(
                        "No portlet request dispatcher returned for path '"
                                + path + "'");
            }

            rd.forward(request, response);
        } catch (PortletException e) {
            throw new IOException("PortletException while including path '"
                    + path + "'.", e);
        }
    }