logger.warn("it is not in a rose request: '"
+ ((HttpServletRequest) pageContext.getRequest()).getRequestURI() + "'");
}
return SKIP_BODY;
}
PipeImpl pipe = (PipeImpl) PortalUtils.getPipe(inv);
if (pipe == null) {
if (logger.isWarnEnabled()) {
logger.warn("there is not pipe for this jsp: '"
+ ((HttpServletRequest) pageContext.getRequest()).getRequestURI() + "'");
}
return SKIP_BODY;
}
try {
if (logger.isDebugEnabled()) {
logger.debug("writing " + pipe + "...");
}
pipe.write(pageContext.getOut());
if (logger.isDebugEnabled()) {
logger.debug("writing " + pipe + "... done");
}
} catch (IOException e) {