vote up 1 vote down star
1

Hi, Has anyone experience or had problems implementing a JNI wrapper for apache FOP?

Bonus points: Any other options for processing xsl-fo from C++?

flag

50% accept rate

3 Answers

vote up 0 vote down

well, the obious way is to

#include <cstdio>
#include <string>

int runFop(const char* params) {

     // put the real path here
     const char* FOP_CMD = "fop.bat";

     std::string cmd(FOP_CMD);
     cmd += " ";
     cmd += params;

     return system(cmd.c_str());
}
link|flag
Nice, but hardly answer my plroblem – eLAN Oct 18 at 12:43
why not? do you want the fop created in-memory-only? – akira Oct 20 at 13:52
vote up 0 vote down

I would be interested in this answer as well, because I was looking for the same thing a couple years ago, and eventually just used the Java FOP which was not ideal for our case since we were using it from a C++ application.

link|flag
vote up 0 vote down

I do that for C# not for C. I generate proxies to wrap fop classes, so it looks like original fop example, but it's not Java. The tool I use is jni4net I created.

For you Jace would be good choice I think.

link|flag

Your Answer

Get an OpenID
or

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