Java Technology & XML - Tool to view and modify XML in JSP page as label and text format

We have xml document and need to view and modify xml in jsp page as like label and text for tag and value respectively. Please let me know if any tool/framework available for this or any feasible solution to do this.thanksvasan
[248 byte] By [uuuuu8a] at [2007-11-26 23:11:18]
# 1

You can use XSLT which will take a XSL stylesheet and use it to transform a given XML document into HTML. In this case, I am assuming you would want the tag/element names as static text next to text input boxes where the user could change the values. You would then use the HTML form to POST to your Servlet, where the values could be used to modify the document's content. To do the last bit, you will need to understand DOM (aka JAXP in Java).

There are extensive tutorials on both XSLT and DOM at Apache, W3C and here at Sun.

- Saish

Saisha at 2007-7-10 14:08:10 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...