Embedding Xalan-C++ in my PHP Application

Julin

New Member
Is it possible to embedd Xalan-C++ XML Processor inside my PHP Application. Basically, my objective is below:
  • Keep Presentation & Data Logic separate
  • Keep pre-compiled (Ready to use) Xalan-C++ files in my PHP Application.
  • Whenever a XSLT Transformation is required, calling Xalan Processing using , probably, Exec() function from my PHP application, passing required arguments.
  • Taking the output after processing and output them to a WebPage or for further processing (may be Apache-FOP)
The idea is, i don't want to install Xalan in the machine, but to have them in a kind of PORTABLE form with my application.
 
Back
Top