Hi,

I am using this setting in my 'web.xml' to stop all files with extesion
'abc' from getting cached. The problem is that it works fine with IE, but in
Firefox I can still see my files getting cached. How can I stop my files
from getting cached in Firefox? Is there any other way to stop caching.

 <filter>
     <filter-name>
         HeaderFilter
      </filter-name>
      <filter-class>
         com.myweb.services.HeaderFilter
      </filter-class>
      <init-param>
         <param-name>
            Cache-Control
         </param-name>
         <param-value>
            no-cache
         </param-value>
      </init-param>
   </filter>
   <filter-mapping>
      <filter-name>
         HeaderFilter
      </filter-name>
      <url-pattern>
         *.abc
      </url-pattern>
   </filter-mapping>


Regards

Kamal





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to