AW: Struts and Sessions Problem

2005-06-29 Thread Peter . Zoche
An: Struts Users Mailing List Betreff: Re: Struts and Sessions Problem Is it possible that you have a servlet filter set up which creates a session? Possibly one that checks if the user is logged in? -ed On 6/29/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello again >

Re: Struts and Sessions Problem

2005-06-29 Thread Ed Griebel
t; Peter > -Ursprüngliche Nachricht- > Von: Michael Jouravlev [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 29. Juni 2005 18:16 > An: Struts Users Mailing List > Betreff: Re: Struts and Sessions Problem > > > Hmm, I don't see how the session can be null. If

RE: Struts and Sessions Problem

2005-06-29 Thread Scott Piker
ng on here. - Scott > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 29, 2005 12:04 PM > To: user@struts.apache.org > Subject: Struts and Sessions Problem > > Hello all! > > I have a problem with struts and sessions,

AW: Struts and Sessions Problem

2005-06-29 Thread Peter . Zoche
e. my session is not null! Peter -Ursprüngliche Nachricht- Von: Michael Jouravlev [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 29. Juni 2005 18:16 An: Struts Users Mailing List Betreff: Re: Struts and Sessions Problem Hmm, I don't see how the session can be null. If you start from JSP,

Re: Struts and Sessions Problem

2005-06-29 Thread Michael Jouravlev
Hmm, I don't see how the session can be null. If you start from JSP, and you did not set session="false" in the page directive, then to my understanding, session should be created right in the JSP. Michael. > My index.jsp only forwards like this: > > <%@ taglib uri="/WEB-INF/struts-logic.tld" pr

Struts and Sessions Problem

2005-06-29 Thread Peter . Zoche
Hello all! I have a problem with struts and sessions, perhaps someone has an idea: My web.xml contains the following welcome file list: index.jsp My index.jsp only forwards like this: <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

Re: struts and sessions

2005-06-13 Thread Michael Jouravlev
HttpSession is the same everywhere: in plain servlet/JSP, in Struts or in JBoss. On 6/13/05, marc <[EMAIL PROTECTED]> wrote: > How do I easy and smart make a bean and put it in the client's session, > when the client logs on. So no mather where the client is, I can access > the bean. > Like a bean

struts and sessions

2005-06-13 Thread marc
How do I easy and smart make a bean and put it in the client's session, when the client logs on. So no mather where the client is, I can access the bean. Like a bean that holes name, adr, age and so on. I use jaas, jboss and the servelt sercurity when I logon. ---