archives

2001-05-31 Thread SAMEUNIE
hi, i'd like to know where i can view the archives ? thanks -Message d'origine- De: Pablo Trujillo [SMTP:[EMAIL PROTECTED]] Date: mercredi 30 mai 2001 18:08 À:[EMAIL PROTECTED] Objet:Session in Tomcat Hello friends, I need information about how Tomcat assign the

RE: 2 forwards, HttpSession gone

2001-05-25 Thread SAMEUNIE
Well, i had exactly the same problem !!! I have traced, the id the client browser : at the first request, the id of the client has the value of the last session, and the third servlet looses the session. If the id of the client is null before the first request, everythiong works fine. If you

RE: servlet chaining, session null

2001-05-18 Thread SAMEUNIE
ok, but it's between the second and the third servlet that the problem appears !!! -Message d'origine- De: Bo Xu [SMTP:[EMAIL PROTECTED]] Date: jeudi 17 mai 2001 20:52 À:[EMAIL PROTECTED] Objet:Re: servlet chaining, session null [EMAIL PROTECTED] wrote: Well,

servlet chaining, session null

2001-05-17 Thread SAMEUNIE
Hi, i'm trying to use Servlet chaining with three servlets. In the first one i create a cession (if it doesn't exist), in the second one i put some attributes in the cession. But when i arrive in the third servlet, my session is null? As anybody already had this problem ? Is it possible to get

RE: servlet chaining, session null

2001-05-17 Thread SAMEUNIE
Well, all my servlets are on the same webapps. I don't use the url rewriting, but the HttpSession. for example in the first servlet: HttpSession session = request.getSession(false); if (session == null) session = request.getSession(true); session.setAttribute(path1,request.getServletPath());

wrapper.bin.parameters

2001-05-09 Thread SAMEUNIE
Hi, i 've just installed Tomcat, I would like to define init parameters for the JVM, For example, for the ini directory where i stock my .ini files, i would like to define an environment variable. I used to do this with an old version of Apache Jserv (without JSP) like that int the

TR: wrapper.bin.parameters

2001-05-09 Thread SAMEUNIE
Hi, i 've just installed Tomcat, I would like to define init parameters for the JVM, For example, for the ini directory where i stock my .ini files, i would like to define an environment variable. I used to do this with an old version of Apache Jserv (without JSP) like that int the

instanciate a servlet when tomcat starts

2001-05-09 Thread SAMEUNIE
Hi, I've a servlet that loads properties from a file to load them in the System properties. I'd like this servlet to be instanciated when Tomcat starts. With Jserv, i used the zone.properties file. I think it must be simple, but i really don't now tomcat and all the configuration file! Thanks

RE: wrapper.bin.parameters

2001-05-09 Thread SAMEUNIE
thanks !!! -Message d'origine- De: William Kaufman [SMTP:[EMAIL PROTECTED]] Date: mercredi 9 mai 2001 16:13 À:'[EMAIL PROTECTED]' Objet:RE: wrapper.bin.parameters You can define this in your web-app element in tomcat\conf\web.xml. For instance, web-app