There are some getting started tutorials for the iText library but I don’t think they really capture how fast and easy it is to get working PDF’s. Your standard servlet hello world example is 10 super simple lines. In your servlets doGet method: response.setContentType("application/pdf"); Document document = new Document(); try { PdfWriter.getInstance(document, response.getOutputStream()); document.open(); document.add(new Paragraph("Hello world")); document.close(); } catch (DocumentExce...