What can this exception mean exactly?
java.lang.NullPointerException: WriteText method cannot write null text
at org.icefaces.impl.context.DOMResponseWriter.writeText(DOMResponseWriter.java:314)
at org.icefaces.impl.context.DOMResponseWriter.writeText(DOMResponseWriter.java:340)
this is only happening when deployed using icefaces autoCompleteEntry tag having value attribute set to backing bean property selectedplcofBirth defined as emptystring "".(i.e. private String selectedplcofBirth="";)
<ace:autoCompleteEntry id="txtplaceofbirth"
rows="10" autocomplete="false"
minChars="2" width="150"
value="#{inputPersonal.selectedplcofBirth}"
filterMatchMode="none"
valueChangeListener="#{inputPersonal.valueChangeEventCity}">
<f:selectItems value="#{inputPersonal.cities}"/>
</ace:autoCompleteEntry></h:outputFormat>
</h:outputFormat>, try to remove the</h:outputFormat>– Daniel Nov 19 '12 at 7:45