RE: cross application form bean

2005-01-10 Thread mohan.radhakrishnan
JAAS would help but that's not Struts specific. Mohan -Original Message- From: Craig McClanahan [mailto:[EMAIL PROTECTED] Sent: Saturday, January 08, 2005 9:30 AM To: Struts Users Mailing List; Oleg Subject: Re: cross application form bean Sessions are unique to indiv

Re: cross application form bean

2005-01-07 Thread Craig McClanahan
Sessions are unique to individual applications. In addition, individual applications are loaded by different class loaders (because they have different WEB-INF/lib directories), so its quite likely that you'd get ClassNotFoundException errors even if sessions were allowed to cross the boundaries.

cross application form bean

2005-01-07 Thread Oleg
Hi, Is there a way to access a form bean (login info) cross applications. For example, a user logs in application 1, the form bean created with session scope and than redirected to the URL of second application, there application finds created from bean and will not ask to login again. I tried th