Hi, I don't quite understand your question. To have two http sessions you should have two separate applications - one .war with the JSPs and another with Wicket code. Merge them in one app with separate mappings (<filter-mapping> and <servlet-mapping>) and they will share the session.
On Tue, May 14, 2013 at 6:27 PM, Alis <ajcalve...@yahoo.es> wrote: > Thank you! > > Now, my problem is that there are two sessions (one in wicket application > and another in jsp). How achievement maintain the values existing in the > request from wicket to return to interact in the page jsp. > > Example: > > page in wicket (Page.java) > > WebRequestCycle cycle = (WebRequestCycle) RequestCycle.get(); > HttpServletRequest request = > cycle.getWebRequest().getHttpServletRequest(); > HttpServletResponse response = > cycle.getWebResponse().getHttpServletResponse(); > HttpSession session = request.getSession(); > > > How return a page in jsp. > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716p4658792.html > Sent from the Users forum mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Martin Grigorov Wicket Training & Consulting http://jWeekend.com <http://jweekend.com/>
