RE: ExpiresFilter throws NPE repeatedly

2021-05-18 Thread Todd Patch
Thank you, Christopher. Your feedback was very helpful. -Original Message- From: Christopher Schultz Sent: Monday, May 17, 2021 5:33 PM To: users@tomcat.apache.org Subject: Re: ExpiresFilter throws NPE repeatedly Todd, On 5/17/21 15:37, Todd Patch wrote: > Hello, > > I a

ExpiresFilter throws NPE repeatedly

2021-05-17 Thread Todd Patch
) ~[atmosphere-runtime-2.4.24.jar:2.4.24]   ... 11 more Any help on ideas of what could be causing it would be greatly appreciated. Todd - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e

Intermittent 502 errors from Load Balancer to Tomcat instance.

2021-05-11 Thread Todd Patch
.0 OS Name: Linux OS Version:4.14.173-137.228.amzn2.x86_64 Architecture: amd64 JVM Version: 1.8.0_202-b08 Thank you, Todd - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For

Re: 8.5.11/8.5.14 using SSLHostConfig protocols and ciphers list ignored

2017-06-30 Thread Todd
Christopher Schultz-2 wrote > Yup: if you use iptables (ipchains hasn't been used in ... decades?) > to do port-redirection, then you are in fact hitting Tomcat / JVM > (essentially) directly. Yes - iptables, sorry brain fart. Christopher Schultz-2 wrote > Can you confirm whether or not you a

Re: 8.5.11/8.5.14 using SSLHostConfig protocols and ciphers list ignored

2017-06-30 Thread Todd
all on what is displayed by ssllabs. I'm stuck, so any ideas or guidance is appreciated, thank you! -Todd -- View this message in context: http://tomcat.10.x6.nabble.com/8-5-11-8-5-14-using-SSLHostConfig-protocols-and-ciphers-list-ignored-tp50629

Re: 8.5.11/8.5.14 using SSLHostConfig protocols and ciphers list ignored

2017-06-23 Thread Todd
Todd wrote >> I'm experiencing the exact same issue with 8.5.14 - cipher list seems to >> be >> ignored, regardless of what I put in SSLAbs and validating via browser on >> my >> website a set of ciphers is used that I have not listed. >> >> I a

Re: AW: 8.5.11/8.5.14 using SSLHostConfig protocols and ciphers list ignored

2017-06-23 Thread Todd
gt; ) Really appreciate help or direction that anyone can give! Todd My relevant config: -- View this message in context: http://tomcat.10.x6.nabble.com/8-5-11-8-5-14-using-SSLHostConfig-protocols-and-ciphers-list-ignored-tp5062900p5064726.html Sent from the Tomcat - User mai

RE: Unable to get SSL working on Tomcat 8.5

2016-12-01 Thread Bartlett, Todd
d with the connector for SSL. The above page is the current guide, and you'll notice several of the hooks have been deprecated since 6.0 jim On 12/1/2016 11:28 AM, Bartlett, Todd wrote: > Thanks for replying, some more information. > > Tomcat 8.0 works fine with this config

RE: Unable to get SSL working on Tomcat 8.5

2016-12-01 Thread Bartlett, Todd
changed in 8.5, it does not seem to recognize or load the .pfx file anymore. Thanks Todd -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Wednesday, November 30, 2016 8:52 PM To: Tomcat Users List Subject: Re: Unable to get SSL working on Tomcat

Unable to get SSL working on Tomcat 8.5

