Is there any tool that accepts XML document and generates an XSL sheet for it ??
Save India From Corruption - Anna Hazare.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35248
7
posted
0
XML documents do not have an associated XSL stylesheet. That is to say, for any given XML document, any number of XSL styleshests could be used to transform it. What are you trying to do?
We have a XML document generated of our Table data in Oracle.
Now i need to write a servlet that will accept this XML document and generate an HTML document based on data in it.
so what i was trying to ask is that how to create a Template (xsl file) for an xml document
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35248
7
posted
0
There's an unlimited number of ways to transform an XML document into an HTML document, and thus an unlimited number of XSL stylesheets to do so. What do you have so far?
I dont anything related to xsl . First trying to learn basics , so please guide me how can i do this.
Jimmy Clark
Ranch Hand
Joined: Apr 16, 2008
Posts: 2187
posted
0
Ravi, first you must learn the syntax of the eXstensible Stylesheet Language and how an XSLT Engine operates. Then you need to learn how to write XSL code, e.g if statements, for loops, etc., using the XSL syntax. There are numerous books that will teach you XSL.
In case it isn't clear yet: XSLT is a programming language. You wouldn't post here and say "I need to write a Java program to convert this file format to that file format, but I don't know anything about Java, what should I do", would you?