Re: Tomcat Maven and Axis 1.5.1 problem

2010-11-01 Thread Ron McNulty
A little googling produces this result: http://www.jarvana.com/jarvana/view/org/apache/axis2/axis2-kernel/1.1.1/axis2-kernel-1.1.1.jar!/org/apache/axis2/transport/local/LocalTransportSender.class?classDetails=ok I suspect that your set of Axis jars are from different versions of Axis - maybe

RE: Tomcat Maven and Axis 1.5.1 problem

2010-11-01 Thread Karthik Nanjangude
Hi I do not think so to use MAVEN *.jar in Tomcat Lib... I presume these are for used for Deployment / Undeployment of AXIS application mounted on Tomcat and NOT for Run time With regards karthik maven-artifact-2.0.8.jar maven-artifact-manager-2.0.7.jar maven-core-2.0.9.jar

[ANN] Apache Tomcat Connectors 1.2.31 released

2010-11-01 Thread Mladen Turk
The Apache Tomcat team announces the immediate availability of Apache Tomcat Connectors 1.2.31 stable. Apache Tomcat Connectors 1.2.31 concentrates mainly on bug fixes. Please refer to the change log for the list of changes: http://tomcat.apache.org/connectors-doc/miscellaneous/changelog.html

Re: running tomcat6 under a different user than root (debian)

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mark, On 10/29/2010 10:04 AM, Mark Thomas wrote: On 29/10/2010 14:53, Ronald Klop wrote: If you have a webapp where users log in you can use there login/password to login on the database. A little bit inconvenient for the DBA but you don't have

Re: running tomcat6 under a different user than root (debian)

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Darryl, On 10/29/2010 9:19 AM, Darryl Lewis wrote: Are you serious? Why do we bother with SSL then? Lets just send everything in clear text... You might be misunderstanding the way that SSL works if you think these two are comparable. A simple

Re: BackupManager vs DeltaManager

2010-11-01 Thread Ossi
On Fri, Oct 29, 2010 at 1:51 PM, Pid p...@pidster.com wrote: On 29/10/2010 11:17, Ossi wrote: Hi! Should BackupManager work well with any number of nodes? Yes. And with large clusters it should work even better than DeltaManager? Yes. *Should*. We have large production clusters

Re: running tomcat6 under a different user than root (debian)

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Daryl, On 10/30/2010 5:11 PM, Darryl Lewis wrote: That's why we encrypt passwords in unix, or haven't you looked at etc/passwd lately? Are you going to tell me that is complete nonsense? The credentialing mechanism is the keyboard and the user's

Re: RV: Session Context variables architecture problem

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pid, On 10/28/2010 5:36 PM, Pid wrote: I would suggest that you created a class which periodically updated all the values by selecting the data in the DB and storing the result in the Context. Implementing a ServletContextListener will give you

Re: tomcat6.0.29 on debian lenny

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christoph, On 10/29/2010 4:51 AM, Christoph Kukulies wrote: I ran a tomcat 5.5 on an older debian formerly and after an upgrade to 5.0.6 (debian lenny) Wait, what? You upgraded from 5.5 to 5.0? That sounds like a downgrade to me. Anyway, to come

Re: Security of WEB-INF content

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter, On 10/29/2010 7:57 AM, Mark Thomas wrote: On 29/10/2010 12:30, Haledor wow wrote: Hi, I have read in various forums that there are situations where the content of WEB-INF can be accessed. Some people say that it is good practice to hide

Re: tomcat6.0.29 on debian lenny

2010-11-01 Thread David kerber
On 11/1/2010 11:05 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christoph, On 10/29/2010 4:51 AM, Christoph Kukulies wrote: I ran a tomcat 5.5 on an older debian formerly and after an upgrade to 5.0.6 (debian lenny) Wait, what? You upgraded from 5.5 to 5.0?

Tomcat 7 LifecycleBase.init

