Re: What else do we want to do before 8.0.0 final ?

2016-11-19 Thread Martin Grigorov
Replace CGLIB with ByteBuddy because it has better support for Java 8 and 9 ? CGLIB could stay as fallback (via system property) until 9.0.0. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Nov 18, 2016 at 12:49 PM, Andrea Del Bene

Re: WebSocket ConnectedMessage not Serializable

2016-11-19 Thread Peter Henderson
Ha! You've already fixed it. Ignore my pull request. (I spent too much time getting my scala -> java code compiling) Thanks Peter.

Re: WebSocket ConnectedMessage not Serializable

2016-11-19 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-6282 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sat, Nov 19, 2016 at 4:41 PM, Martin Grigorov wrote: > Hi Peter, > > I don't see a problem to make all msgs serializable. > Please create a

Re: WebSocket ConnectedMessage not Serializable

2016-11-19 Thread Martin Grigorov
Hi Peter, I don't see a problem to make all msgs serializable. Please create a ticket! With a Pull Request/Patch would be awesome! Thank you! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sat, Nov 19, 2016 at 3:46 PM, Peter Henderson <

WebSocket ConnectedMessage not Serializable

2016-11-19 Thread Peter Henderson
Hi all. Wicket 7.3.0 Native web sockets. Tomcat 8.5.5 I am trying to do background processing with results being pushed to a client as they become available. I store the connected message when a web socket connection is made [1]. This is used to fire push data to a single client/page [2] A