If i update my faces lib from 1.0.9 to 1.1.1, then value binding does not create:

FacesContext context = FacesContext.getCurrentInstance();
Application app = context.getApplication();
ValueBinding vb = app.createValueBinding ( attributeValue );
component.setValueBinding( attributeName, vb );
System.out.println( "vb: " + vb.getValue(FacesContext.getCurrentInstance()) );

vb.getValue(FacesContext.getCurrentInstance()) returns null with faces 1.1.1 but works fine with 1.0.9

Reply via email to