Re: isapi log

2001-04-17 Thread Stéphane BAUDET
Here are the constants used in the C program. #define JK_LOG_DEBUG_VERB "debug" #define JK_LOG_INFO_VERB"info" #define JK_LOG_ERROR_VERB "error" #define JK_LOG_EMERG_VERB "emerg" Stphane "H.F.N. den Boer" a crit : The isapi.log is growing big on my Win2k server. The loglevel in

error-page directive throw a java.lang.StackOverflowError

2001-04-12 Thread Stéphane BAUDET
Hello, I'm using Tomcat 3.2.1 under Windows 2000. In my web.xml descriptor, I've set up this error-page directive error-page error-code404/error-code location/404.html/location /error-page 404.html is a the root of my context. When I type an incorrect URL, I've got a

Re: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Stéphane BAUDET
What do you mean by suppress folder browsing ? How to you do this ? Hunor Nam a crit : Yep your right but anyhow I managed to solve the problem useing errorpages... if interested here is the solution...: I suppressed folder browseing and I made the error page to check the URI and

Re: Redirecting 404,500, etc.

2001-04-11 Thread Stéphane BAUDET
Hello, In your web.xml, you should add the error-page tag. For example: error-page error-code404error-code/ location/404.htmllocation/ /error-page This is well explain in the Java Servlet Specification , in the Deployment desciptor section. (see www.javasoft.com) Carlos Pita a crit :

jsp:plugin problem

2001-04-10 Thread Stéphane BAUDET
Hi, I've got a probem with the use of jsp:plugin tag within Tomcat. I want to load an applet test, which is in the package com.app.applet. My Tomcat context is named glextra. Here is the code of my JSP: jsp:plugin type="applet" code="test.class" /jsp:plugin I've got a

Re: How to get around a tricky situation.

2001-04-04 Thread Stéphane BAUDET
Hello You could also create a new "empty" context called /images with docbase properly set to the location of your images. This context will serve your images. Jacob Kjome a crit : the loading of images is a function of your browser after the page has been sent by the server to it. The

Re: How to get around a tricky situation.

2001-04-04 Thread Stéphane BAUDET
Yes, you have to modify the server.xml. I'm using this and it works fine. If somebody know how to do this within the web.xml, please let us know ! Stph Alex Colic a crit : Just so I understand, to do the below I would have to modify my server.xml file...correct? This cannot be done in my

How to use a directory outside the context

2001-04-03 Thread Stéphane BAUDET
Hello, I wonder how it is possible to configure Tomcat so I can define a context where I defined a docbase and use directories which are not sub-tree of the docbase. For example, let's assume I've install tomcat on c: and that I use the context: Context path="/admin"

static pages and directory mapping in Tomcat

2001-03-26 Thread Stéphane BAUDET
Hello, I'm revamping an ASP web server (ISS) to JSP-SERVLET web server (IIS + Tomcat). I've install the IIS-Tomcat redirector and that works fine. To isolate ASP code from JSP code, I've created two web directories: IIS part: web-asp\ web-asp\images\*.gif, *.jpeg web-asp\*.hmtl, *.asp for