For Vaadin inside Click use iFrame or div:
http://vaadin.com/book/-/page/application.embedding.html
You can redirect browser from click page to vaadin app as easly as to any
other page.
You can put some data to HttpSession and access it from Vaadin app:
WebApplicationContext cx = (WebApplicationContext) app.getContext();
HttpSession session = cx.getHttpSession();
if (session != null) {
get all you need from session...
}
}
--
View this message in context:
http://click.1134972.n2.nabble.com/Ever-integrate-Click-with-Vaadin-tp6568297p6574309.html
Sent from the click-user mailing list archive at Nabble.com.