we are using oc4j container(v 1.0.2.2.1)
when many users use this application one user sees the
other user data..
we have included the foll code in the jsp
<%
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
%>
<meta http-equiv="expires" content=<%= new java.util.Date() %>>
<meta http-equiv="no-cache">
The browser is IE 5.0
Please can anyone help us??
-
caching problem (3 messages)
- Posted by: fairoza begum
- Posted on: July 16 2004 04:29 EDT
Threaded Messages (3)
- caching problem by Bhagvan K on July 16 2004 10:15 EDT
- caching problem by Geert Bevin on July 19 2004 02:05 EDT
- caching problem by Frank Tyler on July 19 2004 12:39 EDT
-
caching problem[ Go to top ]
- Posted by: Bhagvan K
- Posted on: July 16 2004 10:15 EDT
- in response to fairoza begum
hi,
Just as a another line of debugging, check if
session management is ok
application level caching
hope that helps,
Bhagvan K
http://www.architectcorner.com -
caching problem[ Go to top ]
- Posted by: Geert Bevin
- Posted on: July 19 2004 02:05 EDT
- in response to fairoza begum
You might try
"Cache-Control","no-cache, must-revalidate"
also -
caching problem[ Go to top ]
- Posted by: Frank Tyler
- Posted on: July 19 2004 12:39 EDT
- in response to fairoza begum
we are using oc4j container(v 1.0.2.2.1)when many users use this application one user sees the other user data..we have included the foll code in the jsp<% 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%><meta http-equiv="expires" content=<%= new java.util.Date() %>><meta http-equiv="no-cache">The browser is IE 5.0Please can anyone help us??
Are you using a proxy? I seen this before when using a proxy. We had to set the options in the browser Tools\Internet Options. Look under the General Tab in the Temporary Internet Files section. Click on the Settings button and set it to "Every Visit to the Page".