Betr.: Re: Problem with HttpSessionListener

2006-10-11 Thread Roel De Nijs
Juan, what you also could do is, adjusting your code as follows: public void sessionCreated(HttpSessionEvent e){ System.out.println("sessionCreated - id = " + e.getSession().getId()); e.getSession().setAttribute("test", new String("testValue")); } add this line System.o

Betr.: RE: From Tomcat 5.0.28 to 5.5.20

2006-10-10 Thread Roel De Nijs
Base has been specified, and will be ignored" - message >>> "Caldarale, Charles R" <[EMAIL PROTECTED]> 10/10/2006 15:45 >>> > From: Roel De Nijs [mailto:[EMAIL PROTECTED] > Subject: From Tomcat 5.0.28 to 5.5.20 > > i want to migrate from tomcat 5.

From Tomcat 5.0.28 to 5.5.20

2006-10-10 Thread Roel De Nijs
Hi all, i want to migrate from tomcat 5.0 to tomcat 5.5, but it's not going very smoothly. i noticed that the -tag isn't valid anymore, so i deleted it out of server.xml and use log4j instead. but i'm very confused with the contexts. i keep getting this warning/info-message: "A docBase C:

Betr.: Re: The Future of Tomcat

2006-02-02 Thread Roel De Nijs
or they think coffee and/or island :-) >>> [EMAIL PROTECTED] 2/02/2006 16:50:03 >>> > True, but the HTTP server is still what most people think of when they > hear the name "Apache". Probably same people, that think of Applets or Javascript when they hear the word "Java"? > > Dave Leon :-) ---

The Future of Tomcat

2006-02-02 Thread Roel De Nijs
Hi, I heard that resources, updates, development and support of tomcat are slightly disappearing. MAny people are looking for alternatives (e.g. JBoss). Even Microsoft and HP are cooperating with JBoss very closely. As far as i know Tomcat is the most used app server, so it will take lots of t

Betr.: RE: Memory Management between different webapps

2006-02-02 Thread Roel De Nijs
at random situations, so it's a really big mistery why in test everything goes well and in production it crashes more then once a day. And it's doing it for approx 4 months now, so it's time it's getting solved. >>> [EMAIL PROTECTED] 2/02/2006 11:06 >>&g

Memory Management between different webapps

2006-02-02 Thread Roel De Nijs
Hi, I have a tomcat with ± 10 web-applications. Is there a maximum or some guidance in the number of web-apps you can put in one instance of Tomcat? And i start tomcat with the options -Xmx1024m -Xms1024m --> is there some information or articles about how tomcat is spreading all this memory

Getting StandardContext

2006-01-25 Thread Roel De Nijs
Hi, I was wondering if it's possible to programmatically get the StandardContext-object from e.g. a Servlet that's running in the container. So you can call getters like getDocType, programmatically add some mime types etc. Greetz Roel ***