I am using XML applications.
I am using Xalan parser for Xml file transformation.
job1 : Create XML document dynamically with data from
database.
job2 : Transform generated XML file with xsl to get
HTML file output.
job 1 is working fine with jaxp parser
job 2 is working fine with xalan parser
I am creating xml file dynamically by fetching data
from database.
When I am using Xalan parser class path setting I am
not able to generate XML document
But by adding jaxp parser in the classpath I am able
to generete the document. But now if I am tring to
transform it I am getting the runtime exception that
"Namespace not supported by the parser".
How can I get both of the functions working properly
with either of the parser.
Thanx in Advance,
Devang