Hemm,

look at the last answer to this question ;)

-----Message d'origine-----
De : Dmitri Colebatch [mailto:[EMAIL PROTECTED]]
Envoyé : mercredi 1 août 2001 14:28
À : [EMAIL PROTECTED]
Objet : Re: PROBLEM with...


Hi,

On Wed, 1 Aug 2001, Ludovic Maitre wrote:
> > HttpSession session = req.getSession(false);

That will _always_ return true, unless some time before its call there has
been a call:

    HttpSession session = req.getSession(true);

This is how you create a session.  You mention "logging", I'm not sure why
you think that should create a session.  If you have the above line and
its not working, then something is wrong, otherwise its perfectly
understandable.

> (
>         <RequestInterceptor
>             className="org.apache.tomcat.request.SessionInterceptor"
>             noCookies="false" />  <-- was true )

Sessions work with or without cookies.  If you specify
noCookies="true" then links will need to have url rewriting done on them
to track the session.  But sessions definately work both ways.

cheesr
dim


>
> I will now try to use the rewriterule mentionned in the FAQ for verify
> that she
> work, and if it works, i give a feedback to you/the mailing list
> (it seems to be the same problem no ?)
>
> regards,
>
> Ludovic
>
> > Loïc Lefèvre
> >
> > -----Message d'origine-----
> > De : bk [mailto:bk]De la part de Bernd Koecke
> > Envoyé : mercredi 1 août 2001 12:41
> > À : [EMAIL PROTECTED]
> > Objet : Re: PROBLEM with...
> >
> > Hi,
> >
> > Loïc Lefèvre wrote:
> > >
> > > Hi
> > >
> > > It's me againnnnnnnnnnnnnn ;)
> > > Now that apache and tomcat SEEMS to work together,
> > > I've got dome problems about SESSION.
> > > After being 'loged', the following code return null:
> > >
> > > HttpSession session = req.getSession(false);
> >
> > Try it with the Parameter 'true'. You don't have a session by default
> > and with Parameter 'false' you won't get a new one.
> >
> > >
> > > The question is : WHY?
> > >
> > > Loïc Lefèvre
> >
> > Bernd
> > --
> > Dipl.-Inform. Bernd Koecke
> > UNIX-Entwicklung
> > Schlund+Partner AG
> > Fon: +49-721-91374-0
> > E-Mail: [EMAIL PROTECTED]
>
> --
>  [EMAIL PROTECTED]
>
>  INRIA - 2004 route des lucioles - BP 93    Tel: (33/0) 4 92 38 50 41
>  06902   SOPHIA-ANTIPOLIS cedex (France)    Fax: (33/0) 4 92 38 76 02
>

Reply via email to