Re: Call me page wicket from iframe in page.jsp

2013-05-17 Thread Richard W. Adams
It's unclear what your issue is. By definition, different applications ( different users) have separate sessions. From: Alis ajcalve...@yahoo.es To: users@wicket.apache.org Date: 05/16/2013 03:45 PM Subject:Re: Call me page wicket from iframe in page.jsp Thank you! How do I

Re: Call me page wicket from iframe in page.jsp

2013-05-17 Thread Alis
Hello! The problem is that we no longer need two separate applications, but the application contain wicket in the other. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716p4658901.html Sent from the Users forum

Re: Call me page wicket from iframe in page.jsp

2013-05-17 Thread Alis
Hello! The problem is that we no longer need two separate applications, but the application contain wicket in the other. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716p4658902.html Sent from the Users forum

Re: Call me page wicket from iframe in page.jsp

2013-05-16 Thread Alis
Thank you! How do I keep the same session even if aplicaiones different? To be placed in each web.xml, help me -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716p4658869.html Sent from the Users forum mailing list

Re: Call me page wicket from iframe in page.jsp

2013-05-15 Thread Martin Grigorov
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

Re: Call me page wicket from iframe in page.jsp

2013-05-14 Thread Alis
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 =

Re: Call me page wicket from iframe in page.jsp

2013-05-13 Thread Martin Grigorov
Hi, Mount the Wicket page at some path with: application.mountPage(some/nice/url, MyPage.class) and use this stable url from the JSP code. You have to provide the the host:port/context/filter part if this is required, or calculate the relative url to the JSP's url. On Sat, May 11, 2013 at

Call me page wicket from iframe in page.jsp

2013-05-10 Thread Alis
Hello! Help me , how call me a page in wicket from iframe of page .jsp. Example: *page.jsp* -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Call-me-page-wicket-from-iframe-in-page-jsp-tp4658716.html Sent from the Users forum mailing list archive at Nabble.com.