Re: Abandoned Connections not removed

2003-10-17 Thread Matt Raible
So I guess the question is - which version of DBCP ships with Tomcat 5.0.12? Thanks, Matt On 10/17/03 2:47 AM, Adam Hardy [EMAIL PROTECTED] wrote: On 10/17/2003 01:45 AM Matt Raible wrote: Is there a new release of DBCP that fixes this problem b/c currently these settings have no effect

RE: JSP question

2003-10-21 Thread Matt Raible
A better solution for what you're doing is to leave the button as type=submit and remove its onclick event. Instead, add an onsubmit handler to form that calls return validateForm() - return false in your function when validation fails. HTH, Matt -Original Message- From: epyonne

Tomcat / AD / Queries from Username instead of Full Name

2003-10-22 Thread Matt Fury
? Thanks. -Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

IIS and Tomcat - can I proxy all requests to a specific app

2003-10-22 Thread Matt Raible
? I know it is with Apache, but I'm not sure about IIS. From what I've seen from the documentation, IIS has to have some sort of indicator, i.e. /jk/* Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

SESSIONS.ser - how do I get rid of it on OS X?

2003-10-22 Thread Matt Raible
in server.xml? You'd think session persistence would be off by default and you'd need to turn it on?? Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

IIS and Tomcat

2003-10-23 Thread Matt Raible
. Is this possible? I know it is with Apache, but I'm not sure about IIS. From what I've seen from the documentation, IIS has to have some sort of indicator, i.e. /jk/* Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

SESSIONS.ser

2003-10-23 Thread Matt Raible
in server.xml? You'd think session persistence would be off by default and you'd need to turn it on?? Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tag Attribute Doesn't Have Expression Interpreted

2003-10-23 Thread Matt Raible
Add this after name in your .tld rtexprvaluetrue/rtexprvalue -Original Message- From: Paul D. Gillen [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 3:33 PM To: TomcatDiscussion Subject: Tag Attribute Doesn't Have Expression Interpreted Having not gotten a reply to an

Tomcat 5.0.14 Beta

2003-11-01 Thread Matt Raible
/lib/tools.jar from the JDK to the common/lib directory of the Tomcat server, followed by a Tomcat restart. If using an alternate Java compiler, please check its installation and access path. Should I copy tool.jar to common/lib? I've never had to do this before. Matt

Re: Tomcat 5.0.14 Beta

2003-11-01 Thread Matt Raible
The same code ran fine on 4.1.27 and 5.0.12 - all I've ever done is mv 4.1.27/webapps/* 5.0.14/. Probably a fluke and I'll never see it again. Matt On Nov 1, 2003, at 2:30 PM, Eric C wrote: I had the same error with 5.0.12 a bracket was missing in my code and it throwed this weird message

RE: servlet sendRedirect() to j_security_check problem (remember me)

2003-12-03 Thread Matt Raible
that does an Http Post instead of a Get: http://tinyurl.com/xl80 HTH, Matt On Dec 3, 2003, at 12:52 PM, Chris Ward wrote: Hi Matt, Sorry for sending unsolicited email but I've been looking at some of your postings to Tomcat-User and wondered if I could ask a couple of questions. I've tried

Re: servlet sendRedirect() to j_security_check problem (remember me)

2003-12-03 Thread Matt Raible
in this form, I have action=/security/authorize - which is mapped to my own LoginServlet. In the LoginServlet, I encrypt the password (optionally based on an init-parameter), set some cookies and do an HTTP Post to j_security_check. Works on Tomcat 4-5 and Resin 3.x. Matt On Dec 3, 2003, at 4:21 PM

2 Hosts: 2nd one tries to load the first's XML files

2003-12-04 Thread Matt Raible
/ /Host Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: 2 Hosts: 2nd one tries to load the first's XML files

2003-12-05 Thread Matt Raible
This did fix the problem - thanks Liem. Matt On Dec 4, 2003, at 6:17 PM, Liem Do wrote: If each virtual host has their own set of applications then you should set the appBase for each host to different directories. So in your case the Host defs should look like the following: Host name

Re: servlet sendRedirect() to j_security_check problem (remember me)

2003-12-05 Thread Matt Raible
Sounds like a server configuration problem. I don't know where followRedirects is disabled, but it looks like it is somewhere. Matt On Dec 5, 2003, at 8:46 AM, Chris Ward wrote: Tomcat-Users (Cc:Matt/Adam), I've just tried doing a redirect to j_security_check using the commons package

Re: Basic Authentication

2003-12-05 Thread Matt Raible
You might want to read the comments on the following URL - it shows how to configure authentication with a Windows domain, but apparently, it's out of date: http://www.raibledesigns.com/page/rd? anchor=easy_windows_authentication_with_tomcat Matt On Dec 5, 2003, at 9:45 AM, Bui, Bao-Ha D

Detecting Tomcat version in Ant

2003-12-05 Thread Matt Raible
on Tomcat 4.1.x. For Tomcat 5.0.x, it needs to go in $CATALINA_HOME/conf/Catalina/localhost/. I'd like to auto-detect Tomcat 5 and deploy to the appropriate place. Is there a class I can check for or something? Thanks, Matt smime.p7s Description: S/MIME cryptographic signature

Remember Me in Tomcat 5

2003-12-11 Thread Matt Raible
to be / - but then anyone that logs in has access to those cookies - and if my app allows JavaScript, they could probably write some code to get user's passwords. Anyone know of an easier workaround? Matt - To unsubscribe, e-mail: [EMAIL

RE: Issue with EL disabled

2003-12-13 Thread Matt Raible
Make sure you have a Servlet 2.4 configuration for your web.xml. EL is turned off by default with 2.3 web.xml's. Here's some additional info: http://www.raibledesigns.com/page/rd?anchor=howto_upgrade_your_app_to HTH, Matt -Original Message- From: Olivier Moratin [mailto:[EMAIL

RE: Need some Tomcat Configuration help badly

2003-12-13 Thread Matt Raible
Make sure you have reloadable=true in the contexts they're putting their beans into: Context path=/examples docBase=examples debug=0 reloadable=true crossContext=true Matt -Original Message- From: Dick Steflik [mailto:[EMAIL PROTECTED] Sent: Saturday

RE: Need some Tomcat Configuration help badly

2003-12-13 Thread Matt Raible
The hotfix jar is now here: http://archive.apache.org/dist/jakarta/tomcat-4/binaries/ HTH, Jon Matt Raible wrote: Make sure you have reloadable=true in the contexts they're putting their beans into: Context path=/examples docBase=examples debug=0

Re: allowLinking

2003-12-15 Thread Matt Raible
With 5.0.16, it's now an attribute on the Context. HTH, Matt On Dec 15, 2003, at 9:34 AM, Michiel Meeuwissen wrote: I just upgraded my test-machine from tomcat 4.1.29 to 5.0.16. It seems that the 'allow-linking' feature is broken, or I'm doing something wrong. My server.xml sais something

architecture advice

2003-12-19 Thread Dale, Matt
instance can only utilise a single processor) Any other advice would be appreciated. Thanks Matt Dale Any opinions expressed in this E-mail may be those of the individual and not necessarily the company. This E-mail and any files transmitted with it are confidential and solely for the use

JK connector / Tomcat 5

2003-12-19 Thread Dale, Matt
on a new implementation? Thanks Matt Dale Any opinions expressed in this E-mail may be those of the individual and not necessarily the company. This E-mail and any files transmitted with it are confidential and solely for the use of the intended recipient. If you are not the intended recipient

RE: architecture advice

2003-12-19 Thread Dale, Matt
Thanks, I think I'll take your advice, the apps guys are going to use J-Meter for app testing so I'll get them to use this for stress testing as well. Thanks for clearing up my misunderstanding, it came from my observations but they were hardly conclusive. Thanks Matt -Original Message

RE: two installations of Tomcat

2003-12-19 Thread Dale, Matt
You need to modify the server.xml of one of the instances to start it on a different port. Then you should be able to access both seperately on the respective ports. To connect to either through apache you should read up on the jk connector. If you are using apache 1.3 then use JK, if you

RE: web app prob from a newbie

2003-12-30 Thread Dale, Matt
Which operating system are you using? -Original Message- From: FRANCOIS Dufour [mailto:[EMAIL PROTECTED] Sent: 30 December 2003 12:13 To: [EMAIL PROTECTED] Subject: web app prob from a newbie sombody could tell mee were too set the java_home path cant figure the way they explain im

RE: Browser control thru servlet

2003-12-30 Thread Dale, Matt
If you want to control where a user goes more strictly you can also pop up a window that has no buttons, the user will only be able to click the links that you supply. But I agress with Philipp, javascript is the answer. -Original Message- From: Philipp Taprogge [mailto:[EMAIL

RE: web app prob from a newbie re:damar

2003-12-30 Thread Dale, Matt
set it in there. Ta Matt -Original Message- From: FRANCOIS Dufour [mailto:[EMAIL PROTECTED] Sent: 30 December 2003 12:24 To: [EMAIL PROTECTED] Subject: Re: web app prob from a newbie re:damar win xp but in which file do i have to rite done the path way [EMAIL PROTECTED] crazy-wilys

RE: web app prob from a newbie re:damar

2003-12-30 Thread Dale, Matt
yes, you need to create a new variable with the name JAVA_HOME and the value is the path to your java installation Ta Matt -Original Message- From: FRANCOIS Dufour [mailto:[EMAIL PROTECTED] Sent: 30 December 2003 12:40 To: [EMAIL PROTECTED] Subject: RE: web app prob from a newbie

RE: Tomcat 5.0 (problems)

2003-12-30 Thread Dale, Matt
Have a look in the %TOMCAT_HOME%\logs\catalina.out to see if there are any startup errors. I'm not sure how to answer your 2nd question concisely but the main file to look at is the server.xml -Original Message- From: Kleber [mailto:[EMAIL PROTECTED] Sent: 30 December 2003 16:15 To:

RE: Tomcat 5.0 (problems)

2003-12-30 Thread Dale, Matt
My first guess would be that JAVA_HOME isnt set. Have you tried starting tomcat from the bin\startup.bat file yet rather than the service? as it will output errors to the console. Ta Matt -Original Message- From: Kleber [mailto:[EMAIL PROTECTED] Sent: 30 December 2003 17:01

RE: Tomcat 5.0 (problems)

2003-12-30 Thread Dale, Matt
starting tomcat from the bin\startup.bat file and the error is this: Without enviroment space Cannot find This file is needed to run this program what could be happened? - Original Message - From: Dale, Matt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, December

RE: purported javac memory leak?

2004-11-02 Thread Dale, Matt
I think this is a jdk bug fixed in java 1.4 -Original Message- From: T K [mailto:[EMAIL PROTECTED] Sent: 01 November 2004 22:41 To: [EMAIL PROTECTED] Subject: purported javac memory leak? Hi all, as most of you know the tomcat 4.1.x jasper HOW-TO claims there is a javac memory leak;

RE: Clustering and Load balancing

2004-11-10 Thread Dale, Matt
. There is a clustering section in your server.xml, uncomment this on a couple of machines and add the distributable/ tag to the web.xml in a webapp and you'll have a cluster. Ta Matt -Original Message- From: Vinayagam [mailto:[EMAIL PROTECTED] Sent: 10 November 2004 04:41 To: Tomcat Users List Cc: [EMAIL

RE: exception in clustering

2004-11-10 Thread Dale, Matt
it just not authenticate? any errors in the logs? Ta Matt -Original Message- From: Mufaddal Khumri [mailto:[EMAIL PROTECTED] Sent: 09 November 2004 23:57 To: Tomcat Users List Subject: Re: exception in clustering Hi, I am using Apache - modjk -Tomcat 5 configuration. The tomcat

RE: OutOfMemory errors compiling JSPs on 5.0.16 and 5.5.4

2004-11-14 Thread Dale, Matt
I've not been following this thread but my guess would be that you are running out of space in the permanent generation of the heap. Get a hold of jvmstat from sun and run visualgc on your JVM, it should become obvious then which pool is running out of space. Ta Matt -Original Message

RE: Analysing dead threads

2004-11-15 Thread Dale, Matt
kill -SIGHUP or kill -3 should dump a stack trace into catalina.out. A profiler should also tell you what the threads are up to. Ta Matt -Original Message- From: Steffen Heil [mailto:[EMAIL PROTECTED] Sent: 15 November 2004 13:42 To: 'Tomcat Users List' Subject: Analysing dead threads

RE: OutOfMemory errors compiling JSPs on 5.0.16 and 5.5.4

2004-11-16 Thread Dale, Matt
I have a copy of the old jvmstat if you'd like me to email it to you direct? -Original Message- From: Kevin A. Burton [mailto:[EMAIL PROTECTED] Sent: 15 November 2004 19:51 To: Tomcat Users List Subject: Re: OutOfMemory errors compiling JSPs on 5.0.16 and 5.5.4 Dale, Matt wrote: I've

Re: Tomcat, Apache connected in interesting way

2004-11-23 Thread Matt Bathje
missing? Also, how do you handle .jsps and .dos that need to be handled by Tomcat securely (using SSL). This seems to pass them all off to the non-secure version. Would it just be a more complex RewriteRule that tests for https vs. http? Thanks, Matt

RE: Clustering in Tomcat

2004-11-25 Thread Dale, Matt
Have you got the distributable/ tag in your context's web.xml? Do all the objects in your session implement Serializable? -Original Message- From: Gaurav Vaish [mailto:[EMAIL PROTECTED] Sent: 25 November 2004 04:07 To: Tomcat Users List Subject: Clustering in Tomcat Hi, I am

RE: Tomcat Sessions...

2004-11-25 Thread Dale, Matt
Firefox will share sessions between the tabs so i'm surprised this works at all. -Original Message- From: Quinton Delpeche [mailto:[EMAIL PROTECTED] Sent: 25 November 2004 11:44 To: [EMAIL PROTECTED] Subject: Tomcat Sessions... Hi, I have a friend who has a question for the list.

RE: Tomcat

2004-11-26 Thread Dale, Matt
Once you get the connector working you could disable tomcat on 8080 so it is only accessible through apache. I think you can also you use filters to filter which ip addresses are allowed to connect but you'll need to read up the docs on that. -Original Message- From: Allen Beacon

RE: Tomcat

2004-11-26 Thread Dale, Matt
It's up to you whether it is accessible from the web or not. You map each application individually in the connector configuration. All you need to do it just not map the ROOT context and then it's not available from the web. -Original Message- From: Allen Beacon [mailto:[EMAIL

RE: Tomcat

2004-11-26 Thread Dale, Matt
Ah yes, you'd be right in thinking that. You should read up on filters then and you should be able to put a restriction on it. Ta Matt -Original Message- From: Allen Beacon [mailto:[EMAIL PROTECTED] Sent: 26 November 2004 09:56 To: [EMAIL PROTECTED] Subject: RE: Tomcat Ok I got

RE: Tomcat

2004-11-26 Thread Dale, Matt
yeah, you could do it that way too. There are probably loads of ways but that's as good as any. Good luck Ta Matt -Original Message- From: Allen Beacon [mailto:[EMAIL PROTECTED] Sent: 26 November 2004 10:15 To: [EMAIL PROTECTED] Subject: RE: Tomcat What if I disable 8080 on tomcat

RE: Tomcat

2004-11-26 Thread Dale, Matt
enableLookups=true redirectPort=8443 acceptCount=100 debug=0 connectionTimeout=2 useURIValidationHack=false disableUploadTimeout=true / thak you yeah, you could do it that way too. There are probably loads of ways but that's as good as any. Good luck Ta Matt -Original Message

PHP to run under Tomcat

2004-11-28 Thread Matt Anderson
for your time and I thank you in advance. Kindest Regards, Matt Anderson - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Runtime.exec security issue?

2004-11-29 Thread Dale, Matt
This behaviour makes sense to me as you are trying to display an application but there is not necessarily a windows display associated with Tomcat so it doesnt know where to launch the app to. And by the lack of error message i'd guess that the application is actually getting launched but not

RE: Runtime.exec security issue?

2004-11-29 Thread Dale, Matt
You could be right. I still reckon that launching graphical programs from tomcat is gonna be a bit dicey. -Original Message- From: andy wix [mailto:[EMAIL PROTECTED] Sent: 29 November 2004 10:13 To: [EMAIL PROTECTED] Subject: RE: Runtime.exec security issue? Hi Matt, I have tried

RE: persisted Exception error

2004-11-29 Thread Dale, Matt
At least one of the objects in your session does not implement the Serializable interface, which it would need to do in order for you to persist sessions accross a tomcat reboot. Ta Matt -Original Message- From: Francesco Pellegrini [mailto:[EMAIL PROTECTED] Sent: 29 November 2004 10

RE: Runtime.exec security issue?

2004-11-29 Thread Dale, Matt
Have you tried the shutdown command without launching cmd? This could also be a permissions thing if you are running as a service. By default the service will run as a non-priviliged user which you'd have to change in order to reboot. -Original Message- From: andy wix [mailto:[EMAIL

RE: What Connector Should I Use?

2004-11-29 Thread Dale, Matt
JK or JK2 is the connector, the protocol is AGP. I would use the JK connector as it works and all advancements in JK2 are going to be back ported -Original Message- From: Thomas Charles Robinson [mailto:[EMAIL PROTECTED] Sent: 29 November 2004 16:00 To: [EMAIL PROTECTED] Subject: What

RE: mod_jk.so for HP-UX 11.11

2004-11-29 Thread Dale, Matt
have you got the Gnu versions of all the tools, ie gcc, make etc? -Original Message- From: Gibson, Danny [mailto:[EMAIL PROTECTED] Sent: 29 November 2004 18:01 To: '[EMAIL PROTECTED]' Subject: mod_jk.so for HP-UX 11.11 Hello All, Can someone put me out of my misery? I have attempted

Fedora Core 3

2004-12-01 Thread Matt Bathje
Hey all - I searched around on mail-archive and google for a bit and couldn't find anybody mentioning that they upgraded their Tomcat machines to use Fedora Core 3 yet. Has anybody done so? Any issues with Java or Tomcat after the upgrade? Thanks, Matt

Re: Fedora Core 3

2004-12-01 Thread Matt Bathje
upgrade wouldn't cause any extra headache. Matt Elihu Smails wrote: what version of tomcat? --- Matt Bathje [EMAIL PROTECTED] wrote: Hey all - I searched around on mail-archive and google for a bit and couldn't find anybody mentioning that they upgraded their Tomcat machines to use Fedora Core 3

mod_proxy_ajp

2004-12-02 Thread Dale, Matt
Title: mod_proxy_ajp Hi, Anyone know where i can downloaded it? And anyone know if it works with httpd 2.0.x? Ta Matt Any opinions expressed in this E-mail may be those of the individual and not necessarily the company. This E-mail and any files transmitted

RE: mod_proxy_ajp

2004-12-02 Thread Dale, Matt
Thanks for the info, I think i'll wait until a stable 2.2 before using it in production. Ta Matt -Original Message- From: Mladen Turk [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 14:54 To: Tomcat Users List Subject: Re: mod_proxy_ajp Dale, Matt wrote: Hi, Anyone know where i

RE: List Won't Unsubscribe me

2004-12-02 Thread Dale, Matt
you shouldn't have to put anything in either the body or subject, try emailing the list owner if it's not successful -Original Message- From: Janet Ciavarelli [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 21:07 To: [EMAIL PROTECTED] Subject: List Won't Unsubscribe me Hello, I'm

RE: clustering help

2004-12-02 Thread Dale, Matt
do you have the distributable/ tag in your applications web.xml? -Original Message- From: Nandish Rudra [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 22:08 To: Tomcat Users List (E-mail) Subject: clustering help Hello, I an running tomcat 5.0.28 on redhat 9 and having some

RE: clustering help

2004-12-03 Thread Dale, Matt
the second server you just change the hostname in your URL then this is never going to work. Ta Matt -Original Message- From: Nandish Rudra [mailto:[EMAIL PROTECTED] Sent: 02 December 2004 22:40 To: 'Tomcat Users List' Subject: RE: clustering help I have two jsp's for the same app

RE: tomcat-user-unsubscribe@jakarta.apache.org

2004-12-05 Thread Dale, Matt
I think you've misunderstood, you need to send an email to that address, not to the list with that address in the title. Ta Matt -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: 05 December 2004 12:15 To: Tomcat User Mailing List Subject: [EMAIL PROTECTED] Any

OT (Slightly): Large 64 bit JVMs

2004-12-06 Thread Dale, Matt
appreciated. Ta Matt Any opinions expressed in this E-mail may be those of the individual and not necessarily the company. This E-mail and any files transmitted with it are confidential and solely for the use of the intended recipient. If you are not the intended recipient or the person

RE: OT (Slightly): Large 64 bit JVMs

2004-12-06 Thread Dale, Matt
this when I'm in the office tomorrow. There may be other kernel parameters that i've not considered or maybe it just doesnt work. Thanks for the input. Ta Matt -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 06 December 2004 18:04 To: Tomcat Users List Subject: RE

RE: OT (Slightly): Large 64 bit JVMs

2004-12-07 Thread Dale, Matt
You can ignore this, I never put the -d64 switch so it was running in 32 bit mode. Ta Matt -Original Message- From: Dale, Matt Sent: 06 December 2004 20:47 To: Tomcat Users List Subject: RE: OT (Slightly): Large 64 bit JVMs I already know that the application will use that much

Threads issues in Tomcat 5.0.28

2004-12-07 Thread Matt Robinson
Hi, We have 5 instances of Tomcat 5.0.28 running on their own high performance servers (dual XEON / 2GB RAM, etc) receiving AJP13 connector requests via our main web server which has IIS 5, IIS redirector, and Tomcat4. This works great even under high loads except for one thing: after several

Consulting Opportunity: Thread issues in Tomcat 5.0

2004-12-07 Thread Matt Robinson
with a core group of developers and some happy, well-known customers. Matt [EMAIL PROTECTED] __ Do you Yahoo!? Yahoo! Mail - now with 250MB free storage. Learn more. http://info.mail.yahoo.com/mail_250

RE: OutOfMemory! Tomcat meets sudden spikes of used memory sometimes.

2004-12-08 Thread Dale, Matt
The fact that you have the same symptons in tomcat 4 and in 5 points towards your application as being the culprit. Is there any reason why you chose tomcat 5.0.18 instead of one of the many newer releases? I would find another profiler that works with both and try your tests again. Ta Matt

RE: Threads issues in Tomcat 5.0.28

2004-12-08 Thread Matt Robinson
to use these parameters with AJP13, but they can be used with the HTTP protocol. Anybody have any idea whether AJP13 supports these attributes in Tomcat 5.0? Thanks again, Matt --- Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, Once you get the thread dump, post it, and we can try to help you

Tomcat 5.5 Webapp logging.

2004-12-09 Thread Dale, Matt
. Obviously in 5.5 this is not possible and Log4J seems to be the way to go. I've tried this but not having much luck. I think it's just that I don't understand the log4j.properties file. Could someone perhaps post a sample that would do roughly what I need and I can tweak it from there. Ta Matt

RE: Tomcat 5.5 Webapp logging.

2004-12-09 Thread Dale, Matt
That's the one I tried but never got too far. I'll give it a another whirl and it should cut down on the errors from the 3rd party app in the short term and as long as they aren't in catalina.out i'll be happy. Ta Matt -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED

RE: Tomcat 5.5 Webapp logging.

2004-12-09 Thread Dale, Matt
thought that at least the file would be created even if nothing was in it. Any ideas? Ta Matt -Original Message- From: Dale, Matt Sent: 09 December 2004 15:41 To: Tomcat Users List Subject: RE: Tomcat 5.5 Webapp logging. That's the one I tried but never got too far. I'll give it a another

RE: Tomcat 5.5 Webapp logging.

2004-12-09 Thread Dale, Matt
://www.yoavshapira.com -Original Message- From: Dale, Matt [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 11:00 AM To: Tomcat Users List Subject: RE: Tomcat 5.5 Webapp logging. Hi, I can't even get it to create the log file and see no log4j related messages in the catalina.out

RE: Tomcat 5.5 Webapp logging.

2004-12-09 Thread Dale, Matt
tell me where it goes and point me to something that can help me decide what to put in it? In short I could do with a bit more detail if you wouldn't mind. Ta Matt -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: 09 December 2004 16:55 To: Tomcat Users List Subject: Re

RE: prevent multiple form posts using only servlets

2004-12-12 Thread Dale, Matt
The way I handle this is to use javascript to disable the submit button after it has been clicked. This used in conjuction with the other suggestions should cover all possibilities -Original Message- From: Elihu Smails [mailto:[EMAIL PROTECTED] Sent: Thursday, December 09, 2004 7:13 PM

RE: log4j and tomcat 5.5

2004-12-12 Thread Dale, Matt
Hopefully I explained things better and piqued your curiosity about repostiory selectors in Log4j-1.3 :-) You certainly have mine ;) -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: Friday, December 10, 2004 12:06 AM To: Tomcat Users List; Marcelo Moreira Subject:

RE: Tomcat Running out of Memory

2004-12-12 Thread Dale, Matt
I've replied to this further down the thread but as an aside there are ways to bump up the max process size to 3G (with kernel shenanigans) but 32 bit java is fixed at 2G. The figure 1850MB doesnt sounds quite right but it's probably related to the default max process size of 2G and the java

RE: Tomcat 5.5 Webapp logging.

2004-12-12 Thread Dale, Matt
difficulties. Hopefully I can capture the standard out of an app when I get the webapp log4j configuration to work. Thanks for the help and I'm sure you'll read it here if I have any more difficulty. Ta Matt -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: Thursday

RE: log4j and tomcat 5.5

2004-12-13 Thread Dale, Matt
Hi, Shameless plug accepted, is there somewhere I can download it or do I need to get it from CVS? Ta Matt -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 13 December 2004 14:02 To: Tomcat Users List Subject: RE: log4j and tomcat 5.5 Hi, -Original Message

RE: log4j and tomcat 5.5

2004-12-13 Thread Dale, Matt
ignore that, found the binary download. Ta Matt -Original Message- From: Dale, Matt Sent: 13 December 2004 14:37 To: Tomcat Users List Subject: RE: log4j and tomcat 5.5 Hi, Shameless plug accepted, is there somewhere I can download it or do I need to get it from CVS? Ta Matt

RE: 5.0 vs 5.5

2004-12-13 Thread Dale, Matt
Might as well go to 5.5.4 as it is stable and the way forwards. Management of the 2 is very similar. Ta Matt -Original Message- From: Dola Woolfe [mailto:[EMAIL PROTECTED] Sent: 13 December 2004 15:20 To: Tom Cat Subject: 5.0 vs 5.5 So I decided to upgrade my Tomcat (and go

RE: OutOfMemory Errors

2004-12-13 Thread Dale, Matt
Perhaps you just arent allocating enough memory for your application and there is no leak. As always i recommend getting a hold of jvmstat from sun and it'll give you some visual clues as to what is going on. -Original Message- From: Asim Alp [mailto:[EMAIL PROTECTED] Sent: 13 December

RE: visualgc and tomcat

2004-12-13 Thread Dale, Matt
The process will be named Bootstrap if that is of any use to you. Normally this is service related as the owner of the service is not the user you are logged in as but that appears not to be so in this case. -Original Message- From: Asim Alp [mailto:[EMAIL PROTECTED] Sent: 14 December

RE: Tomcat Running out of Memory

2004-12-12 Thread Dale, Matt
and not the full 1850MB of your heap. A tool you should look into is jvmstat which is available from sun and gives you a grahical representation of the heap real time so you can see what is running out. As a tip -XX:MaxPermSize=256M might be a good option for your JAVA_OPTS. Ta Matt

RE: Myth or Best practice : %@ page session=false %

2004-12-15 Thread Dale, Matt
Hi, If the session has not already been created then this will ensure that this jsp does not create it. If one exists already it won't destroy it but the JSP won't have access to it. I reckon it's good practice to use this, if you don't need a session, don't create it. Ta Matt -Original

RE: mod_jk2 future?

2004-12-20 Thread Dale, Matt
The recommended ways to go are JK or mod_proxy_ajp. Ta Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 20 December 2004 11:17 To: [EMAIL PROTECTED] Subject: mod_jk2 future? Hi all, I've a jsp-based application (interface to an oracle db) that will go

RE: Why is tomcat (java) so memory intensive?

2004-12-21 Thread Dale, Matt
and get jvmstat from sun, it will allow you to see which area in the heap runs out of space. Ta Matt -Original Message- From: Filip Hanik (lists) [mailto:[EMAIL PROTECTED] Sent: 21 December 2004 15:12 To: Tomcat Users List Subject: RE: Why is tomcat (java) so memory intensive? you

RE: Why is tomcat (java) so memory intensive?

2004-12-21 Thread Dale, Matt
Sounds like you are running out of space in the permanent generation. Add -XX:MaxPermSize=128M to your JAVA_OPTS -Original Message- From: Philippe Deslauriers [mailto:[EMAIL PROTECTED] Sent: 21 December 2004 15:47 To: Tomcat Users List; [EMAIL PROTECTED] Subject: RE: Why is tomcat (java)

RE: Why is tomcat (java) so memory intensive?

2004-12-21 Thread Dale, Matt
I think that's only with JDK 1.3 though -Original Message- From: Dakota Jack [mailto:[EMAIL PROTECTED] Sent: 21 December 2004 16:40 To: Tomcat Users List Subject: Re: Why is tomcat (java) so memory intensive? Why, then, does the Tomcat 5.0 say in the RELEASE-NOTES JAVAC leaking memory

dynamically compile JSPs

2004-12-22 Thread Matt Bathje
of doing this? Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: dynamically compile JSPs

2004-12-22 Thread Matt Bathje
as there is no serious downside. Thanks, Matt Tim Funk wrote: I would think that making the query string be jsp_compile=true would do it. For example: mypage.jsp?jsp_compile=true [I never tried it] -Tim Matt Bathje wrote: Hi all - If you have your tomcat servers setup with development=false (compiling every 5

RE: dynamically compile JSPs

2004-12-22 Thread Dale, Matt
This might be a long way round but you could call a system ant job to compile them. Or if it is appropriate in your environment you should just precompile them anyway, this way there will be no performance hit at all on your production server when a new deployment is made. Ta Matt

Re: dynamically compile JSPs

2004-12-22 Thread Matt Bathje
Well they are being precompiled at first. The problem is that some of the pages are being uploaded/overwritten through a web interface, and the changes aren't immediately visible to users. (They have to wait for the scheduled recompile to happen to see the changes they made.) Matt Dale, Matt

RE: dynamically compile JSPs

2004-12-22 Thread Dale, Matt
I'd go with my first suggestion then although I'm sure there's a better way. -Original Message- From: Matt Bathje [mailto:[EMAIL PROTECTED] Sent: 22 December 2004 17:12 To: Tomcat Users List Subject: Re: dynamically compile JSPs Well they are being precompiled at first. The problem

Re: dynamically compile JSPs

2004-12-22 Thread Matt Bathje
Oh, and setting development=true isn't really an option :) Matt Matt Bathje wrote: Well they are being precompiled at first. The problem is that some of the pages are being uploaded/overwritten through a web interface, and the changes aren't immediately visible to users. (They have to wait

Re: dynamically compile JSPs

2004-12-22 Thread Matt Bathje
is that you can catch any compile-time errors at that point and report back to the user with the trace, so you would never have any bad JSP's in production. Well...that is my question...I can't figure out how to do that compilation :) Matt

RE: Out of Memory when compiling JSP (Struts app on Tomcat 4.1.27)

2005-01-06 Thread Dale, Matt
It could also be that the Permanent Generation has filled up, look up the docs on how to increase that or start with -XX:MaxPermSize=128M -Original Message- From: SANTOS, DANIEL (SBCSI) [mailto:[EMAIL PROTECTED] Sent: 06 January 2005 14:57 To: Tomcat Users List; [EMAIL PROTECTED]

RE: java.lang.OutOfMemoryError Tomcat4.1.30

2005-01-07 Thread Dale, Matt
Increase the size of the heap. The default is only 64M. Ta Matt -Original Message- From: kjiang [mailto:[EMAIL PROTECTED] Sent: 06 January 2005 21:19 To: tomcat-user@jakarta.apache.org Subject: java.lang.OutOfMemoryError Tomcat4.1.30 Hi When tomcat (version 4.1.30) read in a large

Re: dynamically compile JSPs

2005-01-10 Thread Matt Bathje
for this is that I want the person uploading to have to deal with the extra processing time, and not the person loading the page. Any help with solving this problem would be greatly appreciated. Thanks, Matt - To unsubscribe, e-mail: [EMAIL

Tomcat 5.5.4 - Using a Context.xml File With a Path Different Than The File Name

2005-01-11 Thread Matt Mejaski
on how I can keep both of these contexts without changing my code in Context 1 that refers to the path /myapp/savedfiles, and hopefully without modifying my Tomcat server.xml? I appreciate any suggestions you may have. Thanks, Matt Mejaski

<    2   3   4   5   6   7   8   9   10   11   >