How to create temporary files on the client machine, from Web Application?
Posted
by Gaurav Srivastava
on Stack Overflow
See other posts from Stack Overflow
or by Gaurav Srivastava
Published on 2010-04-01T12:13:07Z
Indexed on
2010/04/01
12:23 UTC
Read the original article
Hit count: 284
I am creating a Web Application using JSP, Struts, EJB and Servlets. The Application is a combined CRM and Accounting Package so the Database size is very huge. So, in order to make Execution faster, I want prevent round trips to the Database.
For that purpose, what I want to do is create some temporary XML files on the client Machine and use them whenever required. How can I do this, as Javascript do not permits me to do so. Is there any way of doing this? Or, is there any other solution which I can adopt in order to make my application Faster?
© Stack Overflow or respective owner