RE: communication issue between .jsp and servlet

2004-01-14 Thread jon yeargers
, etc with no problem. Any suggestions what Im doing wrong? -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 10:23 AM To: Tomcat Users List Subject: Re: communication issue between .jsp and servlet Also make sure that you have session cookies

RE: communication issue between .jsp and servlet

2004-01-14 Thread Shapira, Yoav
, 2004 10:23 AM To: Tomcat Users List Subject: Re: communication issue between .jsp and servlet Also make sure that you have session cookies enabled in your browser. On Monday 12 January 2004 01:00 pm, Shapira, Yoav wrote: Howdy, Are you sure it's the same session? (Check it's ID in the JSP

Re: communication issue between .jsp and servlet

2004-01-13 Thread Ben Souther
AM To: Tomcat Users List Subject: Re: communication issue between .jsp and servlet Also make sure that you have session cookies enabled in your browser. On Monday 12 January 2004 01:00 pm, Shapira, Yoav wrote: Howdy, Are you sure it's the same session? (Check it's ID in the JSP

RE: communication issue between .jsp and servlet

2004-01-13 Thread jon yeargers
yeargers Cc: [EMAIL PROTECTED] Subject: Re: communication issue between .jsp and servlet It's in a stupid place in MSIE: Tools - Options - Privacy (tab) - click the Advanced button - Always allow session cookies (checkbox). I'm happy to answer these privately but it's better to keep the threads

Re: communication issue between .jsp and servlet

2004-01-13 Thread Ben Souther
* need to be set to use session attributes? Or to maintain other session information? -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 13, 2004 9:13 AM To: jon yeargers Cc: [EMAIL PROTECTED] Subject: Re: communication issue between .jsp and servlet

Re: communication issue between .jsp and servlet

2004-01-13 Thread Ben Souther
- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 13, 2004 9:13 AM To: jon yeargers Cc: [EMAIL PROTECTED] Subject: Re: communication issue between .jsp and servlet It's in a stupid place in MSIE: Tools - Options - Privacy (tab) - click the Advanced button

RE: communication issue between .jsp and servlet

2004-01-12 Thread Shapira, Yoav
Howdy, Are you sure it's the same session? (Check it's ID in the JSP and servlet). Yoav Shapira Millennium ChemInformatics -Original Message- From: jon yeargers [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 12:57 PM To: [EMAIL PROTECTED] Subject: communication issue between

Re: communication issue between .jsp and servlet

2004-01-12 Thread Ben Souther
Also make sure that you have session cookies enabled in your browser. On Monday 12 January 2004 01:00 pm, Shapira, Yoav wrote: Howdy, Are you sure it's the same session? (Check it's ID in the JSP and servlet). Yoav Shapira Millennium ChemInformatics -Original Message- From:

RE: communication issue between .jsp and servlet

2004-01-12 Thread jon yeargers
: communication issue between .jsp and servlet Also make sure that you have session cookies enabled in your browser. On Monday 12 January 2004 01:00 pm, Shapira, Yoav wrote: Howdy, Are you sure it's the same session? (Check it's ID in the JSP and servlet). Yoav Shapira Millennium

RE: communication issue between .jsp and servlet

2004-01-12 Thread Howard Watson
Souther [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 10:23 AM To: Tomcat Users List Subject: Re: communication issue between .jsp and servlet Also make sure that you have session cookies enabled in your browser. On Monday 12 January 2004 01:00 pm, Shapira, Yoav wrote: Howdy, Are you

RE: communication issue between .jsp and servlet

2004-01-12 Thread Merrill Cornish
session is an implicit object in a JSP page. Therefore, you should just reference session rather than getting it. Perhaps the get is creating a new session. Merrill - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: communication issue between .jsp and servlet

2004-01-12 Thread Keshav Sarin
Try using request.getSession(false)...in the servlet and JSP. [EMAIL PROTECTED] 01/12/04 12:28PM session is an implicit object in a JSP page. Therefore, you should just reference session rather than getting it. Perhaps the get is creating a new session. Merrill