RE: "HTTP 500" / "Render queue error in BeginRender" for page with form.

2014-06-06 Thread Pitman, Andrew
Thiago, Thanks for your quick response. Here is the stack trace: org.apache.tapestry5.internal.services.RenderQueueException: Render queue error in BeginRender[core/ExceptionReport:exceptiondisplay.loop_1]: Error serializing component action for component core

Re: "HTTP 500" / "Render queue error in BeginRender" for page with form.

2014-06-06 Thread Thiago H de Paula Figueiredo
On Fri, 06 Jun 2014 18:04:29 -0300, Pitman, Andrew wrote: Hi all, Hi! Render queue error in BeginRender[core/ExceptionReport:exceptiondisplay.loop_1]: Error serializing component action for component core/ExceptionReport:exceptiondisplay.loop_1: write beyond end of stream Full

"HTTP 500" / "Render queue error in BeginRender" for page with form.

2014-06-06 Thread Pitman, Andrew
pertained to the specific error I'm seeing or my circumstances. The error I'm getting is as follows: HTTP ERROR 500 Problem accessing /pepe/login/page. Reason: Render queue error in BeginRender[core/ExceptionReport:exceptiondisplay.loop_1]: Error serializing

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
Got it working. Somehow the tapestry dependencies weren't built quite right so I removed the .jars from the maven repo and started fresh. -- View this message in context: http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363p5719373.html Sent

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread Steve Eynon
> -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363p5719370.html > Sent from the Tapestry - User mailing list archive at Nabble.com. > >

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
http://tapestry5-jquery.com/ -- View this message in context: http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363p5719370.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread Thiago H de Paula Figueiredo
If you're still in your first Tapestry steps, I wouldn't recommend using an alpha version at all. -- Thiago H. de Paula Figueiredo - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
ge in context: http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363p5719365.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-uns

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread Steve Eynon
s working with 5.4. > > Here's my Page > > > > Here's my markup > > > > Here's the stacktrace > > > > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginR

5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
Trying to get forms working with 5.4. Here's my Page Here's my markup Here's the stacktrace -- View this message in context: http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363.html Sent from the Tapestry - User mailing

Re: Render queue error in BeginRender

2011-10-22 Thread Julien Martin
the stacktrace: > > > Render queue error in BeginRender > > meaning you needed to load your entity sometime before that phase - > i.e. setupRender() > > I don't what was causing the NPE though, loading your entity in > onPrepareForRender() should have been okay. Looks lik

Re: Render queue error in BeginRender

2011-10-22 Thread Steve Eynon
Oh yeah, re-looking, the clue was in the stacktrace: > Render queue error in BeginRender meaning you needed to load your entity sometime before that phase - i.e. setupRender() I don't what was causing the NPE though, loading your entity in onPrepareForRender() should have been okay. Lo

Re: Render queue error in BeginRender

2011-10-22 Thread Julien Martin
Steve, It works with @SetupRender Thanks!! 2011/10/22 Steve Eynon > > Thanks for your reply Steve, > > No worries, I know how frustrating it can be when no one answers! > > > I was not able to find any such EventConstant > > SetupRender is not an component event, it's a um, render phase! See her

Re: Render queue error in BeginRender

2011-10-22 Thread Steve Eynon
> Thanks for your reply Steve, No worries, I know how frustrating it can be when no one answers! > I was not able to find any such EventConstant SetupRender is not an component event, it's a um, render phase! See here: http://tapestry.apache.org/component-rendering.html Essentially rename your

Re: Render queue error in BeginRender

2011-10-22 Thread Julien Martin
Thanks for your reply Steve, I am also surprised because I am actually trying to follow an example taken from Igor's book. My ChildMinderAccount is a JPA entity that extends an abstract Account class. Regarding your suggestion of using the setuprender phase, I was not able to find any such EventC

Re: Render queue error in BeginRender

2011-10-22 Thread Steve Eynon
Nothing there I can see that's obvious... What does your ChildminderAccount look like? Creating it in the PREPARE_FOR_RENDER event should be fine - but you could always try creating it the SetupRender() render phase - see if it's any different. Steve. On 22 October 2011 20:50, Julien Martin w

Render queue error in BeginRender

2011-10-22 Thread Julien Martin
fulRegistrationForm() { System.out.println("success"); } } Upon the first call to the page, I get an IllegalArgument Exception: 2011-10-22 14:40:48,748: ERROR (org.apache.tapestry5.internal.services.RenderQueueImpl:82) Render queue error in BeginRender[InscriptionProfess

Re: Render queue error in BeginRender: Class cannot be null

2011-10-22 Thread Julien Martin
; * > * > *@DiscardAfter* > * @OnEvent(EventConstants.SUCCESS)* > *void successfulRegistrationForm() {* > *System.out.println("success");* > * > * > *}* > * > * > *}* > > Stack trace: > 2011-10-21 22:05:3

Fwd: Render queue error in BeginRender: Class cannot be null

2011-10-21 Thread Julien Martin
tionForm() {* *System.out.println("success");* * * *}* * * *}* Stack trace: 2011-10-21 22:05:31,417: ERROR (org.apache.tapestry5.internal.services.RenderQueueImpl:82) Render queue error in BeginRender[InscriptionProfessionnelGardeEnfant:accountemailaddress]: Class cannot be n

Re: Render queue error in BeginRender: Class cannot be null

2011-10-21 Thread Thiago H. de Paula Figueiredo
On Fri, 21 Oct 2011 17:37:40 -0200, Julien Martin wrote: Hello, Hi! I still get this error the first time the form is loaded: *Render queue error in BeginRender[InscriptionProfessionnelGardeEnfant:accountemailaddress]: Class cannot be null (displayed in the browser

Render queue error in BeginRender: Class cannot be null

2011-10-21 Thread Julien Martin
(childMinderStatusList,"childMinderStatusDescription"); * *}* I still get this error the first time the form is loaded: *Render queue error in BeginRender[InscriptionProfessionnelGardeEnfant:accountemailaddress]: Class cannot be null (displayed in the browser)* *java.lang.IllegalArgumentExcept