Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While binding a pdf file using Aspose i got a heap size error.here is the code the pdf file is 110MB, and consist of 60000 pages

PdfExtractor extractor = new PdfExtractor();
// bind input pDF file
extractor.bindPdf(this.filePath);

I increased the java heap size like follow -Xms512M -Xmx1024M but the error persist. Any suggestions?

share|improve this question
add comment

1 Answer

up vote 1 down vote accepted

If the error comes on bindPdf() method, then there is no way anyone could figure out the issue. Just to make sure that it is heap related issue, try to increase the heap size further and see if it gets loaded with more memory.

Please post in Aspose.Pdf forums and report this problem.

I am a Developer Evangelist at Aspose.

share|improve this answer
    
Ok thanks Saqib, i post it in Aspose.Pdf and here is the link aspose.com/community/forums/471178/… –  user2318955 Jun 4 '13 at 5:45
    
I will ask the support team to follow up, thanks. –  Saqib Razzaq Jun 4 '13 at 10:41
add comment

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.