internet explorer - Cache-control in Tomcat -


we have run problem internet explorer unable handle cache-control header set no-store ssl downloads. see http://support.microsoft.com/kb/323308 more details.

unfortunately when tomcat authentication enabled appears automatically add cache-control header value no-store.

i know there workaround when using basicauthenticator in tomcat. see http://daveharris.wordpress.com/2007/07/09/how-to-configure-cache-control-in-tomcat/. solution describes using disableproxycaching attribute on authenticator.

however, using sso authentication using org.apache.catalina.ha.authenticator.clustersinglesignon not appear have disableproxycaching attribute. there way change cache-control headers when using sso?

you can use filter run on cache-control header tomcat imposes.

response.setheader("cache-control", ); chain.dofilter(request, response);


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -