> Hi Guys,
>
> Currently I'm working on a web-based document management system, in which
we
> get the output in form of XML. Then we need to show the data in a JSP
page.
> I searched through archives and on the net but couln't find any parser
> suitable for my need.Below is a sample of the output XML :-

- you can process the XML on the server using an XSL stylesheet, and that
can be quite fast -- I use it all over the place, without cacheing anything.
I _do_ put an XSLProcessor instance in a session bean, accessed through a
synchronized method -- this saves the time it takes to instantiate the
processor

- if it's OK to be IE-only, you can just add a stylesheet link to the XML,
make your stylesheet available on your web server, and let IE take care of
processing the XML into HTML

_3
M

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to