I could be way off here, but have you looked at /templates/jsp/layouts/html/default.jsp? The <head> tag is defined there for the entire portal 'page' You may want to put those <meta> tags in the <head>
----- Original Message ----- From: "Paul Spencer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 01, 2001 1:44 PM Subject: Re: Proxy cache problem Can you set the fields in the http header using standard JSP stuff? Otherwise search the Turbine mailing list, or post your question their. Paul Spencer Christophe MESTRALLET wrote: > > Hello paul, > > Thanks for your answer, but, unfortunately, this does'nt seems to work > anymore. > I am using JSP templates. So I added the <meta> tags in default.jsp file. > I think the problem comes from turbine servlet... I am using a simple > program that parse HTTP Headers. My program never find these instructions. > If I add these instructions directly in turbine Servlet it works fine... but > I don't think it is a very nice way to proceed.... > Do you have a better idea than modifying turbine servlet ? > Thanks in advance. > > -----Message d'origine----- > De : Paul Spencer [mailto:[EMAIL PROTECTED]] > Envoy� : vendredi 28 septembre 2001 20:44 > � : [EMAIL PROTECTED] > Objet : Re: Proxy cache problem > > Christophe, > If your proxy server will use <meta> data in the page, then the > following to the <head> element of > WEB-INF/templates/vm/html/.../default.vm > <meta http-equiv="Pragma" content="no-cache" /> > <meta http-equiv="Cache-Control" content="no-cache" /> > <meta http-equiv="Expires" content="0" /> > > Paul Spencer > > Christophe MESTRALLET wrote: > > > > Hello, > > I have the following problem : > > I am using Jetspeed behind a proxy server. > > Unfortunately, the proxy server serves cached files. > > I want to add something like : > > response.setHeader("Pragma", "no-cache"); > > response.setHeader("Cache-Control", "no-cache"); > > response.setDateHeader("Expires", 0); > > > > on the response but I don't know were to put these instructions.... > > > > could you please help me ? > > > > Thanks. > > > > Christophe Mestrallet > > [EMAIL PROTECTED] > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
