Re: Modal closed callback

2015-08-28 Thread Marco Di Sabatino Di Diodoro
Hi Gabriel, thanks for your help. Regards Marco Il 27/08/2015 20:27, Gabriel Landon ha scritto: You mean something like this : public class PanelContentModal extends ModalVoid { /** close callback. */ private WindowClosedCallback windowClosedCallback = null; public

Re: New Community page

2015-08-28 Thread Andrea Del Bene
On 24/08/15 17:29, Mihir Chhaya wrote: Thanks, Andrea. Very helpful links for developers like me and, everybody else looking into Wicket site for any other reason. My humble observation though; there is 'CONTRIBUTE' link before 'COMMUNITY'. Would it be helpful in 'linking' those two or having

Re: Has anybody used WebSockets with an embedded Jetty instance?

2015-08-28 Thread Martin Grigorov
Hi, You can use : ServerContainer serverContainer = WebSocketServerContainerInitializer.configureContext(bb); serverContainer.addEndpoint(new WicketServerEndpointConfig()); bb is: WebAppContext bb = new WebAppContext(); Martin Grigorov Wicket Training and Consulting

Re: Has anybody used WebSockets with an embedded Jetty instance?

2015-08-28 Thread Don Ferguson
Hi Martin, I'm already doing that (I encountered your earlier post which got me this far). This means that WebServerEndpointConfig must be in Jetty's classpath, along with its dependencies. I'm ending up with the bulk of wicket in Jetty's classpath (and duplicated in WEB-INF/lib) which leads to

Has anybody used WebSockets with an embedded Jetty instance?

2015-08-28 Thread Don Ferguson
I have an app built on Wicket 7.0,0 and Jetty 9.2.6 to which I am attempting to add WebSockets (wicket-native-websocket-javax). The app functions properly when running from the IDE, however I have not been able to get web sockets to work when running from an executable WAR file. The main

OAuth2 on google app engine - Same httpsession - new wicket sessions

2015-08-28 Thread e . spyrop . w
Hi all, I have built a rather crude OAuth2 authentication / authorization of google apis mechanism. I am using wicketstuff.gae (and a customized wicket-auth-roles for internal app authorization). On the gae side, I am using the REST api for the shake of clarity and traceability. The problem,