Re: Wicket: redirecting to wicket page using setResonsePage

2012-12-24 Thread Arun Chauhan
Hi, finally i got a solution in wicket. In ParentPage.class I am calling setWindowClosedCallback and in that i have wriiten code for refrehing the ParentPage when modal window closes. modalDialog.setWindowClosedCallback(new ModalWindow.WindowClosedCallback() { private

Re: Example of wicket atmosphere with channel

2012-12-24 Thread Arun Chauhan
Have you tried looking at the Wicket framework's examples? http://www.wicket-library.com/wicket-examples-6.0.x/atmosphere/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Example-of-wicket-atmosphere-with-channel-tp4654979p4655038.html Sent from the Users forum

Re: Parsing company id from url

2012-12-24 Thread Bas Gooren
Josh, We run the same kind of app, and what we did is simply consume the X-Forwarded-Host in the app server (see http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#x-headers). That way the url - website ID lookup is handled in the app itself. We have an IP especially for this app, and have

Re: Wicket Atmosphere does not run in Firefox 17

2012-12-24 Thread Andreas Kuhtz
Hi, Have you configured a proxy in firefox? if so, you may enable the ws://* to use the proxy, not only http and https. Hope this helps. Cheers 2012/12/24 Noven noven_...@yahoo.com Hi All, I just tried deploy the wicket-atmosphere-quickstart here at http://api.bola54.com into tomcat

RE: Parsing company id from url

2012-12-24 Thread Chris Colman
Josh, We run the same kind of app, and what we did is simply consume the X-Forwarded-Host in the app server (see http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#x-headers). That way the url - website ID lookup is handled in the app itself. We have an IP especially for this app, and have set

Re: Example of wicket atmosphere with channel

2012-12-24 Thread Noven
I opened the link but unfortunately I couldn't view the source. It appears as internal error. Thank you for the link, I will download the example and run in my local instead. Regards, Noven From: Arun Chauhan arundraj...@gmail.com To:

Re: Wicket Atmosphere does not run in Firefox 17

2012-12-24 Thread Noven
Hi, Thank you for your reply before. I did not change anything in firefox. If I have to, I can't use this feature. I doubt if the problem caused from firefox. When the quickstart deployed in my localhost (both tomcat and jetty), it run well in firefox.

Are Wicket models loaded concurrently ?

2012-12-24 Thread Hendy Irawan
Hi friends, If I have 5 Wicket (LoadableDetachable)models on a page, will Wicket load each model sequentially, or will the 5 models loaded concurrently ? We're using different servers for each database connection (MongoDB, Neo4j, etc.) so it will be a more effective use to load the models