Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
Please post the exception that was thrown. – Nick ODell May 24 '11 at 5:22
class javax.mail.SendFailedException:Send failure (javax.mail.MessagingException: Converting attachment data failed) – Vik May 24 '11 at 5:31
Have you considered using a different PDF generation tool like JasperReports? – kierans May 31 '11 at 5:43
I tried iText and found the same issue – Vik Jun 1 '11 at 4:04
1  
Have you find a solution? i find the some problem using itext generator. – user819690 Jun 28 '11 at 17:44
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.