2016-11-29 Thread Bartlett, Todd
The below settings work fine on 6.0 version (no other changes Im aware of) Error received Failed to initialize component [Connector[HTTP/1.1-443 Thanks Todd Bartlett Systems Administrator ITS UNC Wilmington 910-962-2068

Re: Debugging Tomcat JDBC pool disconnects.

2014-10-07 Thread Todd Chapman
Aniket, That change had not been committed yet. -Todd On Tuesday, October 7, 2014, Aniket Bhoi wrote: > On Tue, Oct 7, 2014 at 8:41 PM, Todd Chapman > wrote: > > > Chris, > > > > Thank you for the detailed reply and sorry for my delayed response. We > > lo

Re: Debugging Tomcat JDBC pool disconnects.

2014-10-07 Thread Todd Chapman
Chris, Thank you for the detailed reply and sorry for my delayed response. We located the problem. We had setTestOnBorrow(true) but had not set the validation query. When the validation query is null the validation fails causing the connection to be re-opened. -Todd On Wed, Sep 24, 2014 at 9

Debugging Tomcat JDBC pool disconnects.

2014-09-23 Thread Todd Chapman
r but it's disconnected() method gets called on the PooledConnection, not the physical connection. Does Tomcat JDBC Pool implement javax.sql.ConnectionEventListener interface? Thanks you for any help, -Todd

Loading Tomcat into an already running JVM

2014-07-02 Thread Todd Little
some guidance on how to go about doing this? I'm currently trying this with Tomcat 7.0.54 on Linux. Regards, Todd - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mai

Embedded runtime in Uber jar

2013-07-02 Thread Todd Nine
m classloader to ensure that everything in our uber jar is loaded. Below is the source. Any help is greatly appreciated! https://github.com/apigee/usergrid-stack/blob/USERGRID-1731/standalone/src/main/java/org/usergrid/standalone/Server.java#L147 Thanks, Todd

Re: Tomcat managed connections (DBCP) with driver in web application.

2012-10-09 Thread Andrew Todd
On Tue, Oct 9, 2012 at 5:19 PM, Jeremy Heiler wrote: > "Use of the JDBC Data Sources JNDI Resource Factory requires that you Ah, OK. I'm not using JNDI. I'm instantiating the DBCP as a Spring bean inside the app. - To unsubscrib

Re: Tomcat managed connections (DBCP) with driver in web application.

2012-10-09 Thread Andrew Todd
On Tue, Oct 9, 2012 at 10:37 AM, Jeremy Heiler wrote: > Every resource I've read thus far has said that the driver jar must be > in $CATALINA_HOME/lib or DBCP wont work. Can you provide a link for that? I've been just fine bundling the Oracle 11 library inside my .war file. For that matter, I ac

Re: maxHTTPHeaderSize, and specific header lengths

2012-10-01 Thread Andrew Todd
On Mon, Oct 1, 2012 at 11:41 AM, Konstantin Kolinko wrote: > 2. If the protocol between HTTPD and Tomcat is AJP, > then the protocol itself has its own limitation, which is ~15 times > lesser than that amount. Thanks for anticipating my next question. Right now we're using mod_proxy with the HTTP

Re: maxHTTPHeaderSize, and specific header lengths

2012-10-01 Thread Andrew Todd
On Sun, Sep 30, 2012 at 6:21 AM, Konstantin Kolinko wrote: > In Tomcat each request processor has a byte buffer and all the headers > must fit into that buffer. Thanks so much for the detailed response. I have a couple more questions: 1) When a request is rejected for being too large, is there a

maxHTTPHeaderSize, and specific header lengths

2012-09-27 Thread Andrew Todd
I have a question about maxHttpHeaderSize [0]. In Apache httpd, there are two different parameters that affect the maximum size of an HTTP header, limitRequestFieldSize and limitRequestLine. [1] These configuration values specify about 8 kilobytes per _line_ in the incoming request. However, in Tom

Re: Adding the manager app to a Standalone tomcat install

2012-05-08 Thread Todd Seidenberg
On Mon, May 7, 2012 at 2:57 PM, André Warnier wrote: > Ognjen Blagojevic wrote: > >> Todd, >> >> On 4.5.2012 22:01, Todd Seidenberg wrote: >> >>> xx.x.32.16 - - [04/May/2012:13:59:05 -0600] "GET /manager/html HTTP/1.1" >>> 404 991 &quo

Re: Adding the manager app to a Standalone tomcat install

2012-05-04 Thread Todd Seidenberg
On Fri, May 4, 2012 at 8:46 AM, Todd Seidenberg wrote: > > > On Fri, May 4, 2012 at 8:38 AM, Christopher Schultz < > ch...@christopherschultz.net> wrote: > >> -BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> Todd, >> >> On 5/4/12 10:1

Re: Adding the manager app to a Standalone tomcat install

2012-05-04 Thread Todd Seidenberg
On Fri, May 4, 2012 at 8:38 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Todd, > > On 5/4/12 10:17 AM, Todd Seidenberg wrote: > > - I have the server.xml listed above. - I have grabbed the > &

Re: Adding the manager app to a Standalone tomcat install

2012-05-04 Thread Todd Seidenberg
On Fri, May 4, 2012 at 7:02 AM, Todd Seidenberg wrote: > On May 3, 2012 5:47 PM, "Christopher Schultz" < > ch...@christopherschultz.net> wrote: > >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> Todd, >> >> On 5/3/12 5:22 P

Re: Adding the manager app to a Standalone tomcat install

2012-05-04 Thread Todd Seidenberg
On May 3, 2012 5:47 PM, "Christopher Schultz" wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Todd, > > On 5/3/12 5:22 PM, Todd Seidenberg wrote: > > On Thu, May 3, 2012 at 3:03 PM, Caldarale, Charles R < > > chuck.caldar...@unisys.

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
On Thu, May 3, 2012 at 3:03 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Todd Seidenberg [mailto:todd.seidenb...@gmail.com] > > Subject: Re: Adding the manager app to a Standalone tomcat install > > > I have removed all of the offending stuff

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
On Thu, May 3, 2012 at 1:58 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Todd Seidenberg [mailto:todd.seidenb...@gmail.com] > > Subject: Re: Adding the manager app to a Standalone tomcat install > > > > > > > > >

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
On Thu, May 3, 2012 at 12:39 PM, André Warnier wrote: > Todd Seidenberg wrote: > ... > > > >>> Here's my server.xml stripped out of all secure info, as requested: >> >> >> >>> port="8090" minProcessors="5"

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
On Thu, May 3, 2012 at 12:00 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Todd Seidenberg [mailto:todd.seidenb...@gmail.com] > > Subject: Re: Adding the manager app to a Standalone tomcat install > > > Here are the contents of my >

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
On Thu, May 3, 2012 at 11:44 AM, André Warnier wrote: > Todd Seidenberg wrote: > >> >> >> INFO: Deploying configuration descriptor manager.xml >>> >>> Good. >>> >>> As you can see, the manager descriptor is deployed - and sure >&

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
> INFO: Deploying configuration descriptor manager.xml > > Good. > > > As you can see, the manager descriptor is deployed - and sure > > enough the standard manager.xml file is created in > > /usr/local/confluence-4/conf/Standalone/localhost. > > Good. > > > However, I still don't get the manager

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
On Thu, May 3, 2012 at 7:37 AM, Konstantin Kolinko wrote: > > 2012/5/3 Todd Seidenberg : > > (..) > > +1 to what Pid wrote. > > > > > My previous efforts to do this resulted in a BLANK page when I tried > > hitting the manager app - so any help would be app

Re: Adding the manager app to a Standalone tomcat install

2012-05-03 Thread Todd Seidenberg
ld be appreciated. Thoughts? On Wed, May 2, 2012 at 2:46 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Todd Seidenberg [mailto:todd.seidenb...@gmail.com] > > Subject: Adding the manager app to a Standalone tomcat install > > > I'm trying

Adding the manager app to a Standalone tomcat install

2012-05-02 Thread Todd Seidenberg
;d like to collect performance data, and know that running the manager app will provide this information for me. Is it possible to install the manager app in an install like this? - Thanks, Todd

RE: quotes in Protocol Handler name

2012-03-01 Thread MOYER, TODD
Thanks for the info, Konstantin. The IPV6 idea makes some sense, though it doesn't apply in my particular case. I see in the changelog that rjung did some work in 7.0.17, that was released in 2011-07-19 as 7.0.19. (funny coincidence) Cheers, Todd -Original Message- From: Konst

quotes in Protocol Handler name

2012-03-01 Thread MOYER, TODD
art of the name is always/usually true in version 7 of Tomcat? If so, was this a mistake or done intentionally? Why? Needless to say, in our case this is causing headaches. I'd like to understand the background for why the quotes are there. It seems an odd design decision

Re: OT: Petition to the White house to expand the use of FreeSoftware

2012-02-14 Thread Andrew Todd
On Tue, Feb 14, 2012 at 11:51 AM, Christopher Schultz wrote: > Stallman as a government adviser? :) Shouldn't that be GNU/Government? - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail:

