RE: Tomcat SSL stops working after an undetermined amount of time

2021-05-24 Thread Ed Rouse
This works for me. In server.xml: From: Ezsra McDonald Sent: Monday, May 24, 2021 4:10 PM To: Tomcat Users List Subject: Re: Tomcat SSL stops working after an undetermined amount of time [External email: Use caution! Do not open attachments or click

Problrm with resources added using DirResourceSet

2015-05-20 Thread Ed Rouse
Server version: Apache Tomcat/8.0.14 Server built: Sep 24 2014 09:01:51 Server number: 8.0.14.0 OS Name:Linux OS Version: 3.8.0-29-generic Architecture: amd64 JVM Version:1.7.0_55-b14 JVM Vendor: Oracle Corporation I have implemented a custom WebappClassLoaderBase and

RE: [Tomcat8] What happened to WebappLoader.addRepository()?

2015-03-17 Thread Ed Rouse
-Original Message- From: Pilkington, Simon [mailto:simo...@amazon.com] Sent: Tuesday, March 17, 2015 12:45 PM To: users@tomcat.apache.org Subject: [Tomcat8] What happened to WebappLoader.addRepository()? Hey tomcat users, The javadoc for WebappLoader still tells me to use

RE: DirResourceSet

2014-11-18 Thread Ed Rouse
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Tuesday, November 18, 2014 5:59 AM To: Tomcat Users List Subject: Re: DirResourceSet On 17/11/2014 22:52, Ed Rouse wrote: I have 2 different issues setting up a DirResourceSet. I have an external war file I

RE: Remote resources

2014-11-18 Thread Ed Rouse
-Original Message- From: phi...@free.fr [mailto:phi...@free.fr] Sent: Tuesday, November 18, 2014 10:02 AM To: users@tomcat.apache.org Subject: Remote resources Hello, is there a way to access the contents of a directory (e.g., images) on a remote [Windows] network drive,

DirResourceSet

2014-11-17 Thread Ed Rouse
I have 2 different issues setting up a DirResourceSet. I have an external war file I am trying to merge into the Root of my application. I have a custom root that extends StandardRoot. 1. DirResourceSet drs = new DirResourceSet(wsRoot, /WEB-INF/classes/, possible.getAbsolutePath() +

RE: DirResourceSet

2014-11-17 Thread Ed Rouse
-Original Message- From: Ed Rouse [mailto:ero...@milner.com] Sent: Monday, November 17, 2014 4:53 PM To: Tomcat Users List Subject: DirResourceSet I have 2 different issues setting up a DirResourceSet. I have an external war file I am trying to merge into the Root of my

RE: DirResourceSet

2014-11-17 Thread Ed Rouse
I still have some confusion about the DirResourceSet. When I add the /WEB-INF/classes it looks through recursively and finds all of the class files. I know because one of them adds an additional link to a menu bar and it's there. But when I add a regular directory, say /report, it only adds the

custom classloader missing root

2014-11-11 Thread Ed Rouse
I am trying to convert a custom class loader from version 5.5 to version 8.0.11, running under ubuntu. I have the following line in my context.xml file. Loader loaderClass=com.comsquared.idw.catalina.ext.IDWMClassLoader delegate=false / I have tried the delegate as both true

RE: custom classloader missing root

2014-11-11 Thread Ed Rouse
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Tuesday, November 11, 2014 11:49 AM To: Tomcat Users List Subject: Re: custom classloader missing root On 11/11/2014 15:34, Ed Rouse wrote: I am trying to convert a custom class loader from version 5.5 to version

RE: custom classloader missing root

2014-11-11 Thread Ed Rouse
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Tuesday, November 11, 2014 12:14 PM To: Tomcat Users List Subject: Re: custom classloader missing root On 11/11/2014 17:01, Ed Rouse wrote: -Original Message- From: Mark Thomas [mailto:ma

tomcat 8 context.xml problems

2014-11-07 Thread Ed Rouse
Migrating to 8.0 and am having trouble with a custom Resource loader. Below is my context.xml file: Context Resources className=com.comsquared.idw.catalina.ext.MyCustomStandardRoot / Loader loaderClass=com.comsquared.idw.catalina.ext.MyClassLoader delegate=true