2010-11-01 Thread dB .
I have some unit test code that mocks a lot of Tomcat classes so that I can test a Tomcat Valve (code in http://waffle.codeplex.com). Switching to Tomcat 7 is giving me some grief. I used to be able to do this: SimpleContext ctx = new SimpleContext(); // my class Realm

RE: Tomcat 7 LifecycleBase.init

2010-11-01 Thread dB .
Sorry for the noise. Once I got the right source code, it was pretty easy to track under a debugger. I needed to implement Context.getName(), getPath, an Engine and a Pipeline. _authenticator = new NegotiateAuthenticator(); SimpleContext ctx = new

Access log timing details

2010-11-01 Thread Alex Quezada
Hello, I'm trying to debug some performance issues, and see discrepancies from the time reported by HttpClient and Tomcat's access log. This is for post requests (I'm running Tomcat 6.0.18 just in case). Does the time reported in the access log include the entire session, including the time it

Re: Tomcat 7 LifecycleBase.init

2010-11-01 Thread Mark Thomas
On 01/11/2010 12:34, dB. wrote: Sorry for the noise. Once I got the right source code, it was pretty easy to track under a debugger. I needed to implement Context.getName(), getPath, an Engine and a Pipeline. _authenticator = new NegotiateAuthenticator();

Java update from Apple broke Tomcat

2010-11-01 Thread Rob Tanner
Hi, While I run production on Linux servers, I do my development on my iMac. Last week, I ran the most recent Apple Java upgrade , and now Tomcat (which is a critical part of my development environment) won't start up. I get the error: Nov 1, 2010 8:58:54 AM

Re: Access log timing details

2010-11-01 Thread Tim Funk
Its the time the Valve starts processing until the valve has finished processing. Vague heh? So this means that Tomcat will need to do the following first before timing starts - Accept the connection - Receive the 1st line of the request, and probably the headers such as Host - From there -

Re: Java update from Apple broke Tomcat

2010-11-01 Thread Thad Humphries
There's a Mac mini in our QA shop that is running this version of Java with Tomcat 6.0.26 and testing my app without a problem. On Mon, Nov 1, 2010 at 1:55 PM, Rob Tanner rtan...@linfield.edu wrote: Hi, While I run production on Linux servers, I do my development on my iMac. Last week, I ran

Re: Java update from Apple broke Tomcat

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rob, On 11/1/2010 1:55 PM, Rob Tanner wrote: Nov 1, 2010 8:58:54 AM org.apache.catalina.startup.Bootstrap initClassLoaders SEVERE: Class loader creation threw exception java.lang.NoSuchFieldError: IS_DIR at

Re: Access log timing details

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alex, On 11/1/2010 12:48 PM, Alex Quezada wrote: I'm trying to debug some performance issues, and see discrepancies from the time reported by HttpClient and Tomcat's access log. This is for post requests (I'm running Tomcat 6.0.18 just in case).

Re: tomcat6.0.29 on debian lenny

2010-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, On 11/1/2010 11:16 AM, David kerber wrote: On 11/1/2010 11:05 AM, Christopher Schultz wrote: Christoph, On 10/29/2010 4:51 AM, Christoph Kukulies wrote: I ran a tomcat 5.5 on an older debian formerly and after an upgrade to 5.0.6

Re: Java update from Apple broke Tomcat

2010-11-01 Thread Rob Tanner
Chris, Normally, I let Eclipse start and stop Tomcat for me. It only knows about 6.0.18 and that's the only version I have on my workstation until this morning when I downloaded 6.0.29 to see if there was any possibility that I could have corrupted my existing server. I left 6.0.29 with its

RE: Java update from Apple broke Tomcat

2010-11-01 Thread Caldarale, Charles R
From: Rob Tanner [mailto:rtan...@linfield.edu] Subject: Re: Java update from Apple broke Tomcat I tried starting both 6.0.18 and 6.0.29 (not at the same time of course) simply via the bin/catalina.sh shell script and both version fail identically with the same IS_DIR exception Can you tell

ISAPI Redirector Work-Flow

2010-11-01 Thread Richard G Curry
I am trying to understand how the ISAPI Redirector functions at an overview level but deeper than this: The request comes into IIS where the ISAPI Redirector filter sends the servlet and JSP requests to the Tomcat server. I know the redirector works with AJP13 to redirect requests to the Tomcat

Re: Java update from Apple broke Tomcat

2010-11-01 Thread Pid
On 01/11/2010 17:55, Rob Tanner wrote: Hi, While I run production on Linux servers, I do my development on my iMac. Last week, I ran the most recent Apple Java upgrade , and now Tomcat (which is a critical part of my development environment) won't start up. I get the error: Nov 1, 2010

Re: ISAPI Redirector Work-Flow

2010-11-01 Thread Pid
On 01/11/2010 21:48, Richard G Curry wrote: I am trying to understand how the ISAPI Redirector functions at an overview level but deeper than this: The request comes into IIS where the ISAPI Redirector filter sends the servlet and JSP requests to the Tomcat server. I know the redirector works

RE: Java update from Apple broke Tomcat

2010-11-01 Thread Richard G Curry
Did you check you classpath? ___ «¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤» ___ Rick Curry Common

RE: ISAPI Redirector Work-Flow

2010-11-01 Thread Richard G Curry
Thank you for this, I appreciate your time. ___ «¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤»§«¤»¥«¤» ___ Rick