Hello,

We just put our webapp behind a load balancer with sticky sessions.
After that we started noticing that load balancer cookie gets lost
when a modal window is popped up by a link click. Here is the code we
use to display the modal window:

new AjaxLink("editLink")
                    {
                        @Override
                        public void onClick(AjaxRequestTarget target) {
                            modalWindow.setPageCreator(new
ModalWindow.PageCreator() {
                            @Override
                             public Page createPage() {
                                  ....
                             }
                        }
                    });

How can we make sure that cookies get preserved when we pop up a modal window?

Thanks,

Alec

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to