Re: org.apache.wicket.WicketRuntimeException: Unable to write the response

2010-06-29 Thread Martijn Dashorst
Don't let the user wait. Use a lazy panel to render the long stuff in the background, or if it even takes longer than that, calculate your model data in a background thread and use a timer to poll and see if the thread has finished, and use the result in a panel that you replace on your page.

Re: org.apache.wicket.WicketRuntimeException: Unable to write the response

2010-06-29 Thread tommaso
: Martijn Dashorst martijn.dasho...@gmail.com To: users@wicket.apache.org Sent: Tuesday, June 29, 2010 8:05 AM Subject: Re: org.apache.wicket.WicketRuntimeException: Unable to write the response Don't let the user wait. Use a lazy panel to render the long stuff in the background, or if it even