selectManyListbox Binding Issue, Setter is not getting called

Hi ,

The getter is called when the form is submitting ot when the action is Triggered, however it is not calling the setter method. The JSF Code is like this :

<h:selectManyListbox styleClass="SelectBox" id="lstServiceOfferings" size="8" value="#{ServiceTypeCRUD.xxxxxxx}">

<f:selectItems id="avalableServiceList" value="# {ServiceTypeCRUD.availableServicesList}" />

</h:selectManyListbox>

<h:commandButton value="Move Right" id="moveright111" action="#{ServiceTypeCRUD.onClickMoveSelectedServicesRight}"

immediate="true"styleClass="listToolbarButton1">

</h:commandButton>

What could be the issue, can anybody suggest teh solution.

Thankx

Bharat

[745 byte] By [Bakhru@TCSa] at [2007-10-3 0:00:02]
# 1
I don't see any binding? And which getter/setter are you talking about? The setter of the list will never be called indeed. But the setter of the h:selectManyListbox value should be.
BalusCa at 2007-7-14 16:47:18 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
HI BalusThankx for your reply, yes I am talking abt the getter/setter for h:selectManyListbox , the setter is not getting called, so the values which are stored in xxxxxxx are always passing NULL....Please suggest some solution
Bakhru@TCSa at 2007-7-14 16:47:18 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Maybe you should set immediate="false"
eL_Boatoa at 2007-7-14 16:47:18 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...