Re: Losing Session Attributes

2008-02-06 Thread Dave Newton
--- daveck <[EMAIL PROTECTED]> wrote: > > Try making a copy of the request parameter map and storing that instead. > Made copy but didn't solve the problem. > > Map parameterMap - request.getParameterMap(); > session.setAttribute("PARMS", parameterMap); Just for completeness, this isn't making a

Re: Losing Session Attributes

2008-02-06 Thread Musachy Barroso
; > musachy > > > On Feb 6, 2008 11:55 AM, daveck <[EMAIL PROTECTED]> wrote: > > > > In case I wasn't clear... the attribute "PARMS" exists but loses it value. > > -- > > View this message in context: > > http://www.nabble.com/Losing-Ses

Re: Losing Session Attributes

2008-02-06 Thread Musachy Barroso
]> wrote: > > In case I wasn't clear... the attribute "PARMS" exists but loses it value. > -- > View this message in context: > http://www.nabble.com/Losing-Session-Attributes-tp15298791p15307254.html > > Sent from the S

Re: Losing Session Attributes

2008-02-06 Thread daveck
In case I wasn't clear... the attribute "PARMS" exists but loses it value. -- View this message in context: http://www.nabble.com/Losing-Session-Attributes-tp15298791p15307254.html Sent from the Struts - User mailing list archiv

Re: Losing Session Attributes

2008-02-06 Thread daveck
called out of sequence? > I haven't implemented it yet. Anymore thoughts would be very helpful! -- View this message in context: http://www.nabble.com/Losing-Session-Attributes-tp15298791p15306753.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Losing Session Attributes

2008-02-06 Thread daveck
ou'll definitely need configure in session attributes as in > > class="org.apache.struts2.spring.interceptor.SessionContextAutowiringInterce > ptor"/> > > which session attributes are you losing? > M-- > -- View this message in co

Re: Losing Session Attributes

2008-02-05 Thread mgainty
you'll definitely need configure in session attributes as in which session attributes are you losing? M-- - Original Message - Wrom: MYXOEAIJJPHSCRTNHGSWZIDREXCA To: Sent: Tuesday, February 05, 2008 3:24 PM Subject: Losing Session Attributes > > Hi, > I'm lo

Re: Losing Session Attributes

2008-02-05 Thread Laurie Harper
daveck wrote: Hi, I'm looking for some help, or some input on why I might be losing session attributes (Not the session itself). Are you sure? Have you confirmed that the session is the same in both requests? [...] I am setting session attributes in my interceptor to have avai

Losing Session Attributes

2008-02-05 Thread daveck
Hi, I'm looking for some help, or some input on why I might be losing session attributes (Not the session itself). Processing Flow: quest.action --> quest-input.jsp -> quest.action --> MyInterceptor -> confirm.jsp -> question.action --> quest-su

Re: Losing Session attributes

2007-08-20 Thread Shardul Bhatt
" with the username introduced. The app redirects to another >>>> page. >>>>> When i try to obtain the username attributte in the next page, it is >>>> seted >>>>> to null. I have searched the web and found no answer. >>>>> >>>>> I ha

Re: Losing Session attributes

2007-08-20 Thread Laurie Harper
If you have cookies disabled, the most likely explanation would be that the URL you use to open the pop-up is not correctly encoded; make sure it includes the jsessionid. If that's not the problem, try posting the JSP and/or Javascript code responsible for opening the 'faulty' page. L. Shardu

Re: Losing Session attributes

2007-08-19 Thread Shardul Bhatt
a possible reason, please tell me. >> > >> > Diego Ezquerro Bailac >> > Asturias, Spain >> > >> > >> > >> > __ >> > Correo Yahoo! >> > Espacio para todos tus mensajes, antiv

Re: Losing Session attributes

2007-08-19 Thread j alex
Are u using Struts 1.x or 2 ? -- please paste the code from struts xml and how you are doing the redirect? ; will attempt to answer after that. -Joseph On 8/17/07, Paul Benedict <[EMAIL PROTECTED]> wrote: > If you switch domains or ports, you will lose your session. Sessions are > usually tied to

Re: Losing Session attributes

2007-08-17 Thread Paul Benedict
If you switch domains or ports, you will lose your session. Sessions are usually tied to cookies which have these restrictions. On 8/17/07, Diego Ezquerro <[EMAIL PROTECTED]> wrote: > > Hi to everyone. > > I have a problem with the session attributes in my struts app. > I have a login page that ch

Losing Session attributes

2007-08-17 Thread Diego Ezquerro
Hi to everyone. I have a problem with the session attributes in my struts app. I have a login page that checks the username and the password and if it's all right, it fills the session (in the action bean) with an attributte "username" with the username introduced. The app redirects to another p

SOLVED!!!! Re: Losing session attributes between requests...

2007-04-12 Thread Peter L. Berghold
Nevermind folks... I found it. I found a particularly inventive way of shooting myself in the foot when I installed a session listener. The offending line: session.setMaxInactiveInterval(3600); which was set originally to a ridiculously low value. That's what I get for developing code while

Losing session attributes between requests...

2007-04-12 Thread Peter L. Berghold
Hi folks, Have just started seeing a new problem in an application that is baffling me. I run this using Struts 1.3 on an Apache Tomcat server as I have been for a while. What I'm seeing is on one form I have information stashed away in a session as a session attribute as such: request.getSes