Re: Tomcat clustering and servletContext.

2003-11-04 Thread Tim Funk
AFAIK, only sessions are replicated. Attributes in the Servlet Context are not replicated. -Tim Antony Paul wrote: Hi, I asked this question yesterday no one replied. Suppose Tomcat is running in a cluster with load balancer. If I put a JavaBean in ServletContext is it possible to access

Re: Tomcat clustering and servletContext.

2003-11-04 Thread Antony Paul
Thanks - Original Message - From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 5:45 PM Subject: Re: Tomcat clustering and servletContext. AFAIK, only sessions are replicated. Attributes in the Servlet Context are not replicated

RE: Tomcat clustering and servletContext.

2003-11-04 Thread Shapira, Yoav
Howdy, And I did reply yesterday saying the same thing... Yoav Shapira Millennium ChemInformatics -Original Message- From: Antony Paul [mailto:[EMAIL PROTECTED] Sent: Monday, November 03, 2003 11:23 PM To: Tomcat Users List Subject: Tomcat clustering and servletContext. Hi, I

Re: Tomcat clustering and servletContext.

2003-11-04 Thread Christopher Schultz
Antony, I asked this question yesterday no one replied. Suppose Tomcat is running in a cluster with load balancer. If I put a JavaBean in ServletContext is it possible to access this bean in all machines ?. No, the ServletContext does not get propagated to other machines. Consider using a

Formerly: Tomcat clustering and servletContext.

2003-11-04 Thread Hart, Justin
- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 1:52 PM To: Tomcat Users List Subject: Re: Tomcat clustering and servletContext. Antony, I asked this question yesterday no one replied. Suppose Tomcat is running in a cluster with load balancer. If I put

Re: Formerly: Tomcat clustering and servletContext.

2003-11-04 Thread Christopher Schultz
Justin, Given that I've authenticated someone, using JNDIRealm, can I then operate with their permissions on the server? IE, if they authenticate to Tomcat in JNDIRealm, do I get access to files that carry their NT permissions? Uhh, I'm not entirely sure, but I'd eat my proverbial hat if a user

RE: Formerly: Tomcat clustering and servletContext.

2003-11-04 Thread Hart, Justin
Works for me. Thanks. Justin -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 2:23 PM To: Tomcat Users List Subject: Re: Formerly: Tomcat clustering and servletContext. Justin, Given that I've authenticated someone, using

Re: Formerly: Tomcat clustering and servletContext.

2003-11-04 Thread Tim Funk
Neither. All permissions are of the OS user running the process. -Tim Hart, Justin wrote: Ahh, you seem to know a bit about this. Given that I've authenticated someone, using JNDIRealm, can I then operate with their permissions on the server? IE, if they authenticate to Tomcat in JNDIRealm,

Re: Tomcat clustering and servletContext.

2003-11-04 Thread Antony Paul
I found your reply in the archives. Antony Paul - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 7:09 PM Subject: RE: Tomcat clustering and servletContext. Howdy, And I did reply yesterday saying

Tomcat clustering and servletContext.

2003-11-03 Thread Antony Paul
Hi, I asked this question yesterday no one replied. Suppose Tomcat is running in a cluster with load balancer. If I put a JavaBean in ServletContext is it possible to access this bean in all machines ?. Antony Paul - To