hehe...

excuse me.. I am going to explain:
I am developing an exam and all the information including questions and answers are into the XML. The fact is that this is a product, and my boss wants to keep all information securely.
Recently, We found a way to not caching the XML with java, sending the following information before the XML:
Code:
pw.println("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
pw.println("Cache-Control: no-store, no-cache, must-revalidate");
pw.println("Cache-Control: post-check=0, pre-check=0");
pw.println("Pragma: no-cache");
And it works...
Anyway, we still have doubts about the way the browser caches the information transfered between client and server. Or if there is a maxium amount of data to be transfered (and if it excedes the maxium, just shows the cached info), etc.
I don't know if this concern to this forum... so thanks anyway...
See you next time!
nitz