RE: Session Question

2001-05-15 Thread Slemp, Douglas, J (Doug)
When it comes to form data, I always make a user object and bind this to a session. The user object will contain all my put/get calls. Therefore, I usually don't care what frame and/or page a user is on as long as the session is up, I have the user object to get my data. Then you can have

RE: why wont tomcat execute jsps properly for me?

2001-03-27 Thread Slemp, Douglas, J (Doug)
You need to configure your web server as well..which is what the error message below is telling me...you probably need a virtual host setup or you need to reconfigure your root doco settings..apache doesn't know how to service your request...then you need to modify your server.xml to support your

RE: AW: Sessions not working right

2001-03-27 Thread Slemp, Douglas, J (Doug)
I'm unfamilir with the method setAttribute for HttpSession(something new?) I myself have no problem with session state, as long as I use the getValue/putValue methods as defined in the HttpSession class. I then store any data I need to the session through a putValue.. I typically build an

RE: AW: Sessions not working right

2001-03-27 Thread Slemp, Douglas, J (Doug)
Is this 2.2 of the servlet api? If so, where did you get it? -Original Message- From: Jim Cheesman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 10:00 AM To: [EMAIL PROTECTED] Subject: RE: AW: Sessions not working right At 04:46 PM 3/27/2001, you wrote: I'm unfamilir with

RE: AW: Sessions not working right

2001-03-27 Thread Slemp, Douglas, J (Doug)
Thanks, I just downloaded and installed 2.3's api and javadocs... I'll begin the old process of updating my code builds.. Thanks..2:) Doug -Original Message- From: Jim Cheesman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 10:31 AM To: [EMAIL PROTECTED] Subject: RE: AW:

Flushing of include jsp pages

2001-03-21 Thread Slemp, Douglas, J (Doug)
I have the following question: if I have a %@ include file="/header.jsp" % embedded in the calling jsp, how can I ensure the included file is checked to see if it has been modified?(in case it has been changed) Right now, I have to modify the calling jsp in order to have it check and