IHttpResponseWriter httpResponseWriter = new HttpResponseWriter(httpResponse.getOutputStream());
httpResponseWriter.writeResponse(httpResponse);
}
catch (IOException ioex) {
LOGGER.warn("Colud not read from URL ' + " + url.getPath() + "'!", ioex);
throw new ResourceNotFoundException("File not found.");
}
}