how to put data in session variable and get the data in different page in vaadin?
I think I should use the application scope session to deal with that. But I do not have any experience about that. I tried different ways I got from the internet like: HttpServletRequest request; HttpSession sess = request.getSession(); sess.setAttribute("name", name); later in other page HttpServletRequest request; String=(String)request.getAttribute(name); //or HttpSession sess = request.getSession(); // sess.getAttribute(name); all do not work. I think there may something special for vaadin to deal with that. Please help me. Basil Bourque Two Levels Of Scope See this posting by Roland