On 29.06.2007 11:57:37 Jason Timmins wrote: <snip/> > I'd like to use the native Java version of FOP but how can I make it run > really quickly for lots of small PDFs? <snip/>
You can deploy FOP as a WebService or as a servlet in an application server. I once did a proof-of-concept implementation where I deployed FOP in a WebService in a Jetty container. I started the JVM from inside a Delphi application in-process (using JNI) and then called the WebService using Delphi's WebService facilities. I did this to deploy FOP in a client application. Shouldn't be too hard to do something similar in a .NET environment. But you seem to be in a server environment, so it's easier to just install Tomcat as a Windows Service and deploy FOP in it. That should give you the response times you want. The servlet variant is probably easier to implement if the requirements allow it. Jeremias Maerki --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
