Re: Caching a JSP Page

2001-03-23 Thread Subha Desikan
Message- From: sharma Sumeet [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 2:30 AM To: [EMAIL PROTECTED] Subject: Re: Caching a JSP Page You will need to set the appropriate HTTP header attributes to prevent the dynamic content output by the JSP page from being cached by the browser. Just

Re: Caching a JSP Page

2001-03-23 Thread sharma Sumeet
FAQ > -Original Message- > From: ??? [SMTP:[EMAIL PROTECTED]] > Sent: Wednesday, March 21, 2001 2:15 AM > To: [EMAIL PROTECTED] > Subject: Re: Caching a JSP Page > > All you have to do is to add these below > > > > -Original Message- > F

Re: Caching a JSP Page - Error!

2001-03-21 Thread Martin Cooper
- From: "Willy LEGIMAN" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 5:30 PM Subject: Re: Caching a JSP Page - Error! > Tried your code and received the following error in JDeveloper: > > <%@ page contentType="text/html;ch

Re: Caching a JSP Page

2001-03-21 Thread zac
just to digress a bit, can anyone enlighten me on wat caching actually does for a browser displaying pages? Wat are the issues involved? zac === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". F

Re: Caching a JSP Page - Error!

2001-03-21 Thread Willy LEGIMAN
terface javax.servlet.http.HttpServletResponse. -Original Message- From: Hoorn, Michiel van [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 21 March 2001 20:20 To: [EMAIL PROTECTED] Subject: Re: Caching a JSP Page Or this in yuor jsp: <% response.addHeader("Pragma",

Re: Caching a JSP Page

2001-03-21 Thread Jeff Sahol
3/22/2001 1:20:38 AM, "Rob L'Estrange" <[EMAIL PROTECTED]> wrote: >Thanks Kare. > >I've taken a look at the HTTP/1.1 RFC. I have a couple of questions about >the following code, >> > > response.addHeader("Pragma", "No-cache"); >> > > response.addHeader("Cache-control", "no-cache"); >> > > r

Re: Caching a JSP Page

2001-03-21 Thread Rob L'Estrange
headers are used to control caching. Does anyone have any feedback on this? Thanks Rob - Original Message - From: "Kare Nuorteva" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 5:07 AM Subject: Re: Caching a JSP Page > On Wed, 21 M

Re: Caching a JSP Page

2001-03-21 Thread Kare Nuorteva
Michiel van" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, March 21, 2001 1:19 AM > Subject: Re: Caching a JSP Page > > > > Or this in yuor jsp: > > > > <% > > response.addHeader("Pragma", "No-

Re: Caching a JSP Page

2001-03-21 Thread Rob L'Estrange
Does anyone know where all possible response headers are documented? Rob - Original Message - From: "Hoorn, Michiel van" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 1:19 AM Subject: Re: Caching a JSP Page

Re: Caching a JSP Page

2001-03-21 Thread Hoorn, Michiel van
To: A mailing list about Java Server Pages specification and > reference > Sent: Wednesday, March 21, 2001 8:14 AM > To: [EMAIL PROTECTED] > Subject: Re: Caching a JSP Page > > All you have to do is to add these below > > > > -Original Message--

Re: Caching a JSP Page

2001-03-20 Thread ???
All you have to do is to add these below -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of OK Prakasan Sent: Wednesday, March 21, 2001 3:28 PM To: [EMAIL PROTECTED] Subject: Caching a JSP Page Hi All

Caching a JSP Page

2001-03-20 Thread OK Prakasan
Hi All, I would like to prevent the browser from caching a JSP page. Please give me a solution to achieve this. Thanks in Advance Prakasan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INT