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.

Sankar

Venkata Krishna MV wrote:

> 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 if any directory is declared as Legacy JSP(0.92) directory.
> But we have to use JSP1.1.
>
> Please help. TIA.
>
> Regards,
> Krishna MVV
>
> ===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
> For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to