How can i disable http caching of all my http connections in my japplet? I dont want any of my http (request/response)to be cached.Regardless of the user se
You can disable caches using URLConnection.setUseCaches(boolean)
An easy way to break caching is to add a random value to the url ala:
String url = "http://www.example.com/?noCache=" + Math.Random();