jsf - h:inputText value is null in action method -
container glassfish. the jsf page setting message #{senderbean.messagetext} , <h:messages/> output null messagetext property. <?xml version='1.0' encoding='utf-8' ?> <!doctype html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html"> <h:head> <title>message sender</title> </h:head> <h:body> <h:form> <h2>type message in message text field</h2> <h:outputlabel for="messagetext" value="message text:"/> <h:inputtext id="messagetext" title="message text" value="#{senderbean.messagetext}" required="true" requiredmessage="error: message text id required" maxlength="128" ...