Hi,
It could be a caching problem. Try adding the following to your jsp page
<%
// To prevent caching
response.setHeader("Cache-Control","no-store"); //HTTP 1.1
response.setHeader("Pragma","no-cache"); //HTTP 1.0
response.setDateHeader ("Expires", 0); //prevents caching at the proxy
server
%>
Also check emptying the cache and restarting the browser in the client
machine.

Regards,
Nagarajan.

-----Original Message-----
From: A mailing list about Java Server Pages specification and reference
[mailto:[EMAIL PROTECTED]]On Behalf Of Senthil Raja V
Sent: Tuesday, September 11, 2001 2:00 PM
To: [EMAIL PROTECTED]
Subject: serious problem


Hi.
can any one help me on this.
iam using tomcat with apache server on windows.
i am not getting the page refreshed even after some changes has been done
inside the jsp file.
but its working fine in the server machine (localhost).
its giving problem when i call the page from different machine.
settings inside server.xml is given as reloadable=true.
Is this correct.
can any one tell me where iam going wrong.

Thanks
Senthil

===========================================================================
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