NFOP performance problem

Posted by Jay Stevens on Stack Overflow See other posts from Stack Overflow or by Jay Stevens
Published on 2009-06-22T18:07:19Z Indexed on 2010/04/30 19:07 UTC
Read the original article Hit count: 375

Filed under:
|
|

We're using NFOP in a project (C#, ASP.NET 2.0) to ultimately return PDF files to the user.

The process currently goes like this:

  1. Stored Procedure -> XML
  2. XML -> XSLT -> XSL-FO
  3. XSL-FO -> NFOP -> PDF

This works fine, the PDF is generated BEAUTIFULLY. The problem is that it takes 300+ seconds to do it. The ANTS profiler indicates that the problem is sitting in the

driver.run()

method inside of NFOP. It's not like this is a gargantuan amount of data, the size of the xsl-fo source going into the nfop driver object is ~980k. What's the most likely source and resolution of this problem?

ANY hints or tips or answers are most appreciated, we were supposed to head to VA scan at 11 am. :|

© Stack Overflow or respective owner

Related posts about xsl-fo

Related posts about fop