Re: jsp session values - setting and getting problems

2008-05-28 Thread Pid
Kimberly Begley wrote: Hi, The starting point of the app is the user uploading a zip file the file is processed and a summary of the results displayed (in the form I spoke of). It's basically a form that doesn't have any parameters but displays a button that goes to the report.jsp page when

Re: jsp session values - setting and getting problems

2008-05-28 Thread Kimberly Begley
Great - thanks! On Wed, May 28, 2008 at 5:14 PM, Pid [EMAIL PROTECTED] wrote: Kimberly Begley wrote: Hi, The starting point of the app is the user uploading a zip file the file is processed and a summary of the results displayed (in the form I spoke of). It's basically a form that doesn't

Re: jsp session values - setting and getting problems

2008-05-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kimberly, Kimberly Begley wrote: | By putting in a few statement I found out the report.jsp is returning true | to the session.isNew() function - I suppose that's why it can't see the | variables. The session timeout is set to 1800 seconds. Okay,

Re: jsp session values - setting and getting problems

2008-05-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kimberly, Kimberly Begley wrote: | Great - thanks! Pid's suggestion might fix the symptom, but I believe you have an underlying problem to look into. - -chris -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with

jsp session values - setting and getting problems

2008-05-27 Thread Kimberly Begley
Hi, I have a jsp form that sets session attributes as such: session.setAttribute(totals,totals); session.setAttribute(failures,failures); session.setAttribute(skips,skips); and then the form directs to the report.jsp page as follows: form name=resultreport action=report.jsp method=post

Re: jsp session values - setting and getting problems

2008-05-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kimberly, Kimberly Begley wrote: | Hi, | I have a jsp form that sets session attributes as such: | session.setAttribute(totals,totals); | session.setAttribute(failures,failures); | session.setAttribute(skips,skips); | | and then the form

Re: jsp session values - setting and getting problems

2008-05-27 Thread Kimberly Begley
Hi, The starting point of the app is the user uploading a zip file the file is processed and a summary of the results displayed (in the form I spoke of). It's basically a form that doesn't have any parameters but displays a button that goes to the report.jsp page when pushed (at least on my local