Page caching problem with JSP 1.1 on iPlanet 4.1

2001-08-25 Thread Venkata Krishna MV
Hi, I am using iPlanet 4.1 on Windows NT. Whenever a jsp is changed, iPlanet is expected to recompile the jsp and send updated page to browser. But, this is not happening. Every time I change a jsp, I have to clear cache and restart the service. Otherwise I get previous output. This works fine

signoff

2001-08-25 Thread chaitanya patel
signoff JSP-INTEREST __ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/ === To unsubscribe: mailto [EMAIL

signoff JSP-INTEREST

2001-08-25 Thread The Majestic Moined Mogul
signoff JSP-INTEREST

Re: signoff JSP-INTEREST

2001-08-25 Thread Zahid Rahman
signoff JSP-INTEREST - Original Message - From: The Majestic Moined Mogul To: [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 2:25 AM Subject: signoff JSP-INTEREST signoff JSP-INTEREST

Re: Page caching problem with JSP 1.1 on iPlanet 4.1

2001-08-25 Thread M Sankar
Hi Venkat, 1)Try using this line before /head tag meta http-equiv=Cache-Control content=no-cache forua=true/ 2)Add these lines to ur jsp page % response.setHeader(Cache-Control,no-cache); % % response.setHeader(Pragma,no-cache); % % response.setDateHeader (Expires, 0); % It works for me.