I am using tomcat 5.5.9. I am using a number of list in my application. and when ever i add new record and check the list it doesnot update it. untill i refreash the page. as i always update my related lists on new context Instance.. Like this :
public List getList() {
if (FacesContext.getCurrentInstance().getRenderResponse()) {
loadList(); // Reload to get most recent data.
}
return list;
}
Is it explorer problem or webserver problem. And what is its solution.