Re: Concurrency question for servlets

2006-03-16 Thread Filip Hanik - Dev Lists
exception in a log file... Is this a known issue? -Dennis Klotz -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 14, 2006 3:39 PM To: Tomcat Users List Subject: Re: Concurrency question for servlets Hi, from the tomcat source package

RE: Concurrency question for servlets

2006-03-16 Thread Klotz Jr, Dennis
never had any output for the run time exception in a log file... Is this a known issue? -Dennis Klotz -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 14, 2006 3:39 PM To: Tomcat Users List Subject: Re: Concurrency question for servlets Hi, from

Re: Concurrency question for servlets

2006-03-14 Thread Leon Rosenberg
Hi, from the tomcat source package org.apache.catalina.core; public class ApplicationContext implements ServletContext { public Object getAttribute(String name) { synchronized (attributes) { return (attributes.get(name)); } } to answer your ques