vote up 0 vote down star

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. :|

flag

1 Answer

vote up 0 vote down

I suggest you use a freely available tool like VisualVM and profile your code. It can show you the problem quite fast.

link|flag
Please see the question. We HAVE used a profiler. It doesn't tell us anything useful. This is why I've asked the question here. – Jay Stevens Jun 22 at 18:10
A profiler will 'drill down' into driver.run(). Try a commercial one if VisualVM does not have what it takes. – Robert Munteanu Jun 22 at 18:15

Your Answer

Get an OpenID
or

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