Re: [Wicket-user] Two or more apps in same deployment

2006-06-16 Thread Eelco Hillenius
Look at WicketSessionFilter for an idea on how to do that. Eelco On 6/14/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > yes, the session of each webapplication/servlet/whatever is stored under a > separate key in httpsession, so you should be able to retrieve it. > > > -Igor > > > On 6/14/06, Br

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Igor Vaynberg
yes, the session of each webapplication/servlet/whatever is stored under a separate key in httpsession, so you should be able to retrieve it.-IgorOn 6/14/06, Bruno Borges <[EMAIL PROTECTED]> wrote: Matej, I believe we all know that is not possible to share one session between two different Web App

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Bruno Borges
Matej, I believe we all know that is not possible to share one session between two different Web Applications.But the question is: can a Wicket Session be shared between two or more Wicket Applications in the _same_ Web Application? ps- maybe WebApplication class should be renamed to WicketApplicat

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Igor Vaynberg
On 6/14/06, Bruno Borges <[EMAIL PROTECTED]> wrote: Sharing data, for example user info.Pass one object from a page to another, POJO-like... etc...you can use underlying http session or servletcontext as a whiteboard depending on what scope you need. you can lookup the servlet and access it directl

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Bruno Borges
Sharing data, for example user info.Pass one object from a page to another, POJO-like... etc...Setting a link from app1/PageA to app2/PageB with "new PageLink(PageB.class)"... How would that be handled by wicket? These are just some questions I could find about this subject.On 6/14/06, Igor Vaynber

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Matej Knopp
That are not two web application. Just two different wicket applications (wicket servlet) in the same webapplication (context). There is no way of sharing session between two web applications. -Matej Vincent Jenks wrote: > I was wondering this myself actuallyhow can a session be shared > be

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Vincent Jenks
I was wondering this myself actuallyhow can a session be shared between two apps? On 6/14/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > take a look at wicket-examples - every example is its own wicket > application/servlet and it works like a charm. > > integration i dont know about, depends

Re: [Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Igor Vaynberg
take a look at wicket-examples - every example is its own wicket application/servlet and it works like a charm.integration i dont know about, depends on what you mean by integration :)-Igor On 6/14/06, Bruno Borges <[EMAIL PROTECTED]> wrote: What could be the issues if two or more Wicket applicatio

[Wicket-user] Two or more apps in same deployment

2006-06-14 Thread Bruno Borges
What could be the issues if two or more Wicket applications are deployed in the same Web Application? (two wicket servlets in web.xml; /app1, /app2)How easy is to integrate them?How should we modularize our applications so a huge project can have modules with teams working independently but not tot