I have requirement where i want to create pdf on the fly and mail it to a user on google app engine for java. i tried using pdfJet but it seems to have issue as app engine is throwing exceptions while trying to email the created pdf.
Anyone having a working sample using either pdfjet or some other library please advise..
with pdfJet my code looks like:
ByteArrayOutputStream out = new ByteArrayOutputStream();
PDF pdf;
try {
pdf = new PDF(out);
log.info("#1");
pdf.setTitle("Using TextColumn and Paragraph classes");
pdf.setSubject("Examples");
pdf.setAuthor("Innovatics Inc.");
log.info("#2");
Page page = new Page(pdf, Letter.PORTRAIT);
pdf.flush();
Multipart mp = new MimeMultipart();
MimeBodyPart htmlPart = new MimeBodyPart();
htmlPart.setFileName("whatever.pdf");
log.info("#7");
htmlPart.setContent(out.toByteArray(), "application/pdf");
mp.addBodyPart(htmlPart);
log.info("#8");
Properties props = new Properties();
Session session = Session.getDefaultInstance(props, null);
Message msg = new MimeMessage(session);
msg.setContent(mp);
msg.setFrom(new InternetAddress("vik.ceo@gmail.com"));
msg.addRecipient(Message.RecipientType.TO,
new InternetAddress("vik.ceo@gmail.com"));
msg.setSubject("testing PDF system");
Transport.send(msg);