JSF and bean getter functions

Hi,

I'm using a JSP page (say page1.jsp) in which I'm binding the values for some inputTexts to the properties of a Bean (say Bean1).

<af:inputText id="name" required="true"

showRequired="false"

value="#{Bean1.name}">

and so on.........

Now the first time I call this JSP page (page1.jsp), it calls the get functions of the bean and display the correct value for each InputText.

However, If I update the values of Bean properties (using some other page) and then again call my first JSP page, the JSP page display some InputText with new values and some with old values..

I can see that It calls some of the get functions in bean and not calling others, instead using the old values.

The scope of the bean is - Session

What can be the possible problem, I'm new to the JSF and not very familiar with it, Is there any way I can force the JSP to call the get function every time for every property in the Bean, I'm using in the page so as to get the current value.

[1141 byte] By [Amit.Kotharia] at [2007-11-26 20:59:19]
# 1
Quick question - which version/implementation of JSF are you using?
rlubkea at 2007-7-10 2:29:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
I'm using Jdeveloper 10.1.3 , and I believe with version 1.1 of JSF
Amit.Kotharia at 2007-7-10 2:29:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...