RE: Packing web application

2005-01-25 Thread Donie Kelly
Try jar cvf project.war * assuming all your directories are clean and ready for packaging. Donie -Original Message- From: micky none [mailto:[EMAIL PROTECTED] Sent: 25 January 2005 15:17 To: Tomcat Users List Subject: Re: Packing web application Hi Friends, I am still waiting for

RE: Problem with logging in Eclipse

2004-10-29 Thread Donie Kelly
Anybody else have this problem??? Thanks Donie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: 28 October 2004 11:12 To: Tomcat Users List Subject: RE: Problem with logging in Eclipse Hi guys I have the same problem and it's driving me nuts. I have a run

RE: Problem with logging in Eclipse

2004-10-28 Thread Donie Kelly
Hi guys I have the same problem and it's driving me nuts. I have a run configuration in Eclipse 3.0 for tomcat 4.1.18 and I call bootstrap.jar directly within eclipse to start tomcat. The only jars I put in the run configuration class path are the tomcat ones. This starts tomcat as it would be

RE: Filter question in 4.1.18, can my filter get unchunked and un zipped requests?

2004-10-22 Thread Donie Kelly
: Filter question in 4.1.18, can my filter get unchunked and unzipped requests? Donie Kelly [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all I've been reading up on filters to see if I can find a solution to an annoying problem. I can't find it so I'm looking here. I have

Filter question in 4.1.18, can my filter get unchunked and unzipp ed requests?

2004-10-21 Thread Donie Kelly
Hi all I've been reading up on filters to see if I can find a solution to an annoying problem. I can't find it so I'm looking here. I have this http filter that messes with the http request and response before it enters and leaves tomcat. The problem is that this filter works at a fairly

Session handling on machine behind a hardware load balancer

2004-10-01 Thread Donie Kelly
Hi all Just wondering how easy it is to use sessions on tomcat (with struts) when the machines are behind a hardware load balancer. Can somebody point me at some relevant documentation? Im searching with google but havent found anything too helpful yet Thanks Donie

Clustered webapp that updates LDAP???

2004-10-01 Thread Donie Kelly
Hi all I need to create a webapp which will be running on multiple machines but they all get work which requires updates to an LDAP server. I need to make sure that each webapp handles just one transaction each so that they do stomp over each others changes. Im thinking of allowing

RE: Session handling on machine behind a hardware load balancer

2004-10-01 Thread Donie Kelly
://jakarta.apache.org/tomcat/tomcat-5.0-doc/cluster-howto.html - Original Message - From: Donie Kelly To: Tomcat Users List (E-mail) Sent: Friday, October 01, 2004 9:40 AM Subject: Session handling on machine behind a hardware load balancer Hi all Just wondering how

RE: unpackWARs and autoDeploy

2004-08-23 Thread Donie Kelly
How then does it do it when you set unpackWARs=false? It doesn't do it at all. You have to do it manually... Donie -Original Message- From: Anthony Colebourne [mailto:[EMAIL PROTECTED] Sent: 23 August 2004 10:58 To: [EMAIL PROTECTED] Subject: unpackWARs and autoDeploy Hi, How does

RE: Service startup problems under Win XP

2004-08-16 Thread Donie Kelly
Try starting it from the command line and look for the erros messages. There is probably a good reason why it won't start. The logs are in the $TOMCAT_HOME/logs dir Donie -Original Message- From: David Fox [mailto:[EMAIL PROTECTED] Sent: 16 August 2004 14:48 To: [EMAIL PROTECTED]

Accept Headers

2004-07-08 Thread Donie Kelly
Hi all Using Tomcat 4.1.18 on Solaris 8. Send a POST to tomcat with no Accept header and the content type returned by the application is application/vnd.wap.mms-message Now tomcat generates a HTTP 406 response to this case. Is this correct? From the HTTP specification it says the

RE: how can I change a variable on the fly with shutting down tom cat

2004-01-29 Thread Donie Kelly
Create a properties file and use the Properties class to load the file at regular intervals by running it in a thread. You might want to store the properties object in a singleton so that you can access it throughout your application. Donie -Original Message- From: tom ly [mailto:[EMAIL

RE: Stop displaying version info

2004-01-22 Thread Donie Kelly
First thing you can do is put in a custom 404 error page. See the archives or check the docs. It's easy to do. Second you can override the server header normally sent by tomcat by adding this line BEFORE any servlet output has been done. Hope that helps. Donie public void doGet

RE: default directory for files in tomcat

2004-01-22 Thread Donie Kelly
In the Servlet init() method you can call a method called getRealPath() This will return the name of the directory where your webapp is deployed. You may need to store this is a system property or a static classs for future use as it's only availalble on startup. Donie -Original

RE: Running multiple JVMs

2004-01-20 Thread Donie Kelly
-Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: Tuesday, 20 January 2004 3:03 AM To: 'Tomcat Users List' Subject: RE: Running multiple JVMs Or you can have one IP and get multiple tomcat's listening on different ports and get your balancer to route to each of them

rfc2822 clarification on date headers

2004-01-20 Thread Donie Kelly
Hi allJavamail generates a date in the format: Date: Tue, 20 Jan 2004 11:57:37 + (GMT)The spec below implies that the timezone is either a numeric offset or the timezone is specified like Date: Fri, 23 Jan 2004 11:57:24 GMTCan somebody clarify why javamail uses both forms?Extract from

[OT] rfc2822 clarification on date headers

2004-01-20 Thread Donie Kelly
Sorry guys, this was supposed to go to the JavaMail mailing list. Sorry. -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: 20 January 2004 12:15 To: Tomcat Users List (E-mail) Subject: rfc2822 clarification on date headers Hi all Javamail generates a date

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Donie Kelly
I've seen this before but I can't remember the solution. Search the archives. Donie -Original Message- From: Allistair Crossley [mailto:[EMAIL PROTECTED] Sent: 19 January 2004 16:45 To: Tomcat Users List Subject: RE: Please help, I have a headache .. servlet init troubles no, it's one

RE: Running multiple JVMs

2004-01-19 Thread Donie Kelly
Or you can have one IP and get multiple tomcat's listening on different ports and get your balancer to route to each of them. Multiple IP's are not necessary if you need to use a balancer. Donie -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED] Sent: 19 January 2004

RE: dramatic performance differences on development machines

2004-01-16 Thread Donie Kelly
Hi Johan It's very suspicious that websphere runs so fast and tomcat doesn't. I think there still might be a network issue. Can you modify your server.xml as follows changing the enableLookups=false instead of enableLookups=true Connector port=80 minProcessors=5 maxProcessors=75

RE: dramatic performance differences on development machines

2004-01-13 Thread Donie Kelly
Any chance there is something else running on the machine that's killing the performance. You should post the specs of the machine if you expect a reasonable guess as to your problem. Donie -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: 13 January 2004

RE: dramatic performance differences on development machines

2004-01-13 Thread Donie Kelly
. instead of 2ms. If anybody can point me where too look at I would be very happy. Johan -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: 13 January 2004 12:55 To: 'Tomcat Users List' Subject: RE: dramatic performance differences on development machines Any

RE: dramatic performance differences on development machines

2004-01-13 Thread Donie Kelly
But he said the same app was much faster on another (slower) machine. Donie -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: 13 January 2004 13:47 To: Tomcat Users List Subject: Re: dramatic performance differences on development machines Johan Coens wrote: Here

RE: dramatic performance differences on development machines

2004-01-13 Thread Donie Kelly
out what this could be. Maybe the only solution for me is running websphere... Thanks for the feedback, Johan -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: 13 January 2004 14:48 To: 'Tomcat Users List' Subject: RE: dramatic performance differences

RE: dramatic performance differences on development machines

2004-01-13 Thread Donie Kelly
Maybe it's running as a service. Can you make sure you stop the services as well... -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED] Sent: 13 January 2004 16:09 To: Tomcat Users List Subject: RE: dramatic performance differences on development machines We made the

RE: dramatic performance differences on development machines

2004-01-13 Thread Donie Kelly
but i'll do some more testing and post results at this mailinglist. what do you mean with transaction times, for each request or can i get more detailed processing detail for a http request? thanks for all responses -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: 13

How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Donie Kelly
Hi all I want to insert some form of scheduling into our application and I was wondering how Tomcat passes the request to the actual servlet I write. Does Tomcat just read the headers to create the request object and leave the body of the message in an inputstream for the servlet to

RE: How does a servlet request work. Not a newbie question ;)

2004-01-09 Thread Donie Kelly
processor cannot be assigned with a specified time frame. Thanks Donie -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: 09 January 2004 12:34 To: Tomcat Users List Subject: Re: How does a servlet request work. Not a newbie question ;) Donie Kelly wrote: Hi all

Using acceptCount in server.xml

2004-01-09 Thread Donie Kelly
Hi all Just wondering how to use acceptCount in the Connector class. Default example here modified to show what Im trying to test to understand how this works. Connector className=org.apache.coyote.tomcat4.CoyoteConnector port=8443 minProcessors=1 maxProcessors=1

RE: TomCat Server Killed

2003-12-18 Thread Donie Kelly
We have had the same problem with Solaris 8 and tomcat 4.1.18 No solution found yet. Tried using nohup to start the process but still exits when you leave the session. Donie -Original Message- From: Ferreira, André [mailto:[EMAIL PROTECTED] Sent: 18 December 2003 10:45 To: [EMAIL

RE: Running tomcat on Solaris. Stops when exiting the console

2003-12-10 Thread Donie Kelly
Hi Guys I'm really stuck on this one. Can anybody shed some light on it? Sorry for the double post... Thanks Donie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent: 09 December 2003 15:23 To: Tomcat Users List (E-mail) Subject: Running tomcat on Solaris. Stops when

Running tomcat on Solaris. Stops when exiting the console

2003-12-09 Thread Donie Kelly
Hi all We have had this problem lately where we can start tomcat using Catalina start but when we exit the console it stops. When you look at the ps ef | grep java it shows tomcat running and the PPID is 1 so the process belongs to inetd so I would have though it had detached from the

Setting the Server header in HTTP traffic

2003-08-27 Thread Donie Kelly
Hi all Is there any easy way to set the Server name for Tomcat so that all traffic originating from Tomcat uses the new name instead of eg: Server: Apache Tomcat/4.1.18-LE-jdk14 (HTTP/1.1 Connector) Thanks in advance Donie

Bugs, Issues, Tasks, Patches, CVS integration - which is the best tool

2003-07-29 Thread Donie Kelly
Hi all Weve been working on a project for a while and tracking details like in the subject above are proving to be cumbersome. Is there any single tool thats easy to install and use on a webserver (hopefully) that will manage all this stuff for us. Ideally, we would like to log a

[ot] RE: Bugs, Issues, Tasks, Patches, CVS integration - which is the best tool

2003-07-29 Thread Donie Kelly
. http://www.bitkeeper.com http://www.merant.com -Mark - Original Message - From: Donie Kelly To: Tomcat Users List (E-mail) Sent: Tuesday, July 29, 2003 6:42 AM Subject: Bugs, Issues, Tasks, Patches, CVS integration - which is the best tool Hi all We've been working on a project

RE: Bugs, Issues, Tasks, Patches, CVS integration - which is the best tool

2003-07-29 Thread Donie Kelly
time. There is also Bugzilla. http://www.bugzilla.org/ HTH, -- *** * Rick Roberts* * Advanced Information Technologies, Inc. * *** Donie Kelly wrote: -- Hi all We've been working

RE: Bugs, Issues, Tasks, Patches, CVS integration - which is the best tool

2003-07-29 Thread Donie Kelly
deeper with JIRA, there's a way to integrate it with CVS. It appears to involve modifying your CVS to emit emails ? I'm no CVS expert, but it looks not too bad in terms of complexity. http://www.atlassian.com/software/jira/docs/v2.3/cvs_emails.html -Original Message- From: Donie Kelly

RE: Log4j problem mixing 2 apps

2003-06-27 Thread Donie Kelly
still have a copy somewhere in your tomcat lib path, too. Jim. Donie Kelly wrote: I have this problem as well but my log4j.jar is in WEB-INF/lib in both contexts. The problem happens exactly the same way. The last app to load sets the logging for each webapp and all the logs go to the same

Unscubscribe while on holidays

2003-06-27 Thread Donie Kelly
Hi all Can anybody remind me how to unsubscribe while Im away on holidays to avoid you getting me Out of Office Tanks Donie ** This email and any files transmitted with it are confidential and intended solely

RE: Unscubscribe while on holidays

2003-06-27 Thread Donie Kelly
: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] That's nice, courteous of you. Enjoy your holidays ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED] Sent

RE: Log4j problem mixing 2 apps

2003-06-26 Thread Donie Kelly
I have this problem as well but my log4j.jar is in WEB-INF/lib in both contexts. The problem happens exactly the same way. The last app to load sets the logging for each webapp and all the logs go to the same location. Donie -Original Message- From: Vladimer Shioshvili [mailto:[EMAIL

Log4J under two different webapps

2003-06-18 Thread Donie Kelly
Hi all Im using log4j in two webapps, which means Ive copied the log4j.jar into both WEB-INF/lib directory for each webapp. Im loading a log4j.xml for configuration from my webapp and this works great when I run the app from the command line using the tomcat startup scripts. I can vary

Mapping images in web.xml

2003-06-12 Thread Donie Kelly
Hi all Ive mapped my default servlet in server.xml as / so all requests are mapped to that servlet. Is there any standard solution to getting the jsp and images to work under this situation? At the moment they are all getting routed to the default servlet. If I make the mapping

RE: JSP pages will not work for me. Please help

2003-04-02 Thread Donie Kelly
around somewhere. My first guess would be $JAVA_HOME/jre/lib/ext, but you should check all of the usual suspects. Donie Kelly [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, I posted this earlier and no response and I've been looking at it ever since to no avail. I have two

RE: instance names problem will pay $2 for solution

2003-04-02 Thread Donie Kelly
This is a free service :) Don't think you can buy your answers here :) Donie -Original Message- From: Michael Mattox [mailto:[EMAIL PROTECTED] Sent: 02 April 2003 11:31 To: Tomcat Users List Subject: RE: instance names problem will pay $2 for solution When you create the instances

Byte Ranges

2003-04-01 Thread Donie Kelly
Hi all Can anybody explain how my service can support byte ranges in the GET request. When data is requested from our application it comes from a database and we cannot ask it for a specific range of bytes. My question is, will Tomcat look after this automatically and discard the leading bytes

Problem running jsp pages

2003-04-01 Thread Donie Kelly
Hi all I cannot get any jsp pages to run at all. All I get is this StandardContext[]: Servlet threw load() exception javax.servlet.ServletException: Servlet.init() for servlet jsp threw exception at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:871) at

JSP pages will not work for me. Please help

2003-04-01 Thread Donie Kelly
Hi all, I posted this earlier and no response and I've been looking at it ever since to no avail. I have two machines behind a load balancer ant he jsp pages work on one and not the other. Both machine use the same release of software for both jdk and tomcat and our application is identical on

RE: Frequent hanging

2003-03-24 Thread Donie Kelly
Sounds like a memory leak. You may need to profile your application to see where the problem is. Donie -Original Message- From: Manohar Kamath [mailto:[EMAIL PROTECTED] Sent: 24 March 2003 12:21 To: Tomcat Users List Subject: Re: Frequent hanging Adding to service wont solve the

RE: Apache - Tomcat connectors

2003-03-14 Thread Donie Kelly
Hi Why do so many other sites need to do this. Should the definitive source not be the Tomcat site? If people have time they should submit a working example. It would be nice if there was an official source for this type of information. It sure is a waste of time roaming the web for basic

RE: preview of webapp of Tomcat Performance book

2003-02-11 Thread Donie Kelly
We plan to get it when it comes out. Actually, one for each developer here to stop them writing the crap that they sometimes turn out. Your book and a big stick! Seriously thought, that would be cool. How about a preview of the book itself. Word or PDF format is fine. Donie -Original

RE: Multiple SSL Certificates

2003-02-10 Thread Donie Kelly
This problem has been discussed here before so search the archives. Short answer is that Tomcat cannot support two SSL certificates on the same port so while tomcat supports virtual hosting, it cannot work with SSL. This is not a limitation of Tomcat but a limitation of the SSL protocol which must

RE: Can a single host with multiple hostnames (same IP) have multiple SSL certs?

2003-02-07 Thread Donie Kelly
Have a look at docs surrounding CATALINA_BASE to get tomcat to run in different JVM's using single code base. We use hosting at that was the only solution. Donie -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED]] Sent: 07 February 2003 04:11 To: [EMAIL PROTECTED] Subject:

RE: Why won't anyone help me out??

2003-02-05 Thread Donie Kelly
constant whiner writes: I will try to be more charming and gracious in my dealings with our newsgroup in the future, I promise you! and then continues on with... JSP, right before I go to beddie bye for the nite, I just had to ask u directly what in the hell you meant by the damned phrase Live

RE: Tomcat, log4j and strange output log

2003-01-15 Thread Donie Kelly
You should put log4j in your app/WEB-INF/lib directory as I think it has static classes internally so if one app configures it one way and something some other way then only the last app takes effect. If it's in the app lib dir then the class loader will keep it safe from this stuff. If you can

RE: why doesn't tomcat see my correct keystore?

2003-01-09 Thread Donie Kelly
In Tomcat 4.0.4 I have the following Connector className=org.apache.catalina.connector.http.HttpConnector address=192.168.1.4 port=443 enableLookups=true scheme=https secure=true Factory className=org.apache.catalina.net.SSLServerSocketFactory

RE: Startup Error

2003-01-09 Thread Donie Kelly
Try removing the servlet.jar from you WEB-INF/lib directory as it's already in the tomcat/common/lib directory Donie -Original Message- From: Nathan McMinn [mailto:[EMAIL PROTECTED]] Sent: 09 January 2003 13:47 To: Tomcat Users List Subject: Startup Error First, thanks to everyone for

RE: TOMCAT Not listening on 80

2003-01-06 Thread Donie Kelly
When you say you can't stop it do you mean won't stop it? or you are unable to stop it? Donie -Original Message- From: Vivek Singh [mailto:[EMAIL PROTECTED]] Sent: 06 January 2003 10:52 To: 'Tomcat Users List' Subject: TOMCAT Not listening on 80 Hi, I did exactly as in

Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
Hi all I'm really stuck here and I'd appreciate some help. To summarise, I've followed the instructions below to generate a CA key so that I can sign my own certificates for use with tomcat. The instructions below work and the ca.crt and client.crs.der certs that pop out are viewable in IE. If I

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
Just to clarify, when I try to connect via SSL the SSL Handshake fails. Donie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 12:08 To: 'Tomcat Users List' Subject: Creating a signed SSL certificate with my own CA Hi all I'm really stuck here

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
a signed SSL certificate with my own CA Maybe you have an entry for a special proxy-server in you IE for SSL-connections ? I've created a key with the keytool from j2sdk1.4.1 and it works without problem Chris Donie Kelly wrote: Hi all I'm really stuck here and I'd appreciate some help. To summarise

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
Thanks I'll turn it on and get back her if the logs don't help me... Donie -Original Message- From: Bodycombe, Andrew [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 14:58 To: 'Donie Kelly '; ''Tomcat Users List' ' Subject: RE: Creating a signed SSL certificate with my own CA You

[OT] RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
]%I.S.,.._$c 08E0: 0E 00 00 00 HttpProcessor[443][4], WRITE: SSL v3.0 Handshake, length = 2276 -Original Message- From: Bodycombe, Andrew [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 14:58 To: 'Donie Kelly '; ''Tomcat Users List

FW: [OT] RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
]%I.S.,.._$c 08E0: 0E 00 00 00 HttpProcessor[443][4], WRITE: SSL v3.0 Handshake, length = 2276 -Original Message- From: Bodycombe, Andrew [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 14:58 To: 'Donie Kelly '; ''Tomcat Users List

RE: Advice: good tutorial out there?

2002-12-10 Thread Donie Kelly
You can also get a preview of the book here There used to be a complete free copy of this book on the web but I can't find it now. If I do I'll post it back to the list. This book is great. I started on it. It's more or less the bible. It's also out of print but there is a second edition, which

RE: Advice: good tutorial out there?

2002-12-10 Thread Donie Kelly
Sorry, list didn't like my URL. Here is is in full http://safari.oreilly.com/?XmlId=1-56592-391-X Donie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: 10 December 2002 10:38 To: 'Tomcat Users List' Subject: RE: Advice: good tutorial out there? You can also get

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
You're defiantly blacklisted now :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 09 December 2002 13:40 To: [EMAIL PROTECTED] Subject: I don´t understand the objective of this open list ! In 3 opportunities i wrote to this stuped (sorry) list, and NEVER i

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
, buy your words don´t give me fear. I only search technical help for something. i don´t have interest in to obtain enemies, I´d like friends that can help me. Only friends. I don´t need your threats. Thank´s. Mensaje citado por: Donie Kelly [EMAIL PROTECTED]: You're defiantly blacklisted now

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
I still don't understand the question. If it's so easy maybe it's because people are sick of answering simple questions where people don't read the how-to or installation guides properly. The archive for this list is at http://mikal.org/interests/java/tomcat/ I suggest you spend a little time

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
the objective of this open list ! On a side note, I checked that URL and found that the archive stops after March 2002. Or did I miss something? John -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 9:29 AM To: 'Tomcat Users List' Subject

RE: mapping URLs

2002-11-06 Thread Donie Kelly
Hi Panos I have the following line in my server.xml (inside the host tag) to map my images for jsp pages. It might do what u want Context path=/images docBase=C:\images/ hope it helps Donie -Original Message- From: Panos Konstantinidis [mailto:girionis;yahoo.com] Sent: 06 November

RE: mapping URLs

2002-11-06 Thread Donie Kelly
Looks like the include file parameter works differently. Maybe you should make it a URL I have a img tag as follows img src=images/spacer.gif width=1 height=40 and this works with the supplied contect path. That path will be translated to a URL. Try using @include

RE: mapping URLs

2002-11-06 Thread Donie Kelly
is that it does not work with include files. Any thoughts on this? Do include files work differently? --- Donie Kelly [EMAIL PROTECTED] wrote: Looks like the include file parameter works differently. Maybe you should make it a URL I have a img tag as follows img src=images/spacer.gif width=1 height

USING SSL with VIRTUAL HOST and TOMCAT STANDALONE

2002-10-25 Thread Donie Kelly
Hi all I'm trying to configure my server.xml with multiple hosts on Tomcat 4.0.4 and I want to use a different SSL certificate for each host entry. I AM NOT USING APACHE! JUST TOMCAT STANDALONE (sorry for shouting but this is important) Does anybody have an example of how to do

RE: Tomcat Manager APP: manage VIRTUALHOST'S apps all TOGHETHER?

2002-10-23 Thread Donie Kelly
I've installed it also and it works fine for me too. Thanks guys. Saves a LOT of url typing Donie -Original Message- From: Fabio Marsilio [mailto:fmarsilio;veniceplaza.net] Sent: 23 October 2002 15:32 To: Tomcat Users List Subject: R: Tomcat Manager APP: manage VIRTUALHOST'S apps all

RE: [HOWTO] VIRTUAL HOSTING, APACHE 2.0.43, JK2, TOMCAT 4.1.12

2002-10-22 Thread Donie Kelly
Can you update the HOW-TO to show how we could use SSL on all the virtual hosts, each with separate certificates and all listening on port 443 (different IP's of course). That would make me v. happy :) Thanks Donie -Original Message- From: Umberto Nicoletti

Static class not working under multiple webapps deployment

2002-10-15 Thread Donie Kelly
Hi I have written a static class which is populated with data on startup of my servlets and is suppose to be use in the context of the request. However, the static class seems to return the same information for all webapps and holds the configuration of the last servlet run on startup. Here is

RE: Static class not working under multiple webapps deployment

2002-10-15 Thread Donie Kelly
to copy the .class file to each webapp under its WEB-INF/classes to get the result that you desire. Charlie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 6:12 AM To: 'Tomcat Users List' Subject: Static class not working under multiple

[HOW TO] - GLOBAL VARIABLES - PLEASE HELP

2002-10-11 Thread Donie Kelly
Hi all Sorry for shouting but I've no hair left so it's the only thing I can do :) Please tell me if it's possible to define a variable in server.xml or somewhere, which is available to all running webapps. I've looked in loads of docs and searched the archive but to no avail. Please please

Multiple certificates in virtual host setup

2002-10-09 Thread Donie Kelly
Hi all I have a server hosting multiple sites and each wants to use ssl. Can I use a single keystore for all sites? How do I get each site to extract the correct certificate from the keystore? Any help is appreciated. Donie -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

global variables from server.xml

2002-10-09 Thread Donie Kelly
Hi all I want to set a variable in server.xml which can be read by all webapps. How do I do this? Donie -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: How to specify the location of a properties file.

2002-10-08 Thread Donie Kelly
Here is the simple solution ServletContext sc; String RootPath=null; sc = getServletContext(); RootPath = sc.getRealPath(/); Donie -Original Message- From: Andreas Probst [mailto:[EMAIL PROTECTED]] Sent: 08 October 2002 16:31 To: Tomcat

HOW TO: How do I add a global variable in server.xml readable in all webapps?

2002-10-07 Thread Donie Kelly
Hi I want a variable to be available across all virtual hosts so I want to add it to server.xml. Is this possible? Thanks Donie -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: HOW TO: How do I add a global variable in server.xml readable in all webapps?

2002-10-07 Thread Donie Kelly
Hi I want a variable to be available across all virtual hosts so I want to add it to server.xml. Is this possible? Thanks Donie -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: HOW TO: How do I add a global variable in server.xml readable in all webapps?

2002-10-07 Thread Donie Kelly
- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: 07 October 2002 17:11 To: 'Tomcat Users List' Subject: RE: HOW TO: How do I add a global variable in server.xml readable in all webapps? Hi I want a variable to be available across all virtual hosts so I want to add it to server.xml

RE: HOW TO: How do I allocate memory in JVM for extra virtual hosts

2002-09-30 Thread Donie Kelly
Thanks for that. We are currently analysing the problem and we will look seriously at JDK 1.4 and probably IBM's JDK. We obviously have some work to do but as our app depends on it we are happy to look into these issues. Thanks for all the pointers Donie -Original Message- From:

HOW TO: How do I allocate memory in JVM for extra virtual hosts

2002-09-27 Thread Donie Kelly
Hi all I am running tomcat 4.0.1 with virtual hosting and was wondering how much memory to allocate to each additional host. By default, we use 64M for one host but adding another 64M for second host seems excessive considering it's the same tomcat instance. However, if we add a lot the JVM will

RE: Making a webapp the document root, help?

2002-09-26 Thread Donie Kelly
Map your context directly in server.xmls as follows Context path= docBase=usr/local/tomcat/webapps/MYAPP debug=0/ This will do what you want. Donie -Original Message- From: Dan Lipofsky [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 21:21 To: Tomcat Users List Subject: Re: Making

RE: Automatic Client Login

2002-09-26 Thread Donie Kelly
Send the Authentication header with the username:password but encoded in base64 Donie -Original Message- From: Frank Lawlor [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 20:47 To: 'Tomcat' Subject: Automatic Client Login My application uses Form-based authentication. However, I

RE: Starting TOMCAT without opening new DOS promt

2002-09-25 Thread Donie Kelly
Catalina run You could also run it as a service if running under NT/2000 so that you don't see the dos box at all. See docs. Donie -Original Message- From: RAJESH KANNAN [mailto:[EMAIL PROTECTED]] Sent: 25 September 2002 15:31 To: [EMAIL PROTECTED] Subject: Starting TOMCAT without

Bug in Alias tag in server.xml

2002-09-19 Thread Donie Kelly
Hi all I want to use an alias in the host section of server.xml but if I use the alias Aliaso2/Alias it returns 400 Bad request when I try to access it using that hostanme. If I change it to Aliasotwo/Alias it works fine. Is it a bug that Tomcat is complaining about the numeric

FW: Using Alias within a host element

2002-09-18 Thread Donie Kelly
Hi all I have a host section in my server.xml as follows Host name=mywebsite.com debug=0 unpackWARs=true Aliaso2/Alias Tomcat does not like the part o2 as it return 400 Bad request when I use it in the browser. It resolves OK and all that. If I change my host file to otwo it works OK. Is this a

Using Alias within a host element

2002-09-17 Thread Donie Kelly
Hi all I have a host section in my server.xml as follows Host name=mywebsite.com debug=0 unpackWARs=true Aliaso2/Alias Tomcat does not like the part o2 as it return 400 Bad request when I use it in the browser. It resolves OK and all that. If I change my host file to otwo it works OK. Is this a

RE: server.xml and configuring connection pools (URGENT: please look)

2002-09-11 Thread Donie Kelly
the unused ones are blocked until a request comes in. What the acceptCount is doing for you is allowing each client to stack up 100 different requests in the queue. I don't know of any client that would even think of trying something like this, which is why it's not that useful. Donie Kelly [EMAIL

RE: Catalina doesn't like JRE, but works fine with JDK

2002-09-11 Thread Donie Kelly
Tomcat needs the JDK to compile JSP pages. The JRE does not include the compiler. Donie -Original Message- From: Wolfgang Stein [mailto:[EMAIL PROTECTED]] Sent: 11 September 2002 14:29 To: [EMAIL PROTECTED] Subject: Catalina doesn't like JRE, but works fine with JDK I just installed

server.xml and configuring connection pools

2002-09-10 Thread Donie Kelly
Hi all Simple problem I guess. I'm trying to limit tomcat to 20 threads max but still accept connections using the acceptCount parameter of Connector in server.xml. My problem is that the application will accept up to 20 connections and give connection refused for everything else. What am I

RE: server.xml and configuring connection pools (URGENT: please look)

2002-09-10 Thread Donie Kelly
Hi all Simple problem I guess. I'm trying to limit tomcat to 20 threads max but still accept connections using the acceptCount parameter of Connector in server.xml. My problem is that the application will accept up to 20 connections and give connection refused for everything else. What am I

RE: server.xml and configuring connection pools

2002-09-10 Thread Donie Kelly
in the queue. -Message d'origine- De : Donie Kelly [mailto:[EMAIL PROTECTED]] Envoyé : mardi 10 septembre 2002 17:17 À : 'Tomcat Users List' Objet : RE: server.xml and configuring connection pools Can somebody please help me with this Thanks Donie -Original Message- From: Donie

RE: How can I send respond incrementally in a Servlet

2002-09-10 Thread Donie Kelly
I think he means that nothing is sent back to the browser. I have noticed this as well and I could not get a solution. If you close the connection it's sent back and the servlet can continue to run but that may not be desirable Donie -Original Message- From: Rosdi bin Kasim

Using the cluster classes in tomcat 4.0.4 (org.apache.catalina.cluster)

2002-09-10 Thread Donie Kelly
Hi all Has anybody seen the classes in org.apache.catalina.cluster Is there any docs on these. I have looked on Jakarta.apache.org without success. Thanks Donie -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

  1   2   >