Re: design question for pushing DOM/XML to client, then display

2006-03-03 Thread Yasushi Okubo
Andrew Robinson wrote: It really depends on what affect you are looking for. A: you want the user to download an XML file as a data file Answer 1: Write a servlet to build the XML document, set the attachment HTTP header to the XML file name and then write the XML document to the HttpServletRes

Re: design question for pushing DOM/XML to client, then display

2006-03-03 Thread Andrew Robinson
It really depends on what affect you are looking for. A: you want the user to download an XML file as a data file Answer 1: Write a servlet to build the XML document, set the attachment HTTP header to the XML file name and then write the XML document to the HttpServletResponse's output stream Ans

design question for pushing DOM/XML to client, then display

2006-03-03 Thread Yasushi Okubo
Hi, experts I have a design question for how to push/display DOM/XML page on client. There is a table data stored in an array that is displayed with datascroller. I want to add a function to export this data in xml format on client. I am thinking to convert an array to DOM then use writ