Neil Crouch created PDFBOX-4314:
-----------------------------------

             Summary: IndexOutOfBoundsException when saving a document (at 
random)
                 Key: PDFBOX-4314
                 URL: https://issues.apache.org/jira/browse/PDFBOX-4314
             Project: PDFBox
          Issue Type: Bug
          Components: Writing
    Affects Versions: 2.0.5
            Reporter: Neil Crouch


When saving documents it randomly error's. We have 2 functions that call this, 
they are financial docs a privacy notice and a credit disclosure. They are 
generated then saved ans sent to customers 9/5/2018 from 11 customers 2 failed 
one failed at the first document the send failed at the second document. Code 
below.

var pnPages = page2.getDocumentCatalog().getAllPages();
 document.addPage((PDPage)pnPages.get(0));
 document.addPage((PDPage)pnPages.get(1));

string fileName = "Credit_Score_Disclosure_" + borrowerName + "_";
 string fullFileName = System.IO.Path.GetTempPath() + fileName + Guid.NewGuid() 
+ ".pdf";

document.save(fullFileName);
 document.close();

There is a try catch around the code which is how we collect the failure. We 
have the blank file it creates so it gets as far as the save then errors.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@pdfbox.apache.org
For additional commands, e-mail: dev-h...@pdfbox.apache.org

Reply via email to