shared session question

2005-06-30 Thread Sergio Ahumada Navea
does anybody knows how can I use the findSession function to retrieve shared sessions from multiples applications ? I have been trying with a local StandardManager class, but it ins't work to me. What I want is to be able of getting some attributes from a session created in another application

Re: General session question

2003-08-29 Thread Bill Barker
The short answer is: yes. However (unless you've enabled the uploadTimeout), this is the least of your worries with an upload that will take several minutes. Philipp Leusmann [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, will a session timeout when one servlet takes longer to

AW: General session question

2003-08-29 Thread Philipp Leusmann
Ok, thanks for the answer. But what would my worries be? Philipp -Ursprüngliche Nachricht- Von: news [mailto:[EMAIL PROTECTED] Auftrag von Bill Barker Gesendet: Freitag, 29. August 2003 05:15 An: [EMAIL PROTECTED] Betreff: Re: General session question The short answer is: yes

Re: AW: General session question

2003-08-29 Thread Tim Funk
the filesystem -Tim Philipp Leusmann wrote: Ok, thanks for the answer. But what would my worries be? Philipp -Ursprüngliche Nachricht- Von: news [mailto:[EMAIL PROTECTED] Auftrag von Bill Barker Gesendet: Freitag, 29. August 2003 05:15 An: [EMAIL PROTECTED] Betreff: Re: General session question

General session question

2003-08-28 Thread Philipp Leusmann
Hi, will a session timeout when one servlet takes longer to process than the session-timeout? For example for uploading-servlets. Thanks, Philipp - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Tomcat Session Question

2003-01-14 Thread Lee Peik Feng
Hi, Is it possible to set the session expiration to infinite? So that Tomcat session will never die. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

session question for tomcat 4.0.1 and 4.0.2

2002-02-13 Thread Zhiyong Li
I posted the following message a while ago and have not got any response. So, I tried it on tomcat 4.0.2 release. However, I got the same result. I would appreciate your help. 2. I am trying to use isNew() method on session to detect whether a session is newly created or not. For example,

Re: session question for tomcat 4.0.1 and 4.0.2

2002-02-13 Thread Charlie Toohey
First, of all, the assumption is that you have not turned off session support using the JSP page directive, i.e. you do NOT have %@ page session=false The default is true, so as long as you do not have this, you are fine. Now, session.isNew() would continually return false if the following

RE: session question for tomcat 4.0.1 and 4.0.2

2002-02-13 Thread Arif Pathan
say). Arif. -Original Message- From: Charlie Toohey [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 1:23 PM To: Tomcat Users List; Zhiyong Li Subject: Re: session question for tomcat 4.0.1 and 4.0.2 First, of all, the assumption is that you have not turned off session

Re: ===Session Question===

2001-06-04 Thread Daniel A. Melo
put the object in the request with setParameter(). the scope for this object is the request... it will be destroyed when you call the 2nd servlet. []´s Daniel A. anil wrote: Hello, I do have servlet that process request and forward to another servlet. like. -request-

RE: ===Session Question===

2001-05-23 Thread Martin van den Bemt
To: tomcat Subject: ===Session Question=== Hello, I do have servlet that process request and forward to another servlet. like. -request- Servlet1---servlet2 session-obj-1session-obj1(destroy session-obj1 request is done-user gets html back) At the end

===Session Question===

2001-05-22 Thread anil
Hello, I do have servlet that process request and forward to another servlet. like. -request- Servlet1---servlet2 session-obj-1session-obj1(destroy session-obj1 request is done-user gets html back) At the end of sevlet2, user get html window back. I want

Re: ===Session Question===

2001-05-22 Thread Alin Simionoiu
have you try to invalidate the session ? - Original Message - From: anil [EMAIL PROTECTED] To: tomcat [EMAIL PROTECTED] Sent: Tuesday, May 22, 2001 12:26 PM Subject: ===Session Question=== Hello, I do have servlet that process request and forward to another servlet. like

RE: ===Session Question===

2001-05-22 Thread Warren Crossing
]] Sent: Wednesday, 23 May 2001 5:26 AM To: tomcat Subject: ===Session Question=== Hello, I do have servlet that process request and forward to another servlet. like. -request- Servlet1---servlet2 session-obj-1session-obj1(destroy session-obj1 request is done

Re: ===Session Question===

2001-05-22 Thread Alin Simionoiu
Subject: RE: ===Session Question=== hi anil, i hope i've got your intention, you want to pass an object graph from servlet1 to servlet2. tomcat provides session management through request.getSession().setAttribute() these objects are accessible for the duration of the session. If you only

Re: ===Session Question===

2001-05-22 Thread anil
PROTECTED] Sent: Tuesday, May 22, 2001 12:26 PM Subject: ===Session Question=== Hello, I do have servlet that process request and forward to another servlet. like. -request- Servlet1---servlet2 session-obj-1session-obj1(destroy session-obj1 request

Re: ===Session Question===

2001-05-22 Thread anil
Hi Warren, Thanks for the magic to destroy the session object when the response is delivered to client. That's the idea. I have some attributes that I do not want to go away as long as tomcat lives but need to have the freedom to change. some to live only for the request. Like say that I have a

Re: ===Session Question===

2001-05-22 Thread anil
Thanks for the idea Alin. But that will invalidate all the attributes in the session. I want to keep some. And some to keep only in the request context (what ever you call). request.getSession(true) - this will create new session if you do not have a session. I am not sure what will happen with

RE: ===Session Question===

2001-05-22 Thread Kwan, Kenneth Y
- From: anil [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 23, 2001 11:04 AM To: [EMAIL PROTECTED] Subject:Re: ===Session Question=== Thanks for the idea Alin. But that will invalidate all the attributes in the session. I want to keep some

Re: ===Session Question===

2001-05-22 Thread Egidijus Drobavicius
- Original Message - From: anil [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 23, 2001 4:51 AM Subject: Re: ===Session Question=== Hi Warren, Thanks for the magic to destroy the session object when the response is delivered to client. That's the idea. I have some attributes

Re: Session Question

2001-05-15 Thread John Holman
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 15, 2001 12:54 PM Subject: Session Question I am currently writing a pretty complex data entry HTML page for an application. The HTML has 7 different frames where data is input, one represents

RE: Session Question

2001-05-15 Thread Slemp, Douglas, J (Doug)
another object used to parse through and do what you want with the data contained in the user/session object. Doug -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 7:54 AM To: [EMAIL PROTECTED] Subject: Session Question I am currently writing

Re: Session Question

2001-05-15 Thread Wyn Easton
The session is usually used to persist objects between tranactions with the client (browser). If you are gathering several input fields to write to the database towards the end of the session then using the session is the way to go. Or, you could use Java Script to gather all of the input fields

Re: Session Question

2001-05-15 Thread Sulman . Jeff
: Subject: Re: Session Question 05/15/01

Re: Session Question

2001-05-15 Thread John Holman
(). This means the page cannot be a static one. John. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 15, 2001 1:34 PM Subject: Re: Session Question John, In what ways may I have amend my pages due to cookies being disabled

RE: Session Question

2001-05-15 Thread William Kaufman
PROTECTED] Subject: Re: Session Question John, In what ways may I have amend my pages due to cookies being disabled

session question

2001-03-21 Thread Sascha Willuweit
hi folks, im using tc4-b1 with apache1.3.19 and after many days i got the warp-connection woking (using webapp). i found that there was no docs about installing these stuff, so i'm wonder why this list doesnt contain many questions about "getting apache and tomcat working TOGETHER". Anyway, i

RE: Connection/Session question

2001-02-09 Thread Wang, Jianming
. Is that right? Thank you. Jianming Wang -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 3:13 PM To: [EMAIL PROTECTED] Subject: RE: Connection/Session question Not really. The client will download the content of the JSP page (which contains

Connection/Session question

2001-02-08 Thread Wang, Jianming
Hello, I have a question: - If I have a page containing a applet and some other HTML content, and the applet uses a URLConnection to connect to the web server. In this case, how many connections/sessions I have? 2 connections? one from the page itself and one from the applet? Could any

Session question

2001-02-08 Thread Wang, Jianming
Hello, I have a question: - If I have a page containing a applet and some other HTML content, and the applet uses a URLConnection to connect to the web server. In this case, how many connections/sessions I have? 2 connections? one from the page itself and one from the applet? Could any

RE: Connection/Session question

2001-02-08 Thread Randy Layman
:[EMAIL PROTECTED]] Sent: Thursday, February 08, 2001 10:59 AM To: '[EMAIL PROTECTED]' Subject: Connection/Session question Hello, I have a question: - If I have a page containing a applet and some other HTML content, and the applet uses a URLConnection to connect to the web server