SSL with Tomcat standalone on WIN98

2002-11-01 Thread George McKinney
to capture it. Any suggestions? Thanks, George McKinney [EMAIL PROTECTED] = An experienced developer knows that it is seldom wise to prefix a demonstration with anything more predictive than Watch this - unless there is a good test suite in place

More Re: SSL with Tomcat standalone on WIN98

2002-11-01 Thread George McKinney
) . Where might that be - one of the container .jars? I thought Tomcat picked them up as necessary? - Original Message - From: George McKinney [EMAIL PROTECTED] To: Tomcat User [EMAIL PROTECTED] Sent: Friday, November 01, 2002 8:28 PM Subject: SSL with Tomcat standalone on WIN98 I'm trying

Is Tomcat vulnerable to this exploit?

2002-07-05 Thread George McKinney
On jGuru, I saw mention of this vulnerability of some webapp containers: http://www.westpoint.ltd.uk/advisories/wp-02-0002.txt It doesn't mention any Tomcat versions. Can anyone tell me if Tomcat is NOT vulnerable to this one? Thanks, George McKinney -- To unsubscribe, e-mail: mailto

RE: Properties file declaration

2002-02-26 Thread George McKinney
-Original Message- From: Ursula Pieper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 26, 2002 2:06 PM To: Tomcat Users List Subject: Re: Properties file declaration Thanks Sriram for the suggestion of loading the properties file from within the servlet. Unfortunately,

RE: Working Directory

2002-04-03 Thread George McKinney
-Original Message- From: Sanjay Bahal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 2:28 PM To: Tomcat Users List Subject: RE: Working Directory Carig, I tried this it does not work. I can't get the stream. I have a property file in the classes directory- where I

RE: Improper timing using Calendar class (JSP/servlet)

2002-06-05 Thread George McKinney
). If startTime and endTime are member variables, and no synchronization in sight, I think that the various invocations of the servlet are going to tromp all over each other's values. If they are local (inside the % ... % block) that won't be a problem. George McKinney -- To unsubscribe, e-mail

.java being taken for a .jsp ???

2001-04-03 Thread George McKInney
(Compiled Code) at org.apache.tomcat.service.connector.Ajp12ConnectionHandler.processConnection (Compiled Code) at org.apache.tomcat.service.TcpConnectionThread.run(Compiled Code) at java.lang.Thread.run(Compiled Code) Thanks, George McKinney, Developer Tantalus Communications Inc

RE: .java being taken for a .jsp ??? - Thanks!

2001-04-04 Thread George McKInney
hasn't shown up. Thanks again, George McKinney, Developer Tantalus Communications Inc. 500-1122 Mainland Street Vancouver, BC, Canada V6B 5L1 [EMAIL PROTECTED] Direct 604.726.6753 Main604.609.0700 Fax 604.609.0705 "The Oracle Experts" www.tantalus.com

RE: classpath

2001-05-15 Thread George McKInney
... if the classes are ones that you want EVERYONE using the jvm to use, install them; otherwise, keep them with their own app. Please correct me if I have misstated the situation. George McKinney, Developer

RE: ClassPath problem

2001-05-16 Thread George McKInney
/versioning.html. /snip I haven't heard anything about Tomcat 4.0 providing this service, though, and if it doesn't, it appears that the only solutions are to put it in your WEB-INF/lib or to use the Java2 Installed Extensions facility. Good luck, and let us know what happens. George McKinney, Developer

RE: Order of libraries in CLASSPATH question?

2001-06-14 Thread George McKInney
will be hosting more than one webapp, I strongly suggest that you put the libraries for each webapp in its own WEB-INF/lib. Clashing jars do not make pretty sounds. Thanks in advance, Brett George McKinney, Developer Tantalus Communications Inc. 500-1122 Mainland Street Vancouver, BC, Canada V6B 5L1

JDBC Realm on Tomcat 3.2.2

2001-07-13 Thread George McKInney
After adding the RequestInterceptor className=org.apache.tomcat.request.JDBCRealm.. in server.xml, what's needed to be in web.xml file. Thanks, George McKinney, Developer Tantalus Communications Inc. 500-1122 Mainland Street Vancouver, BC, Canada V6B 5L1 [EMAIL PROTECTED] Direct

RE: Kawa problem

2001-02-06 Thread George McKInney
tream.open(Native Method) at java.io.FileInputStream.init(FileInputStream.java:64) at /snip George McKinney, Developertantalus communications inc.500-1122 Mainland StreetVancouver, BC, Canada V6B 5L1[EMAIL PROTECTED]Direct 604.726.6753Main 604.609.0700Fax 604.609.0705www.tantalus.com"

RE: Doug McNamara

2001-02-07 Thread George McKInney
(AFAIK), properties files in /classes will override those in /lib jar files. George McKinney, Developer tantalus communications inc. 500-1122 Mainland Street Vancouver, BC, Canada V6B 5L1 [EMAIL PROTECTED] Direct 604.726.6753 Main604.609.0700 Fax 604.609.0705 www.tantalus.com "

RE: Question about sessions

2001-02-16 Thread George McKInney
dy exists? I don't think so, IF the client hasn't yet seen the session. I think it only returns false if the request includes the session ID, which it won't until there has been a round-trip back to the client. George McKinney, Developer tantalus communications inc. 500-1122 Mainland Street Vancouver

RE: oracle JDBC doesn't work

2001-03-23 Thread George McKInney
ote the '@' between "thin:" and "storedb" (and the colon is necessary) Our setup uses (though the format above may work for you): "jdbc:oracle:thin:@abc.def.com:1521:SID" where: abc.def.com is the machine name 1521 is the port to connect to SID is the database identifier. Ho

RE: classes in zip files

2000-12-22 Thread George McKInney
hand I may have customized it in the foggy past :-). The tomcat.sh that is in TOMCAT_HOME/bin (and which I haven't customized) has: snip CLASSPATH=. for i in ${TOMCAT_HOME}/lib/* ; do CLASSPATH=${CLASSPATH}:$i done /snip which appears to add EVERYTHING in that directory. George McKinney,

expanding .war file

2001-01-08 Thread George McKInney
issing some configuration incantation? I'm running Tomcat 3.1. Thanks George McKinney - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: Starting with JSP and Beans. Please help

2001-01-12 Thread George McKInney
remove the file, or make sure it appears in the correct subdirectory of the class path. leads me to think that the .java source for IndustryGroupData doesn't include a package irina; as the first executable line of the file. George McKinney, Developer tantalus communications inc. 500-1122 Mainland

load balancing with in-process workers in 3.3.1

2002-12-09 Thread George McKinney
would include something similar to: JkMount /servlet/* loadbalancer and I would setup workers.properties with (in addition to the inprocess specific properties): worker.list=loadbalancer ... worker.loadbalancer.balanced_workers=inprocess1, inprocess2 Thanks, George McKinney [EMAIL PROTECTED

Re: load balancing with in-process workers in 3.3.1

2002-12-09 Thread George McKinney
: George McKinney [EMAIL PROTECTED] To: Tomcat User [EMAIL PROTECTED] Sent: Monday, December 09, 2002 7:46 PM Subject: load balancing with in-process workers in 3.3.1 Under Tomcat 3.3.1 on linux, is it possible/reasonable to have multiple in-process workers and use a loadbalancing worker with them