iis redirecting servlet requests to tomcat but not JSP requests

2001-09-12 Thread Hughes, Tim
Hi, I have set up Tomcat on NT4.0 as a standalone and everything (servlets and jsps) work fine if I connect directly to Tomcat. I then set up IIS to forward requests exactly as described in the HowTo. The result is that when I connect to IIS with a servlet request e.g.

RE: Tomcat Logging.

2001-07-06 Thread Hughes, Tim
Hi, I am not sure about this but I think that one of the following should work: - if you just comment out the lines related to logging in conf/server.xml - or if you take out the path attribute from the logging elements in conf/server.xml then logging will be disabled.

RE: has anyone ever got the error-page feature (defined in web.xml) to work?

2001-07-05 Thread Hughes, Tim
Nachricht- Von: Hughes, Tim [mailto:[EMAIL PROTECTED]] Gesendet am: Mittwoch, 4. Juli 2001 09:39 An: '[EMAIL PROTECTED]' Betreff: RE: http errors Hi, You will find a full copy of the **default** web.xml in TOMCAT_HOME/conf/. What is the default web.xml -- Extract from the user guide (which you

RE: has anyone ever got the error-page feature (defined in web. xml) to work?

2001-07-05 Thread Hughes, Tim
) to work? We have is successfully working for catching Java Exceptions. Haven't tried HTTP Error codes, though. Randy -Original Message- From: Hughes, Tim [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 05, 2001 8:38 AM To: '[EMAIL PROTECTED]' Subject: RE: has anyone ever

RE: http errors

2001-07-04 Thread Hughes, Tim
in %TOMCAT_HOME%/conf or somewhere else? I´m using tomcat 3.2.2 and win2k, I would like any help you could provide, because I just started working with tomcat. thanks, Francisco [EMAIL PROTECTED] - Original Message - From: Hughes, Tim To: '[EMAIL

RE: http errors

2001-07-03 Thread Hughes, Tim
Hi, Using error-page elements in the web.xml, you can program web applications to handle HTTP errors and exceptions. The deployment description below makes the container send the /errors/TryAgain.html file if either a TryAgainExeption or the HttpServletResponse.SC_SERVER_UNAVAILABLE error

RE: Programmatic security with servlet mappings in tomcat

2001-07-03 Thread Hughes, Tim
Hi, Thanks for the help. Your suggestion is one way of implementing the security. The reason I suggest a controller as the first page that all requests must go through is that I was hoping that it would enable me to factor out the authentification check that you have on every page i.e. instead

RE: I need help in tomcat configuration with Oracle 8.1.7

2001-07-03 Thread Hughes, Tim
I am not sure that I understand the problem exactly but I do know that there are a number of problems that can occur with connecting to a JDBC driver, the most common of which is that classes111.zip needs to be placed in TOMCAT_HOME/lib/and renamed to classes111.jar so that Tomcat can

RE: jdbc.jar for BSDI

2001-07-02 Thread Hughes, Tim
Hi, I don't know anything about BSDI but this page looks like it may be able to help: http://www.ovrimos.gr/ under downloads. Another option is to ask whoever supplied your BSDI server where you can get a JDBC driver for their product.

RE:TOMCAT LOG FILE BEHAVIOUR

2001-07-02 Thread Hughes, Tim
Hi, (Tomcat 3.2.1, Windows 2000, JDK 1.3.1) Does anyone know what the behaviour of log files is in Tomcat? I have noticed that each time that Tomcat is restarted, the log files get wiped clean. What happens if I have Tomcat running as a NT service? Do the files get wiped after a certain time

RE: Programmatic security with servlet mappings in tomcat

2001-07-02 Thread Hughes, Tim
Hi, (Tomcat 3.2.1, windows 2000, JdK1.3.1) I want to use a Request Controller architecture for a webapp (i.e. one JSP that receives all requests and then dispatches the requests to other JSPs for servicing of the request). Of course I want to ensure that these servicing JSPs are not accessible

RE: Opening up JSP from another window

2001-07-02 Thread Hughes, Tim
Hi, I assume you mean that you have a JSP which generates an HTML page and from this page you want to have a link that links to a second JSP the results of which should be displayed in their own window. Then the link that you should include in your first JSP should look like this: a

RE: Opening up JSP from another window

2001-07-02 Thread Hughes, Tim
Tel: +47 55 90 66 24 / +47 48 10 06 38 Email: [EMAIL PROTECTED] Web: http://no.cgey.com -Original Message- From: Hughes, Tim [mailto:[EMAIL PROTECTED]] Sent: 2. juli 2001 15:39 To: '[EMAIL PROTECTED]' Subject: RE: Opening up

RE: Programmatic security with servlet mappings in tomcat

2001-07-02 Thread Hughes, Tim
Hi, (Tomcat 3.2.1, windows 2000, JdK1.3.1) I want to use a Request Controller architecture for a webapp (i.e. one JSP that receives all requests and then dispatches the requests to other JSPs for servicing of the request). Of course I want to ensure that these servicing JSPs are not accessible

RE: tomcat log file behaviour

2001-06-29 Thread Hughes, Tim
Hi, (Tomcat 3.2.1, Windows 2000, JDK 1.3.1) Does anyone know what the behaviour of log files is in Tomcat? I have noticed that each time that Tomcat is restarted, the log files get wiped clean. What happens if I have Tomcat running as a NT service? Do the files get wiped after a certain time

RE: jdbc.jar

2001-06-29 Thread Hughes, Tim
Here it comes (where one would expect it to be) http://java.sun.com/products/jdbc/download.html Tim Hughes -Original Message- From: Clement [mailto:[EMAIL PROTECTED]]

RE: Advice: SSLifying a Tomcat+IIS setup

2001-06-18 Thread Hughes, Tim
Hello, I first setup Tomcat as a standalone running as an NT service. I have also now plugged Tomcat into an IIS server so that I can either use Tomcat as a standalone or query IIS which then forwards the request to Tomcat. Everything works hunkydory and I think Tomcat is great. So clean! I now

RE: I need an advice to make Tomcat a NT service

2001-06-07 Thread Hughes, Tim
I just spent most of yesterday trying to set Tomcat up as a service that wouldn't die when you log off. The solution I found (with the help of others on the list) was to use JDK1.3.1 but you have to make sure that you read this document: http://java.sun.com/j2se/1.3/relnotes.html There it is