Re: how to do directory listing in tomcat 5.5

2010-03-17 Thread CBy
On 17-3-2010 8:45, Pid wrote: On 17/03/2010 06:54, Brad Lajoie wrote: I've been trying for so long to get directory listing in Tomcat 5.5 to work for my website and I still can't get it to work. Magically, at one point it worked somewhat for directories with jpgs, css, js, etc files, but not

Re: I get this Error

2010-03-15 Thread CBy
Changing manger into manager might help. CBy On 15-3-2010 9:52, Karthik Nanjangude wrote: Hi SPEC JDK1.5 WINDOWS 2003 TOMCAT 5.0.26.0 Downloaded : http://tomcat.apache.org/download-60.cgi Core : ziphttp://mirrors.kahuki.com/apache/tomcat/tomcat-6/v6.0.26/bin/apache-tomcat-6.0.26

Re: Tomcat doent run on Vista

2010-03-14 Thread CBy
Might have something to do with Vista's User Access Control. Did you install in C:\Program Files? As a test, try C:\Program_Files instead. CBy On 14-3-2010 7:29, Cummins College wrote: Hi, Does tomcat have a problem running on Windows Vista? I cannot run my web application with vista as OS

Question on Executor (thread pool)

2010-03-08 Thread CBy
/shared class loader? CBy

Re: [OT] Question on Executor (thread pool)

2010-03-08 Thread CBy
with a nice example, I would be most grateful. CBy On 8-3-2010 16:27, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 CBy, On 3/8/2010 7:03 AM, CBy wrote: My web service wraps a command-line application that is rather resource demanding. To manage the maximum number

Re: [OT] Question on Executor (thread pool)

2010-03-08 Thread CBy
On 8-3-2010 17:07, Caldarale, Charles R wrote: From: CBy [mailto:tom...@byrman.demon.nl] Subject: Re: [OT] Question on Executor (thread pool) I am still curious though on when and how to use Tomcat's Executor. I someone could provide me with a nice example, I would be most grateful

Re: Configuring SSL on Tomcat 5.5.28

2010-03-08 Thread CBy
utilities with a keystore, but it has already expired (it's been 90 days). How can I create a self signed certificate that lasts longer? Use -validity numberOfDays (default 90). CBy Do I need to use something like OpenSSL? I have looked on the Tomcat documentation and spent many hours

Re: HowTo restart VHosts on 6.0.20

2010-01-14 Thread CBy-2
Alexander Diedler wrote: We want to have the possibility, to reload every VHost seperatly by using the MANAGER App in every vhost. What have we to do? You can make the manager web app available by placing an XML fragment file with just the Context element in each Conf/Catalina/[virtual

Re: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread CBy-2
markt-2 wrote: CBy-2 left out an important detail. You'll need to copy the manager directory (and all the contents) from /webapps to /webappA There are ways to organise this so you only have a single manager directory but just copying it is the quickest solution. I didn't mention

Re: AW: HowTo restart VHosts on 6.0.20

2010-01-14 Thread CBy-2
markt-2 wrote: That isn't wrong - that is by design. The links on the manager page that lists deployed applications aren't guaranteed to work since there is no guarantee that a webapp will respond to an http GET request of /contextpath. Nearly all do, but the manager is one of the

Advise on configuring SSL

2009-11-25 Thread CBy
do have administrative rights for Tomcat, but not for Apache, I was thinking of letting Tomcat handle SSL. Is that sensible or is it better to configure this with Apache in this case? CBy - To unsubscribe, e-mail: users

Re: Need some SSL Config help.

2009-07-24 Thread CBy
Josh Gooding wrote: One more thing. Here is my server.xml information that is relative: Listener className=org.apache.catalina.core.AprLifecycleListener SSLEngine=on SSLRandomSeed=builtin / Connector port=443 protocol=HTTP/1.1 SSLEnabled=true minSpareThreads=5 maxSpareThreads=75

Problem with system property

2009-07-08 Thread CBy
Hi, We have a third-party webapp that sets the following system property: System.setProperty(javax.xml.transform.TransformerFactory,net.sf.saxon.TransformerFactoryImpl); This effectively forces all other webapps to use Saxon as an XLST/XQuery processor, see:

Tomcat shutdown problem due to running threads.

2009-06-17 Thread CBy
O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging the JVM when Tomcat shuts down. My web service, however, uses a thread pool that is created via

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread CBy
Thanks for pointing me in the right direction André. A ServletContextListener fixed my problem. André Warnier wrote: CBy wrote: O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread CBy
/2009 4:33 AM, CBy wrote: O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging the JVM when Tomcat shuts down. My web service, however, uses a thread pool that is created via