Hello, I need to convert one xml file to html file in a javaservlet program taking xsl file as input for conversion. 1) What all that I need to install ? 2) What is the API that I need to use ? 3) Do I need to make changes to any environment variables ? Satya
Originally posted by Satya Pandre: Hello, 1) What all that I need to install ? You need to install xslt processor like xalan,XT etc., 2) What is the API that I need to use ? Download the xalan package from http://xml.apache.org/xalan-j/index.html, it has an example to convert xml to html using xsl, on a servelt see here http://xml.apache.org/xalan-j/samples.html#servlet 3) Do I need to make changes to any environment variables ? NO!.. Balaji