* @see org.wymiwyg.rwcf.Handler#handle(org.wymiwyg.rwcf.Request,
* org.wymiwyg.rwcf.Response, org.wymiwyg.rwcf.HandlerChain)
*/
public void handle(Request request, Response response, HandlerChain chain)
throws HandlerException {
PipedWriter pipedOut = new PipedWriter();
try {
PipedReader in = new PipedReader(pipedOut);
response.setHeader(HeaderName.CONTENT_TYPE, "text/plain");
response.setBody(in);
final PrintWriter out = new PrintWriter(pipedOut);