webtier@glassfish.java.net

"an error occurred when processing your submitted infromation"

From: Jeffrey Blattman <jeffrey.blattman_at_gmail.com>
Date: Thu, 13 Aug 2009 08:40:38 -0700

on glassfish v2.1, i get this strange faces message at a particular
point in my app. only on glassfish. nothing in the log, except a
duplication of the faces messages i see on the screen. screen cap is
attached. i am using icefaces. after the error occurs, any action causes
the error to repeat, until i refresh the page (clearing my request scope
beans).

the fields of the form are bound to an array of ints. so it's like,

     private int[] startIp = new int[4];
     private int[] endIp = new int[4];

and then,

<ice:inputText
                     value="#{viewCondition.startIp[0]}"
                     size="3"
                     maxlength="3"/>
<ice:inputText
                     value="#{viewCondition.startIp[1]}"
                     size="3"
                     maxlength="3"/>
... etc ...

any idea how to go about debugging this?