Thanks,
It turns out I was missing redisplay="true". Adding that fixed everything.
Altough, I'm not sure why it worked on some environments. They are the
same version (actually setup on one machine and copied wholesale to
another). But I'm not going to worry about it.
Thanks again,
Chris....
Mike Kienenberger wrote:
I'd guess it'd have to be a different version of MyFaces on each machine.
Maybe JBoss 4.0.4 comes distributed with MyFaces? Some versions of
JBoss do.
You can set a breakpoint in the inputSecret renderer and see what's
going on.
On 12/9/06, Chris Hane <[EMAIL PROTECTED]> wrote:
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....