I'm not sure how to proceed with this one but I want to get MPXJ working to write MPX files with my PHP app.
The Javabridge documentation says that I should copy the application's jar file that I want to bridge into the /WEB-INF/lib folder of the javabridge package. So I extracted mpxj.jar from the MPXJ zip file, copied it into the compressed javabridge file-folder and imported it into Tomcat.
I can do:
echo java("java.lang.System")->getProperties();
so it appears javabridge is working ok
But when I try
$testvar = java("import net.sf.mpxj.MPXWriter");
It gives an error saying class not found. I suspect this might be a path issue? After "java" I'm a bit stumped!)
Can anyone help?