RE: Tomcat 5.5.12 Refresh/Cache problem

2005-11-03 Thread Samit Paul
Thanks a lot guys. Certainly I misunderstood. Samit Paul -Original Message- From: MW Janssen [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 02, 2005 2:51 AM To: 'Tomcat Users List' Subject: RE: Tomcat 5.5.12 Refresh/Cache problem that's what i

RE: Tomcat 5.5.12 Refresh/Cache problem

2005-11-01 Thread MW Janssen
that's what i meant. regards. -Oorspronkelijk bericht- Van: Stephan van Loendersloot [mailto:[EMAIL PROTECTED] Verzonden: woensdag 2 november 2005 4:39 Aan: Tomcat Users List Onderwerp: Re: Tomcat 5.5.12 Refresh/Cache problem Samit Paul wrote: > Arlene, > Thanks for the rep

Re: Tomcat 5.5.12 Refresh/Cache problem

2005-11-01 Thread Stephan van Loendersloot
Subject: RE: Tomcat 5.5.12 Refresh/Cache problem /** Turn on caching: expire in one hour * @param response The Http Response. */ public static void setHeadersCacheOn( HttpServletResponse response ){ java.util.Calendar expireDate = java.util.Calendar.getInstance(); expireDate.add

RE: Tomcat 5.5.12 Refresh/Cache problem

2005-11-01 Thread Samit Paul
Arlene, Thanks for the reply. My file is a PNG file. Can you tell me where can I put this piece of code. Thanks, Samit Paul -Original Message- From: Arlene Milgram [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 01, 2005 8:20 AM To: users@tomcat.apache.org Subject: RE: Tomcat 5.5.12

RE: Tomcat 5.5.12 Refresh/Cache problem

2005-11-01 Thread Samit Paul
Users List' Subject: RE: Tomcat 5.5.12 Refresh/Cache problem is IE caching problem. To avoid caching of images in IE put an extra unique parameter behind the image source, i.e. the time in milliseconds. So the browser can never find it again in the cache. regards, maarten -Oorspronkelijk b

RE: Tomcat 5.5.12 Refresh/Cache problem

2005-11-01 Thread Arlene Milgram
/** Turn on caching: expire in one hour * @param response The Http Response. */ public static void setHeadersCacheOn( HttpServletResponse response ){ java.util.Calendar expireDate = java.util.Calendar.getInstance(); expireDate.add(java.util.Calendar.SECOND, 30 ); response.se

RE: Tomcat 5.5.12 Refresh/Cache problem

2005-10-31 Thread MW Janssen
is IE caching problem. To avoid caching of images in IE put an extra unique parameter behind the image source, i.e. the time in milliseconds. So the browser can never find it again in the cache. regards, maarten -Oorspronkelijk bericht- Van: Samit Paul [mailto:[EMAIL PROTECTED] Verzonde