private String MOVIES_PDF = "movies_output.pdf";
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
/* Affichage de la page d'inscription */
pdfCreator pdfc = new pdfCreator();
String inPath = this.getServletContext().getRealPath(IN_PATH);
String outPath = this.getServletContext().getRealPath(OUT_PATH);
pdfc.createMoviesPdf(inPath, outPath);
DownloadHelper dh = new DownloadHelper();
dh.downloadLink(request, response, outPath, MOVIES_PDF);
//this.getServletContext().getRequestDispatcher(VUE).
//.forward(request, response);