webtier@glassfish.java.net

Re: [webtier] "an error occurred when processing your submitted infromation"

From: Jim Driscoll <Jim.Driscoll_at_Sun.COM>
Date: Thu, 13 Aug 2009 11:16:11 -0700

What's in your logs? You should get a stack trace in the logs. After
that, it should be comparatively simple to debug.

Jim

On 8/13/09 8:40 AM, Jeffrey Blattman wrote:
> 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?
>