RE: Very basic problem

2002-01-02 Thread Edwards, Peter
Also, I think you are confusing CLASSPATH with PATH. PATH is used by DOS to determine where the executables are e.g. java.exe CLASSPATH is used by Java to determine where class files (or jar files) are In your case the CLASSPATH should only contain the directory containing your compiled

Tomcat4 installer problem

2001-10-01 Thread Edwards, Peter
I think there is a small problem with the windows installer failing to re-install all the web applications. After my initial installation I made a mistake and accidentally deleted the webapps folder. (Stupid I know!) I then re-ran the installer and it offered to update my current installation.

Authentication of passwords

2001-03-26 Thread Edwards, Peter
I have set up a JDBCRealm in Tomcat 4 (on Win2000 using remote Oracle 8i database). Initially I had the known problem of "Realm already started" but when I came in this morning the problem had gone away. Can anyone tell me what the options are for the Digest element in server.xml? I'm new to

RE: Multiple files upload

2001-03-29 Thread Edwards, Peter
Lakshmi If you are using an HTML form to upload the file then you have some restrictions. The file input element lets you upload one file only and you cannot script this element (i.e. you cannot dynamically set the value of the field for security reasons.) This led us to writing an applet but

RE: How to use SVG-Files?

2001-04-05 Thread Edwards, Peter
Add the following to your web.xml file: !-- Add SVG as a mime type so that browsers can use the correct plug-in -- mime-mapping extension svg /extension mime-type image/svg-xml /mime-type /mime-mapping mime-mapping

Authentication problem with servlets opening connection to other servlets

2001-04-23 Thread Edwards, Peter
I am using the MemoryRealm to protect my web application. I have a servlet that constructs a URL for another servlet in the same web application but I find that when it opens a connection to the other servlet, the authentication is not passed on and so it fails to open the stream. The only error

RE: conflict between jaxp.jar, parser.jar (tomcat lib) and xalan.jar, xerces.jar?

2001-07-04 Thread Edwards, Peter
Markus Are you suggesting that the jars are loaded in alphabetical order? I would have said you should either move parser.jar to the end of the class path or remove it entirely since xerces.jar contains the necessary jaxp interfaces. Tomcat 3.2 does not access the parser directly but

RE: conflict between jaxp.jar, parser.jar (tomcat lib) and xalan.jar, xerces.jar?

2001-07-04 Thread Edwards, Peter
details. -markus - Original Message - From: Edwards, Peter To: '[EMAIL PROTECTED]' Sent: Wednesday, July 04, 2001 10:14 AM Subject: RE: conflict between jaxp.jar, parser.jar (tomcat lib) and xalan.jar, xerces.jar? Markus

Xalan and Tomcat - installation and performance issues

2001-02-16 Thread Edwards, Peter
I hope no-one minds me cross-posting this but it covers all areas. I have had success using Xalan2 in a servlet on Tomcat3.2 and also found some major performance problems. I thought it would be useful for people to be aware of these problems and I would value any comments/suggestions. First, I