I have the following in a facelets page:
<h:outputLabel value="Auth.net Password" for="password">
<span class="rvgMessage"><h:message for="password"/></span>
</h:outputLabel>
<h:inputSecret value="#{company.creditGatewayPassword}" id="password"/>
When I run this in my test environment the password field is displayed
correctly with *****. When I run this in my production environment,
there is nothing displayed in the field.
As far as I can tell the environments are the same:
jboss 4.0.4
myfaces 1.1.3
facelets 1.1.11
I put a println statement in the getter for creditGatewayPassword and
the value is being gotten (actually, a couple of times). If I replace
inputSecret with inputText, the value is displayed correctly.
Any thoughts on how I can even go about debugging this one?
Thanks,
Chris....