Re: JVM config for tomcat7.0.19

2011-11-11 Thread Andrew Todd
On Fri, Nov 11, 2011 at 12:59 PM, celtic man wrote: > > we have JAVA_OPTS set in catalina.sh > > start_tomcat -> /usr/local/scripts/start_tomcat > stop_tomcat -> /usr/local/tomcat/bin/shutdown.sh > > MemTotal: 4149124 kB > MemFree:381644 kB > Buffers:106832 kB > Cached:

Re: Tomcat JDBC Connection Pool, Tomcat 7, and Maven?

2011-08-31 Thread Andrew Todd
Answering my own questions. On Mon, Aug 29, 2011 at 5:12 PM, Andrew Todd wrote: > So I'm working on a Maven-based project in which I would like to use > the Tomcat JDBC connection pool. I've noticed that with Tomcat 7, the > documentation has now moved into the official T

Tomcat JDBC Connection Pool, Tomcat 7, and Maven?

2011-08-29 Thread Andrew Todd
Hi, So I'm working on a Maven-based project in which I would like to use the Tomcat JDBC connection pool. I've noticed that with Tomcat 7, the documentation has now moved into the official Tomcat docs (https://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html). However, I'm wondering a few things:

Re: jvmRoute generation

2011-08-24 Thread Andrew Todd
On Wed, Aug 24, 2011 at 2:44 PM, Christopher Schultz wrote: > If you look at the stock conf/server.xml, it says: > Documentation at /docs/config/engine.html > " > > ...right above the element. > > If you read that document, the jvmRoute attribute says: I know, I have that link in the initial ema

Re: jvmRoute generation

2011-08-24 Thread Andrew Todd
On Wed, Aug 24, 2011 at 10:07 AM, Christopher Schultz wrote: > For my money, I'd go for sticky sessions and no replication at all. Correct, this is, as far as I know, what we are planning to do. Jeffrey Janner wrote: > I see from your first post that you know where to find the Tomcat 7 > docum

Re: jvmRoute generation

2011-08-24 Thread Andrew Todd
On Tue, Aug 23, 2011 at 5:31 PM, Christopher Schultz wrote: > If you are using sticky sessions, then it is vital to the operation of > your cluster that the jvmRoutes be set with care and configured in the > web server to match the individual Tomcat instances. Thanks, it sounds like I need to go

Re: jvmRoute generation

2011-08-23 Thread Andrew Todd
On Tue, Aug 23, 2011 at 5:08 PM, Jeffrey Janner wrote: > Why on God's Green Earth would you want a "random" jvmRoute value? I'm new at this, explain to me why I wouldn't. I have to deploy to a cluster, and my understanding is that the Apache front-end server doesn't care about the value of jvmRou

Re: jvmRoute generation

2011-08-23 Thread Andrew Todd
On Tue, Aug 23, 2011 at 3:57 PM, Christopher Schultz wrote: > You should be able to use a parametric replacement using a system > property. That way, the file is the same across all installations but > the system property can be set locally. > > Something like this: > >  defaultHost="localhost" >

jvmRoute generation

2011-08-23 Thread Andrew Todd
I'm working on putting together a clustered environment with sticky sessions, and I'm wondering if there's any way of automatically generating a jvmRoute value in the engine container (https://tomcat.apache.org/tomcat-7.0-doc/config/engine.html) rather than setting one manually for each Tomcat inst

RE: Portable

2010-03-18 Thread Todd Hicks
Users List Subject: Re: Portable On 18 March 2010 16:59, Christopher Schultz wrote: > If, as Todd reports, the JVM can be installed to a USB stick, Id just go > with that: pick a port that's unlikely to be used by the host machine > (like 80801) and use that for your setup. Avoid u

RE: org.apache.jk.config.ApacheConfig modJk

2010-03-15 Thread Todd Hicks
- Hash: SHA1 Todd, On 3/15/2010 12:57 PM, Electronjockey wrote: The official add-on is Tomcat 6.0.20 and mod_jk 1.2.20. Hmm... I must have been looking in the wrong place. I went from here: http://www.apachefriends.org/en/faq-xampp-windows.html to here http://www.apachefriends.org/en

RE: Portable

2010-03-15 Thread Todd Hicks
I'm currently working on a portable development environment for a client. I have Tomcat 6.0.20 running portably as part of Xampp. I have successfully configured it to run with the JDK (non-installed) on the same USB device, so it can be done. -Original Message- From: Christopher Schul

RE: org.apache.jk.config.ApacheConfig modJk

2010-03-14 Thread Todd Hicks
a bug? I've already downloaded the source to try the fix. -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Sunday, March 14, 2010 8:50 PM To: Tomcat Users List Subject: Re: org.apache.jk.config.ApacheConfig modJk -BEGIN PGP SIGNED MESSAGE--

RE: Question on Linux Tomcat Apache Server and Port Redirection for a robotics site

2010-03-14 Thread Todd Hicks
x27;t think the mod_jk can be built without it. Is it because Apache Http server is only 2.2 version? On Sun, Mar 14, 2010 at 7:38 PM, Todd Hicks wrote: > That's why I suggested mod_jk. > > > -Original Message- > From: Melanie [mailto:melanie.v...@gmail.com] > Sent:

RE: Question on Linux Tomcat Apache Server and Port Redirection for a robotics site

2010-03-14 Thread Todd Hicks
That's why I suggested mod_jk. -Original Message- From: Melanie [mailto:melanie.v...@gmail.com] Sent: Sunday, March 14, 2010 7:35 PM To: Tomcat Users List Subject: Re: Question on Linux Tomcat Apache Server and Port Redirection for a robotics site The Apache server appears to be: Apach

RE: Question on Linux Tomcat Apache Server and Port Redirection for a robotics site

2010-03-14 Thread Todd Hicks
Melanie, I would recommend using the Apache Tomcat Connector mod_jk. Documentation can be found here: http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html See what you can make of it. -Original Message- From: Melanie [mailto:melanie.v...@gmail.com] Sent: Sunday, March

org.apache.jk.config.ApacheConfig modJk

2010-03-14 Thread Todd Hicks
This may be a question better suited for the dev list, but I thought I'd try here first. I've been troubleshooting a problem in one of my installations and was reviewing the documentation here: http://www.docjar.com/docs/api/org/apache/jk/config/ApacheConfig.html (the auto-config listener class) wh

Re: trouble starting tomcat: "error 0" on Windows 64bit

2009-05-16 Thread Todd Hivnor
One troubleshooting suggestion would be to confirm that Java itself is working. Use java -version, and run some basic HelloWorld program. If Java isn't working, Tomcat won't stand a chance. - Original Message From: "w...@serensoft.com" To: users@tomcat.apache.org Sent: Friday, May

Re: file type being blocked by IE

2009-05-14 Thread Todd Hivnor
I'm not sure if it still behaves this way. But historically IE has ignored the declared content-type and instead used the file extension. The work-around was to add a bogus argument to the URL: http://server/get-the-goodies.jsp?filetype=.zip This way it "looks" like a .zip file to IE. Also, w

Re: Preventing OutOfMemoryError: Java heap space

2009-05-12 Thread Todd Hivnor
>> But would it not be easier to catch the OOM exception and then >> return a "sorry, server overloaded" page to the browser ? > It's difficult to do that when the OOME may occur in Tomcat code, > outside of control of the webapp. Wow I had assumed I could always catch this type of exception.

Re: Preventing OutOfMemoryError: Java heap space

2009-05-12 Thread Todd Hivnor
>> From: Todd Hivnor [spambox_98...@yahoo.com] >> I would like to proactively avoid running out of heap >> space. I would like people get a "Server Too Busy" >> message, _before_ the heap is actually exhausted. > >> I would rather serve 40 users w

Preventing OutOfMemoryError: Java heap space

2009-05-11 Thread Todd Hivnor
I have a Java application running under Tomcat 6.0.18 on Ubuntu. This is using Sun's 1.6.0_07 JVM. I know how to set the max heap space by setting -Xmx256m in CATALINA_OPTS. But with a lot of sessions, I still have the possibility of running out of heap space. My application uses a lot of memo

RE: User-JDBC-Realm: User case-sensitiv?

2008-05-16 Thread Boyd, Todd M.
quot;Test", but only matches the record "tesT". Todd Boyd Web Programmer > -Original Message- 8< snip! > Usually, a database is transparent for the programmer: He doesn't need > to about the details of the soring-mechanisms, but *what* he has to &g

RE: User-JDBC-Realm: User case-sensitiv?

2008-05-16 Thread Boyd, Todd M.
When you think about how many people would be asking how to make them case-insensitive versus how many need to perform case-sensitive searching, it makes sense to me. Todd Boyd Web Programmer > -Original Message- > From: Gregor Schneider [mailto:[EMAIL PROTECTED] 8< sni

Error unregistering mbean

2007-10-16 Thread todd runstein
ed by: java.lang.IllegalArgumentException: Object name cannot be null ... 7 more We're running Tomcat 5.0, Apache 2.0 with jk_mod against a sybase db. The only change was the JVM and our webapp compiled in 1.5. Any ideas where to start lookin

Unable to install tomcat 5.5 native libraries on Red Hat Enterprise Linux 4

2007-03-12 Thread Todd Nine
and not found make: *** [install] Error 127 There is no /usr/local/apr directory. Am I missing another configuration option? I have an apr-0 at the location /usr/include/apr-0. Any help would be greatly appreciated. Thanks, Todd --

help with mod_jk autoconfigure

2007-03-07 Thread Todd Nine
30 PM org.apache.catalina.startup.Catalina start Any idea what's wrong, the exception isn't very helpful. If I comment out my line everything is fine. I'm currently testing it running as root to avoid any permission or port issue. Any help would be greatly appreciated. Thanks, Todd

RE: Tomcat 5.5 redirect vs. forward behavior with welcome-file-list

2007-02-12 Thread Todd Gamber
ou for your response, and to Stefan as well, Todd -Original Message- From: Hassan Schroeder [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 2:52 PM To: Tomcat Users List Subject: Re: Tomcat 5.5 redirect vs. forward behavior with welcome-file-list On 2/12/07, Todd Gamber <[

Tomcat 5.5 redirect vs. forward behavior with welcome-file-list

2007-02-12 Thread Todd Gamber
d another way to definitively get the name of the actual JSP being requested. If anybody knows of a method similar to getRequestURI(), but which knows the name of the JSP being requested, it would help tremendously. Thanks, Todd --

jsvc.exec error: Cannot find daemon loader org/apache/commons/daemon/support/DaemonLoader

2006-09-23 Thread Todd Smith
Answer is: A) -cp or -classpath is not correct or B) Permisions on your .jar files are not correct for -user. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --

Re: Tomcat 5.0.28: ROOT.Context Error - application listeners issue.

2006-09-19 Thread Todd Patrick
Martin: Thanks for the response. Your example helped me realized that my install was really messed up. Thanks, --Todd On 9/19/06, Martin Gainty <[EMAIL PROTECTED]> wrote: Todd Here is the web.xml from my root webapp http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http:/

Tomcat 5.0.28: ROOT.Context Error - application listeners issue.

2006-09-19 Thread Todd Patrick
j2ee/web-app_2_4.xsd";> I'd greatly appreciate any help. Thanks, -- --Todd [EMAIL PROTECTED] - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Filtering responses

2006-07-31 Thread todd runstein
3, using Tomcat 5.0.19 with JDK 1.4.2_07. If I've left anything out, please let me know. Todd The relevant portions of web.xml: dateFormatter msei.manu.web.servlets.DateFormatFilter dateFormatter /* REQUEST FORWARD INCLUDE Here's t

mod_jk error log

2006-04-27 Thread Todd Huss
We're running Apache 1.3.33 and Mod_jk 1.2.13 on FreeBSD. Any idea what configuration setting might be causing this and how we might fix it? Thanks, Todd - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Setting sessions to only use cookies

2006-04-23 Thread Todd Huss
q=inurl%3Ajsessionid Resin has an option to address this in the config file: false Anything similar in Tomcat? Thanks, Todd http://gabrito.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

DefaultContext with JNDI resource in admin web-app

2006-03-28 Thread Todd Hill
atasource, it's just the admin webapp that doesn't seem to work with DefaultContext, even though some books tell you to configure things this way. Thanks in advance. Todd - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: reading file from jsp / war file

2006-01-11 Thread todd darsten
Never mind I changed it to Thread.currentThread().getContextClassLoader().getResource to get it working. --- todd darsten <[EMAIL PROTECTED]> wrote: > > My war file looks like > > mywar.war > +--WEB-INF > +--my.mapfile.txt > +--... other dirs > > Within

reading file from jsp / war file

2006-01-11 Thread todd darsten
My war file looks like mywar.war +--WEB-INF +--my.mapfile.txt +--... other dirs Within my jsp, i am trying to reference my.mapfile.txt as an URL This code works fine in Jetty but fails when we switch to TC 5.5.x <% URL myURL = application.getResource("/my.mapfile.txt"); %> i am getting an