public void execute(HttpServletRequest request, HttpServletResponse response, String uriPrefix) {
if(!this.reInitialize())
Tracing.logError("Some Failsaves in reInitialization needed !", CatalogExportModuleDispatcher.class);
try {
Tracing.logInfo("Catalog XML file requested by " + request.getRemoteAddr(), CatalogExportModuleDispatcher.class);
ServletUtil.serveResource(request, response, new FileMediaResource(CatalogExportModuleDispatcher.getFile(), true));
} catch (Exception e) {
Tracing.logError("Error requesting catalog export file: ", e, CatalogExportModuleDispatcher.class);
try {
ServletUtil.serveResource(request, response, new NotFoundMediaResource(request.getRequestURI()));
} catch (Exception e1) {