try {
final FOraySession session = setupSession(response);
final FOrayDocument document = setupSAXDocument(session,
inputSource);
final FOrayTarget target = setupTarget(document);
session.process();
sendContentToResponse(response, target);
} catch (final FOrayException ex) {
throw new ServletException(ex);
} catch (final IOException ex) {
throw new ServletException(ex);