Re: Setup - Samples not working

2002-08-14 Thread Peter Davison
. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Peter Davison [EMAIL PROTECTED] A watched clock never boils. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: NotSerializableException

2002-08-20 Thread Peter Davison
] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Peter Davison [EMAIL PROTECTED] When I hear a man applauded by the mob I always feel a pang of pity for him. All he has to do to be hissed is to live long enough. -- H.L. Mencken, Minority Report -- To unsubscribe, e-mail

Re: What does IMHO mean?

2002-04-14 Thread Peter Davison
] -- Peter Davison [EMAIL PROTECTED] In every job that must be done, there is an element of fun. Find the fun and snap! The job's a game. And every task you undertake, becomes a piece of cake, a lark, a spree; it's very clear to see. -- Mary Poppins -- To unsubscribe

Re: IllegalAccessError when run from Tomcat

2002-04-18 Thread Peter Davison
know. When I move the body of this servlet to a stand alone application it runs fine - no exceptions. Is there some strange JVM security manager here that is different from running as a real application? Anyone have an idea what is going on? -- Peter Davison [EMAIL PROTECTED] Mary Tyler

Re: Problems using a tomcat 3.3 .war file with tomcat 4.0.3

2002-05-27 Thread Peter Davison
, with the as the final character on the line, in column 10 (ie. there is no column 12 on that line). All ideas, hints, etc. appreciated! Thanx! - Steinar -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Peter Davison [EMAIL

Re: Can I configure Tomcat to accept HTTP requests from remote machines?

2001-09-13 Thread Peter Davison
Hi Ray. localhost is just that - it is accessible only to the local machine. In order to make your server accessible to other machines you need to specify it's IP address in the server.xml file. In the connectors section of server.xml you need to replace 127.0.0.1 with the IP of your machine.

Re: CVS

2001-11-20 Thread Peter Davison
Hi Laurent. I think you are on the right track. Here's how we used CVS in my last work environment which worked great - IMHO. One central CVS server. Everytime our CM person performed a successful build the project's files would be tagged with that builds ID. This way we could always

Re: CVS

2001-11-20 Thread Peter Davison
Consider yourself flamed. :-) My experience with VSS was that it did not work. We actually had a person in one of our offices who was responsible for maintaining VSS - this wasn't their only job of course, but it consumed a great deal of their time. Our team was working on a separate

Re: RV: TOMCAT JSP EXECUTION

2001-03-29 Thread Peter Davison
You need to include "tools.jar" in your classpath. The java compiler "sun.tools.javac.Main" is included in that jar file which is part of the JDK, not the JRE. Hope that helps. Pete Davison On Thu, 29 Mar 2001 14:00:27 +0200 Sierras [EMAIL PROTECTED] wrote: -Mensaje original-

Re: Java Update on Linux

2001-04-12 Thread Peter Davison
Is there actually a JDK 1.3.1 version or are you referring to the JDK 1.3.0_02 release? By the way no, I haven't tried it (regardless of what the version number is.) We are currently using 1.3.0. Pete. On Thu, 12 Apr 2001 08:26:59 -0700 Hunter Hillegas [EMAIL PROTECTED] wrote: Anyone tried

Re: Java Update on Linux

2001-04-12 Thread Peter Davison
Never mind. I found the link. (It pays to read doesn't it) ;-). P. On Thu, 12 Apr 2001 13:28:52 -0400 Peter Davison [EMAIL PROTECTED] wrote: Is there actually a JDK 1.3.1 version or are you referring to the JDK 1.3.0_02 release? By the way no, I haven't tried it (regardless of what

Re: Why Use apache

2001-05-02 Thread Peter Davison
In a word: speed. Tomcat is a java application, which runs in a JVM and because of this it runs fairly slowly. Apache is (AFAIK) written in C and runs native, and therefore is a lot faster. P. On Wed, 2 May 2001 09:48:24 -0500 Skinner, Dallas M [EMAIL PROTECTED] wrote: RPD Excuse me if this

Re: JSP files not working after upgrade

2001-06-06 Thread Peter Davison
There is, from what I understand, a known issue surrounding, Redhat 7.1 and some Java VMs. I know this affects Sun's JVM. I can't remember where I saw this fix (I believe it was on the javasoft site - probably in the bug list), but what you need to do to get Sun's java working on RedHat 7.1

Re: Tomcat won't start with j2sdk 1.3.1 Linux

2001-06-27 Thread Peter Davison
We've been using Sun's JDK 1.3.1 on Linux for a while now. Currently we use Tomcat 3.2.1 and xerces version 1.3.0. It seemed to work fine on RedHat 6.1 but on 7.1 there was a link that missing. I think I experienced the same seg fault issue that is referred to below. If this is the problem it

Re: sun/tools/javac/Main?

2001-06-27 Thread Peter Davison
You need to include tools.jar in your classpath (tools.jar contains the java compiler - javac - required to compile JSPs.). You should find the jar file in the lib directory where you installed your JDK. P. Thus spake Guoben Li [EMAIL PROTECTED] on Wed, 27 Jun 2001 16:46:06 -0700 (PDT): GL

Re: FIRST POST - Servlet installation problem

2001-06-27 Thread Peter Davison
Hi Clifford. Note the lack of :8080 in the URL you mention. Try this: http://localhost:8080/servlet/myservlet and see if that works any better. P. CH I'm using the url: http://localhost/servlet/myservlet CH

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Peter Davison
There's another reason for this and it has to do with the java.security.SecureRandom class. From what I can tell, tomcat uses this class to generate a seed value for the session ID. The first request for a SecureRandom value (eg. new SecureRandom().nextLong()) can take many, many seconds to

Re: Servlet File upload Oreily MultipartParser problems

2001-07-07 Thread Peter Davison
I've got it to work on Linux but only using Tomcat stand-alone, not with apache. If I understand correctly, you are getting the input stream from the request directly - req.getInputStream(). My understanding on how the MultipartParser works is that you instantiate a MultipartParser giving it

Re: Multiple servlets using same initParameters

2001-08-14 Thread Peter Davison
How about this: Set up your init params for one of your servlets. Make sure that this servlet get's pre-loaded first before the other servlets. Have the init() method of that servlet store all the parameters as System properties and let the other servlets retrieve the parameters as System

Re: war file deployment problem

2002-09-06 Thread Peter Davison
] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Peter Davison [EMAIL PROTECTED] ...the increased productivity fostered by a friendly environment and quality tools is essential to meet ever increasing demands for software. -- M. D. McIlroy, E. N. Pinson and B. A. Tague

Re: Un-tarring jakarta-tomcat-4.0.4.tar.gz

2002-09-18 Thread Peter Davison
I may be doing wrong. Thanks, Amit -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- Peter Davison [EMAIL PROTECTED] What did you bring that book I didn't want to be read to out of about Down Under up

Re: emergency - need to get into admin app

2004-04-19 Thread Peter Davison
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Peter Davison [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Tomcat-Eclipse question

2003-12-03 Thread Peter Davison
] For additional commands, e-mail: [EMAIL PROTECTED] -- Peter Davison [EMAIL PROTECTED] h: 416 699 2964 c: 416 566 8461 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: filter question

2005-02-23 Thread Peter Davison
initialized); } public HelloWorldFilter() { } private FilterConfig filterConfig; } Thanks, Scott -- Peter Davison _/_/_/ _/_/_/ _/_/_/ e: [EMAIL PROTECTED] _/ _/ _/ _/ _/ _/ w: http://rpdavison.ca _/_/_/ _/_/_/ _/ _/ c: 647 883