Hi,
I'm designing a web page and I need to use Javascript to read a XML document and fill some parts of the page with it.
The problem is: "The XML should be created dynamically by Servlet/JSp/any_j2EE_server_side_tool."
Because: "The xml is customized for each user and his preferences"
Now, What is the solution?
what shall I code on server?
what in the JavaScirpt code?
which technology best fits for me? (JSP? servlet? ...?)
Please guide me in a step-by-step manner. please (if possible) show me some lines of code)
Complementary Question:
In the client side code, is it possible to avoid AJAX-style code? (Such that the javascript use the XML directly and do not need to request it from server). in the other word, I prefer that the browser download the XML itself.
Thanks in advance.