Re: MultiThreading issues with Wicket.

2014-01-18 Thread Martin Grigorov
You can extend your logging library and check for this specific exception and convert it to one line... (too much work, imo). You can also add custom IRequestCycleListener and catch the error in #onException() and do something else. Martin Grigorov Wicket Training and Consulting On Sat, Jan 18,

Re: MultiThreading issues with Wicket.

2014-01-18 Thread Andrew Schetinin
Hi, We were also plagued by these EOF errors since upgrade to Wicket 6 from 1.4. In the old Wicket the errors (which are not errors - it's an expected behavior when a user cancels navigation) were not reported in such aggressive manner, with long stack traces. How is it possible to hide these err

Re: MultiThreading issues with Wicket.

2014-01-04 Thread Martin Grigorov
ang.Thread.run(Thread.java:662) > Caused by: org.eclipse.jetty.io.EofException > at org.eclipse.jetty.server.HttpOutput.write(HttpOutput.java:149) > at org.eclipse.jetty.server.HttpOutput.write(HttpOutput.java:96) > at > java.io.ByteArrayOutputStream.writeTo(Byt

Re: MultiThreading issues with Wicket.

2014-01-03 Thread Paul Bors
tChannelEndPoint.java:40) > at > > org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:529) > at java.lang.Thread.run(Thread.java:662) > Caused by: org.eclipse.jetty.io.EofException > at org.eclipse.jetty.server.HttpOutput.write(HttpOut

Re: MultiThreading issues with Wicket.

2014-01-03 Thread eaglei22
RequestCycleExtra-Handling the following exception -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-tp4663325p4663453.html Sent from the Users forum mailing list archive at Nabble.com

Re: MultiThreading issues with Wicket.

2014-01-03 Thread Paul Bors
rned it into a PageableListView and put a max > of 200 per page, and the problem went away. > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-tp4663325p4663438.html > Sent from the Users forum ma

Re: MultiThreading issues with Wicket.

2014-01-03 Thread eaglei22
I seem to be able to avoid this by limiting the amount of rows I print to the screen from the ListView. I turned it into a PageableListView and put a max of 200 per page, and the problem went away. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues

Re: MultiThreading issues with Wicket.

2014-01-02 Thread eaglei22
StalePageException. This exception only occurs though on the consol when I try to upload a new file, or click on any of the buttons on the page. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-tp4663325p4663397.html Sent from the Users forum

Re: MultiThreading issues with Wicket.

2014-01-02 Thread Paul Bors
if (!loaderIsRunning && !deleterIsRunning) >> { >> target.add(loaderListContainer); >> >> resultsUpdateBehavior.stop(target); >>

Re: MultiThreading issues with Wicket.

2014-01-02 Thread Paul Bors
gress); > } > } > > }; > add(resultsUpdateBehavior); > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-w

Re: MultiThreading issues with Wicket.

2014-01-02 Thread eaglei22
target.add(loaderListContainer); target.add(progress); } } }; add(resultsUpdateBehavior); -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Mul

Re: MultiThreading issues with Wicket.

2014-01-02 Thread Paul Bors
just read from that list.. > > I don't really see any latency issues, so maybe this can be considered a > good alternative? > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-tp4663325p4663389.htm

Re: MultiThreading issues with Wicket.

2014-01-02 Thread eaglei22
ading-issues-with-Wicket-tp4663325p4663389.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: MultiThreading issues with Wicket.

2014-01-02 Thread eaglei22
ere on the buffReadr.readLine()) while((strLine = buffReadr.readLine()) != null && (!cancelLoaderThread && !cancelDeleterThread)) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-tp4663325p4663387.html Sent from the Users

Re: MultiThreading issues with Wicket.

2013-12-31 Thread eaglei22
Awesome resources to look over. Thanks Paul! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-tp4663325p4663355.html Sent from the Users forum mailing list archive at Nabble.com

Re: MultiThreading issues with Wicket.

2013-12-30 Thread Paul BorČ™
sults. A dataView was reccommended and I will try that > as well, but I am not sure if I can use a worker thread with that or not. > > Thank you. > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket-

MultiThreading issues with Wicket.

2013-12-30 Thread eaglei22
main thread uses a listView to display results. A dataView was reccommended and I will try that as well, but I am not sure if I can use a worker thread with that or not. Thank you. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MultiThreading-issues-with-Wicket