try {
ConfigContext configCtx = AdminService.getAdminService().
getAdminContext().getAdminConfigContext();
RequestContext rCtx = new RequestContext(configCtx, request);
rCtx.setTimeDelta(_delta);
ByteProcessor bProcessor = new ByteProcessor(rCtx);
bProcessor.process();
response = bProcessor.getResult();
} catch (BufferOverflowException overflowEx) {
_logger.log(Level.FINE,
"Zipper reached max buffer size. Attempting a redirect.");
ConfigContext configCtx = AdminService.getAdminService().
getAdminContext().getAdminConfigContext();
RequestContext rCtx = new RequestContext(configCtx, request);
rCtx.setTimeDelta(_delta);
ZipProcessor zProcessor = new ZipProcessor(rCtx);
zProcessor.process();
response = zProcessor.getResult();