// The response of the local URL becomes the reader that
// we export. Need temporary storage.
IOBean ioBean = new IOBean();
Writer writer = ioBean.getWriter();
ServletResponseWrapper responseWrapper =
new ServletResponseWrapperForWriter(
response, new PrintWriter(writer));
rd = pageContext.getServletContext().getRequestDispatcher(name);
try {
rd.include(request, responseWrapper);