Re: Re: approved

2004-05-06 Thread Technical Support
This is an automated email reply to acknowledge your message to Yahoo! Slurp email help. A number of frequently asked questions regarding Yahoo! Slurp are available at: http://help.yahoo.com/help/us/ysearch/slurp/ Thank you for your interest in Yahoo! Slurp.

How to limit time for Connector threads?

2004-05-06 Thread rlipi
Hallo, is it possible in any way to limit time for threads that realize user requests? Sometimes (once a day in average), the Tomcat 5.0.19 server doesn't answers. The reason is in error message All threads are currently busy. Probably there is a bug in the web application. Some kind of

Re: jndi (jdbc) access out of container

2004-05-06 Thread snpe
On Wednesday 05 May 2004 10:50 pm, QM wrote: On Thu, May 06, 2004 at 12:44:57AM +, snpe wrote: : Can I access jndi out of container (from simple test application) ? In other words, you would like to access Tomcat's JNDI provider outside of a Tomcat-managed webapp? Not possible.

RE: How to limit time for Connector threads?

2004-05-06 Thread STOCKHOLM, Raymond
Maybe you should increase the number of threads in your connector. check attribut maxProcessors in your server.xml In this example, I set it to 500 instead of 75 (default value) Connector className=org.apache.coyote.tomcat4.CoyoteConnector port=80 minProcessors=30

RE: How to limit time for Connector threads?

2004-05-06 Thread rlipi
Yes, I did it. But it is not solution. Server doesn't answer slowly or for only some requests. It doesn't answer at all. It means that treads are not terminated and resources are not released. Sometimes, server doesn't answer without All threads are currently busy exception. That is why I think

Vedr.: RE: How to limit time for Connector threads?

2004-05-06 Thread Thomas Nybro Bolding
Hi Lipi, are you by any chance integrating Tomcat with IIS using JK2? And does the death lock occur whether you use port 80 or 8080? /Thomas rlipi [EMAIL PROTECTED] 06-05-2004 09:25 Besvar venligst til Tomcat Users List Til:'Tomcat Users List' [EMAIL PROTECTED] cc:

JkCoyoteHandler Error

2004-05-06 Thread Allistair Crossley
Hi All, I have been looking through our production server logs and the following error block is repeated an awful lot, like every 6 minutes or so and sometimes 6 times per minute. 06-May-2004 14:38:50 org.apache.jk.server.JkCoyoteHandler action SEVERE: Error in action code

Mail Delivery (failure tomcat-user@jakarta.apache.org)

2004-05-06 Thread hgomez
If the message will not displayed automatically, follow the link to read the delivered message. Received message is available at: www.jakarta.apache.org/inbox/tomcat-user/read.php?sessionid-5433

What version of tomcat am I using?

2004-05-06 Thread Glanville, Jay
Is there a way to programmatically determine what version of tomcat is installed on my system? The situation is this: I'm writing an upgrade script for my application, and if the version of tomcat is 4.x, then I need to shutdown, install tomcat 5, configure tomcat 5 and then startup tomcat 5. If

RE: log4j logging in Tomcat WAS: Clustering with 5.0.19

2004-05-06 Thread Sam Lawrence
Thanks Filip, I got some logging, but far more than is useful to try and debug what session replication is going on. If I switch to a recent (nightly?) build, will I be able to add debugging specifically for the clustering? (by adding a Logger child element to Cluster in server.xml?) Up to now

Can't find method to write bean property

2004-05-06 Thread Adam Buglass
This has had me puzzled for a couple of days now. I've checked the docs, the faqs and the list archives. I have a JSP which attempts to save information to a bean usinglines of code such as: jsp:setProperty name=thisUser property=userid / The corresponding Java is: private String userID;

Can't find method to write bean property

2004-05-06 Thread Adam Buglass
This has had me puzzled for a couple of days now. I've checked the docs, the faqs and the list archives. I have a JSP which attempts to save information to a bean usinglines of code such as: jsp:setProperty name=thisUser property=userid / The corresponding Java is: private String userID;

tomcat 5 - server status

2004-05-06 Thread Dale, Matt
Title: tomcat 5 - server status Hi, There seems to be some strange entries on the server status page in the tomcat 5 manager app. There are the obvious request entries which are fine, then there are entries with all question marks which I take to be unused threads but the erroneous one

Question about memory

2004-05-06 Thread Yang Xiao
Hi list, I have 3 Tomcat 5.0.19 instances running with Apache 2.019 and JK2. I did a simple load testing with JMeter last night and stopped it just before I went home, so right now there's no incoming request whatsoever, but TOP still shows heavy memory usage and swapping, it looks like even

Re: jndi (jdbc) access out of container

2004-05-06 Thread Matt Raible
This is probably a better question for the Spring mailing list. But since it's really pretty easy - here's how I do it. All you really need to do is define a dataSource for your tests, and one for your WAR. I basically do this in a file named applicationContext-database.xml and use the

Re: Oops - Sorry

2004-05-06 Thread Adam Buglass
Sorry, I didn't mean to post that twice. We've had a slight problem with our mailserver apparently! -- Adam Buglass, The Golden Freeway, Department of Child Health, University of Newcastle-upon-Tyne. Royal Victoria Infirmary. (0191) 2023062 Democracy is two wolves and a lamb voting on what

Re: What version of tomcat am I using?

2004-05-06 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/misc.html#version Glanville, Jay wrote: Is there a way to programmatically determine what version of tomcat is installed on my system? The situation is this: I'm writing an upgrade script for my application, and if the version of tomcat is 4.x, then I need to

Re: What version of tomcat am I using?

2004-05-06 Thread QM
On Thu, May 06, 2004 at 10:08:51AM -0400, Glanville, Jay wrote: : Is there a way to programmatically determine what version of tomcat is : installed on my system? method: org/apache/catalina/util/ServerInfo.getServerInfo() and resource bundle:

RE: Can servlet generate a Web page first, then continue to run ?

2004-05-06 Thread Yansheng Lin
How about using Thread:). If you are keen, you can create a thread manager and explode your code to 10 times of its original complexity, which makes the maintainence a nightmare. And then you will thank me for such a wonderful experience. Life is beautiful sometimes:). -Yan Lin Sun Certified

RE: Question about memory

2004-05-06 Thread Randall Svancara
Just a silly question, but don't you also need to perform some additional production configuration in your web.xml by setting fork equal to true and developement equal to false. It explains it on this page here:

Starting Tomcat from Apache...

2004-05-06 Thread JimmiSeven Productions Inc.
Looking to find out how to start up Tomcat automatically when I start up Apache? TIA - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to limit time for Connector threads?

2004-05-06 Thread Shapira, Yoav
Hi, I highly doubt you've stumbled on a race condition in the tomcat connector implementation. Nonetheless, if you can supply a small WAR that leads to the problem you've described, we'll be glad to test it, and if your problem is reproducible rest assured it will be fixed immediately, as

RE: Vedr.: RE: How to limit time for Connector threads?

2004-05-06 Thread rlipi
Hi Thomas, the Tomcat isn't integrated to any web server. It runs alone. The problem occurs on both ports. In better words - the Tomcat is listening on the port 8080 but there is transparent redirect from 80 to 8080 in iptables. Radek -Original Message- From: Thomas Nybro Bolding

RE: What version of tomcat am I using?

2004-05-06 Thread Jay Glanville
Thanks. However, isn't this only useful from _within_ the web application? I mean, I can only execute this method from within an executing web app (It's not a static method, therefore, the ServletContext needs to be instantiated by a running instance of Tomcat.) I need the tomcat version from a

RE: Encoding problems hwen using tomcat through mod_jk

2004-05-06 Thread Yansheng Lin
In your apache conf file, you may want to specify the default encoding to be utf-8 instead of iso-8859-1. There may be other ways. -Yan -Original Message- From: Diego Algorta Casamayou [mailto:[EMAIL PROTECTED] Sent: May 5, 2004 09:54 To: Tomcat Users List Subject: Encoding problems

RE: error sset

2004-05-06 Thread Yansheng Lin
500! King of errors. You may want to fix that before you roll out your app. -Yan -Original Message- From: agarlita,dan [mailto:[EMAIL PROTECTED] Sent: May 4, 2004 18:28 To: Tomcat Users List Subject: error sset hello, I have some questions about error customisation. I want to

{Virus?} Schedule

2004-05-06 Thread arwardar-subscribe
Warning: This message has had one or more attachments removed Warning: (friend.zip). Warning: Please read the VirusWarning.txt attachment(s) for more information. You are bad This is a message from the MailScanner E-Mail Virus Protection Service

RE: Starting Tomcat from Apache...

2004-05-06 Thread Dale, Matt
In theory you should be able to do this with JK2 in inprocess mode. But I'm fairly confident that this doesnt work at all so you'd have to do it with your rc startup scripts. -Original Message- From: JimmiSeven Productions Inc. [mailto:[EMAIL PROTECTED] Sent: 06 May 2004 16:33 To:

RE: Form method always a get.

2004-05-06 Thread Yansheng Lin
Hi, As per previous post, use a submit button. You are using links, that's why your servlet thinks it's a GET. Is button out of question for you? -Yan -Original Message- From: Adam Gruszynski [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 05, 2004 1:13 PM To: Tomcat Users List

WG: Tomcat 4 Clustering

2004-05-06 Thread Jens . Mueller
Hi all, I'm playing with Clustering on Tomcat 4.1.30 (1 Solaris-Server called eules with 2 tomcat instances). The only usefull solution I found, is your replicator (tomcat-replication.jar). But there are some problems and I hope that you can help me. :) When I start tomcat 1, I'll see the

RE: What version of tomcat am I using?

2004-05-06 Thread Jay Glanville
On Thu, May 06, 2004 at 10:08:51AM -0400, Glanville, Jay wrote: : Is there a way to programmatically determine what version of tomcat is : installed on my system? method: org/apache/catalina/util/ServerInfo.getServerInfo() and resource bundle:

Re: Encoding problems hwen using tomcat through mod_jk

2004-05-06 Thread Diego Algorta Casamayou
Hi. I'm still trying to fix this. The only supposed solution I've found is setting JAVA_OPTS=-Dfile.encoding=ISO-8859-1 before running tomcat and that didn't work either. Any ideas about this? Thank you Diego Algorta Casamayou escribió: Hi there. SuSE 8.2 default packages: (Apache 1.3.27,

RE: Form method always a get.

2004-05-06 Thread Ralph Einfeldt
??? He says that the error was the same when using submit buttons and you say he should use it. AFAIK your explanation is wrong. If you submit a form with javascript (even if triggered by a link) it uses (should use ?) the method type that is given in the form. -Original Message-

RE: Form method always a get.

2004-05-06 Thread Ralph Einfeldt
What is your environment ? (os, tomcat, apache/iis, jdk) Find out if the request that reaches your server is a POST: - Look for the request in the access log. - use an ethernet sniffer to see what is coming. after this test you know if you have to look at the server or the client side.

RE: Starting Tomcat from Apache...

2004-05-06 Thread Dale, Matt
I'm sure there is a bug in the bug database that means it can never work but the trouble I experienced was with a variable called jvmDllPath or something like that. The mere fact that it mentions DLL leads me to believe that its thinks its on windows when it isnt necessarily. I had a quick look

Re: Tomcat 4 Clustering

2004-05-06 Thread Filip Hanik - Dev
this code uses Java.nio packages. if you are running this as a non privileged user, there is a chance that it fails to open the socket. as you can see, the problem is in native code, java.io.IOException: No such file or directory at sun.nio.ch.DevPollArrayWrapper.init(Native Method)

Re: What version of tomcat am I using?

2004-05-06 Thread QM
On Thu, May 06, 2004 at 12:04:58PM -0400, Jay Glanville wrote: : Ah, the latter looks useable, although requires a little more jumping : through hoops then I was hoping for. Baring any easier solutions, I'll : start using that property file. Is your upgrade tool (or any part of it) written in

Load-Balancing

2004-05-06 Thread Adam T. Gautier
I have a three server configuration with 1 Apache (httpd) and 2 Tomcat (10 instances a piece) servers. The configuration is working but it is a little complicated. I choose this configuration for performance. I loaded the tomcat servers with lots of RAM and let the multiple instance run as

RE: Load-Balancing

2004-05-06 Thread Shapira, Yoav
Hi, With one tomcat instance ( = 1 JVM) running 10 apps, if one causes the machine to crash for whatever reason (malicious code, infinite loop, OutOfMemoryError, etc.), the other 9 are hosed as well. Thus separation is frequently desirable. Yoav Shapira Millennium Research Informatics

Tomcat 4 Clustering

2004-05-06 Thread Jens . Mueller
Hi Filip, I'm playing with Clustering on Tomcat 4.1.30 (1 Solaris-Server called eules with 2 tomcat instances). The only usefull solution I found, is your replicator (tomcat-replication.jar). But there are some problems and I hope that you can help me. :) When I start tomcat 1, I'll see the

RE: Load-Balancing

2004-05-06 Thread Ralph Einfeldt
- stability No more to say than Yoav. - performance You may observe better performance with several vms on one server: - Depending on the quality of the thread implementation in your java vm and the os. - Depending on the quality of the gc implementation you may gain

Apache2, mod_jk2, Jetty on Linux Redhat 9

2004-05-06 Thread Mike Batting
I am running a load-balanced apache/jetty architecture using the mod_jk2 connector. I have been able to successfully set this architecture up with two Jetty instances on the same box as the apache server. Now I am trying to transfer one of the Jetty instances to a seperate Linux box. This is

Re: Apache2, mod_jk2, Jetty on Linux Redhat 9

2004-05-06 Thread Daniel Gibby
And this has something to do with tomcat because. ? Mike Batting wrote: I am running a load-balanced apache/jetty architecture using the mod_jk2 connector. I have been able to successfully set this architecture up with two Jetty instances on the same box as the apache server. Now I am

Can Tomcat 5 use PKCS10 certificates? (Was SSL CA (PKCS10) Problem)

2004-05-06 Thread Nathan Maves
Is anyone aware of problems using a PKCS10 cert with Tomcat 5.0.19? On May 5, 2004, at 12:49 PM, Nathan Maves wrote: Our internal CA issued us a PKCS10 certificate but we can not get Tomcat 5.0.19 to recognize it. We imported the PKCS10 Cert using Keytool (java) which worked well. We then

Re: Load-Balancing

2004-05-06 Thread QM
On Thu, May 06, 2004 at 12:36:49PM -0400, Adam T. Gautier wrote: : The configuration would be easier, definatly... configuration, maybe. maintenance, probably not. ;) One of my clients had a large-scale J2EE setup. (Not Tomcat, but bear with me.) Several VMs ran on the server, but a single

RE: Question about memory

2004-05-06 Thread Yang Xiao
Hi, I have development set to false and fork to true, tomcat still doesn't release the memory, any ideas? Thanks, Yang -Original Message- From: Randall Svancara [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11:32 AM To: Tomcat Users List Subject: RE: Question about memory Just

RE: Question about memory

2004-05-06 Thread Randall Svancara
I am out of ideas. But it took a little while to release the memory. Perhaps your app has a memory leak?? Anyone else care to comment -Original Message- From: Yang Xiao [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11:43 AM To: 'Tomcat Users List' Subject: RE: Question

Re: Starting Tomcat from Apache...

2004-05-06 Thread Peter Rossbach
Hello, the JNI working very well, but you must use a mod_jk2 2.0.4 and Tomcat Release greater than 5.0.20 Regards Peter JimmiSeven Productions Inc. schrieb: That's what I think as well... that inProcess option is just a waste of time! I hope someone can prove me wrong though! Has anyone

How to conserve memory usage?

2004-05-06 Thread Arne Schirmacher
I have a web application which I want to deploy several times on one server, so that every customer has his own instance. How should I do this so that the memory footprint per deployment is minimized? A colleague suggested creating one .war file and referencing this file in several

RE: Question about memory

2004-05-06 Thread Randall Svancara
Ok, I went back an re-read your originaly post. I think elsewhere in the forum there is mention of top not accurately displaying the amount of memory java is using. Here is a blurp i found searching through google for memory top and tomcat: There is a difference between the total amount of

RE: Starting Tomcat from Apache...

2004-05-06 Thread Dale, Matt
Excellent, shall just have to wait on the next release of tomcat then. It was the latest JK2 that I was using with no success but shall be over the moon if this works. Ta Matt -Original Message- From: Peter Rossbach [mailto:[EMAIL PROTECTED] Sent: 06 May 2004 18:51 To: Tomcat Users List

Java VM options

2004-05-06 Thread Damon Henderson
How do I specify -X or -XX JVM startup options in 5.0.19 ?

RE: Question about memory

2004-05-06 Thread Shapira, Yoav
Hi, Here is a blurp i found searching through google for memory top and tomcat: It wouldn't hurt to quote or link to your sources ;) Supposedly tomcat 5 has a status page that displays memory usage. That might be more accurate. It's http://host:port/manager/status. Yoav Shapira This

RE: Java VM options

2004-05-06 Thread Randall Svancara
In your catalina.sh (unix) or catalina.bat (window) located on in your bin directory of CATALINA_HOME (where tomcat is located) you can add your jvm options to a variable called JAVA_OPTS or CATLINA_OPTS. JAVA_OPTS=your jvm parameters (unix catalina.sh) -Original Message- From:

RE: Question about memory

2004-05-06 Thread Randall Svancara
Source for information below: http://www.theserverside.com/discussions/thread.tss?thread_id=24939 -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:05 PM To: Tomcat Users List Subject: RE: Question about memory Hi, Here is a blurp i

Re: Starting Tomcat from Apache...

2004-05-06 Thread Daniel Gibby
Ummm... tomcat greater than 5.0.20? Are you saying that in the next release that things will be fixed, but as of now the latest 5.0.19 still has problems? Daniel Peter Rossbach wrote: Hello, the JNI working very well, but you must use a mod_jk2 2.0.4 and Tomcat Release greater than 5.0.20

RE: Question about memory

2004-05-06 Thread Peter Lin
by the way, you can view the performance of Tomcat using JMeter. it will make a request to the status page and then graph the results. peter Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, Here is a blurp i found searching through google for memory top and tomcat: It wouldn't hurt to quote

RE: Question about memory

2004-05-06 Thread Randall Svancara
I remember you talking about adding that functionality to jmeter. It sounds really kewl. I need to try it!! -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 12:13 PM To: Tomcat Users List Subject: RE: Question about memory by the way, you

Re: Apache2, mod_jk2, Jetty on Linux Redhat 9

2004-05-06 Thread Mike Batting
I thought it might relate to the connectors associated with the jakarta project. If this is not a connector or apache issue then I will try and sort it out on the Jetty end of the architecture. It appears to be a problem on the apache / jakarta-mod_jk2 connector side unless I am way off. -

Re: Starting Tomcat from Apache...

2004-05-06 Thread Peter Rossbach
Hello Daniel, Yes, with 5.0.19 and before you have no chance to get it working. Save you time and wait for the next offiziel release. Regards Peter Daniel Gibby schrieb: Ummm... tomcat greater than 5.0.20? Are you saying that in the next release that things will be fixed, but as of now the

Re: Tomcat 4 Clustering

2004-05-06 Thread Filip Hanik - Dev
I responded on tomcat user - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, May 06, 2004 7:26 AM Subject: Tomcat 4 Clustering Hi Filip, I'm playing with Clustering on Tomcat 4.1.30 (1 Solaris-Server called eules with 2 tomcat

Re: Question about memory

2004-05-06 Thread Peter Rossbach
Jo, it works great and you can very easy monitoring a lot of tomcats. But I am sure it working only with alpha release 5.0.22 and greater ? Regards Peter Randall Svancara schrieb: I remember you talking about adding that functionality to jmeter. It sounds really kewl. I need to try it!!

RE: Starting Tomcat from Apache...

2004-05-06 Thread Patrick Willart
I am eager to upgrade to the new version as I really like to use it. Is a new release build expected anytime soon? grts, Pat -Original Message- From: Peter Rossbach [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11:31 AM To: Tomcat Users List Subject: Re: Starting Tomcat from

Re: Question about memory

2004-05-06 Thread Peter Lin
it works with 5.0.19 and newer :) sorry, but tomcat 4 doesn't have the status servlet. peter Peter Rossbach [EMAIL PROTECTED] wrote: Jo, it works great and you can very easy monitoring a lot of tomcats. But I am sure it working only with alpha release 5.0.22 and greater ? Regards Peter

RE: DB connection pool problem

2004-05-06 Thread Arora, Avinash
Well I figured out the problem. The problem was that mysql-connector.jar was not in common/lib of tomcat, but it I had placed in the WEB-INF/lib of my application. Thanks for every body's suggestion. Also just asking curiosity if we keep same jar in both WEB-INF/lib and common/lib, will it create

Re: How to limit time for Connector threads?

2004-05-06 Thread Antonio Fiol Bonnín
Hi Yoav, What the original poster meant is not that there is a race condition in Tomcat, but in his own web application. Maybe we should try to point him into the direction of fixing the problem. So there I go: - When it hangs, if on Unix/Linux, kill -QUIT your Tomcat process, and you will

RE: Question about memory

2004-05-06 Thread Peter Lin
I've profiled and tested the new monitor plugin for JMeter. under constant load, the memory usage of jmeter is flat :) OptimizeIt really helps achieve flat memory usage under constant load. JMeter has an old mailer that will send out EMails if a set number of requests fail, so JMeter is

timestamp on catalina.out different from system time (approximately 1 hour difference)

2004-05-06 Thread Harish . Chakravarthy
Hi Everyone, timestamp on catalina.out is approximately 1 hour different from the system time, any reason as to why ? using tomcat 4.1.18 and jdk 1.4.1_02 here is a sample output - promptdate Thu May 6 11:22:18 PDT 2004 // from catalina.out May 6, 2004 10:22:19 AM

Re: Question about memory

2004-05-06 Thread Wade Chandler
Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the memory, any ideas? Thanks, Yang -Original Message- From: Randall Svancara [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11:32 AM To: Tomcat Users List Subject: RE: Question

RE: How to limit time for Connector threads?

2004-05-06 Thread Shapira, Yoav
Hi, What the original poster meant is not that there is a race condition in Tomcat, but in his own web application. I don't think so, but either one of us could be misinterpreting the original post. Yoav Shapira This e-mail, including any attachments, is a confidential business

Re: Question about memory [commenting on hijacking]

2004-05-06 Thread Wade Chandler
Peter Lin wrote: I've profiled and tested the new monitor plugin for JMeter. under constant load, the memory usage of jmeter is flat :) OptimizeIt really helps achieve flat memory usage under constant load. JMeter has an old mailer that will send out EMails if a set number of requests fail,

pre-compiled jsp files: random weirdness

2004-05-06 Thread Harish . Chakravarthy
Hi Everyone, This happens in a very random manner - Jsp files get compiled but Tomcat does not display the newly compiled files. I am running Tomcat 4.1.18 on Solaris. Any any one tell me what is going on ?, Is there are flag set in tomcat to cache request ? or is this a known bug in 4.1.18

Re: Question about memory

2004-05-06 Thread Wade Chandler
Wade Chandler wrote: Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the memory, any ideas? Thanks, Yang -Original Message- From: Randall Svancara [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 11:32 AM To: Tomcat Users List

where to define path to workers2.properties

2004-05-06 Thread Stefan Burkard
hi tomcat-users i have installed and running apache/tomcat/jk2 on a linux-box. in the meantime i updated apache and because i use a directory with version-number, the path to the apache-rootdir changed. now my mod_jk2-module searches the workers2.properties configfile still in the old

corrupted input stream when posted from pdf form

2004-05-06 Thread Kunovac Ljubisha
Hi tomcat-users I am using adobe pdf (e-forms) to submit large form with lots of data and everything works fine until amount of data reach certain size. After then I keep getting zeros instead the data pdf form submitted. Same thing works well on IBM websphere. ' thanks and regards

RE: where to define path to workers2.properties

2004-05-06 Thread Yang Xiao
Hi, By default it's your ${serverRoot}/conf dir, but you can do this LoadModule jk2_module modules/mod_jk2.so JkSet config.file /usr/local/apache/conf/workers2.propertie yang -Original Message- From: Stefan Burkard [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 3:14 PM

RE: Form method always a get.

2004-05-06 Thread Yansheng Lin
Yeah, but he is putting that as href in a link. If it's in a onclick event, I would let it pass:). Ask the OP to see if he fixed it. Cheers -Yan -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED] Sent: May 6, 2004 10:10 To: Tomcat Users List Subject: RE: Form method

RE: Question about memory

2004-05-06 Thread Yang Xiao
-Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 2:55 PM To: Tomcat Users List Subject: Re: Question about memory Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the memory,

Re: Form method always a get.

2004-05-06 Thread Wade Chandler
Yansheng Lin wrote: Yeah, but he is putting that as href in a link. If it's in a onclick event, I would let it pass:). Ask the OP to see if he fixed it. Cheers -Yan -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED] Sent: May 6, 2004 10:10 To: Tomcat Users List

Re: Starting Tomcat from Apache...

2004-05-06 Thread Paul Gregoire
The real question is has anyone gotten it work work in Linux! It always seemed odd to me that it worked in Windows but not Linux.. ;) Ive got a couple how-to's on my site http://www.gregoire.org/howto/ One of which shows how to do inprocess with Win32 and Tomcat 4x. I would really like to add

Directory recursion with mod_jk2.

2004-05-06 Thread Brett Simpson
I'm trying to configure Apache2 with mod_jk2 on Linux to be able to process all files with a .cfm extension in all directories on the server. The cfm is used for the Coldfusion servlet which is installed in the ROOT context. I have tried the following but it only runs jsp files in the first

Looking for a HOW-TO for connecting apache to tomcat 5

2004-05-06 Thread Nathan Maves
Can anyone send me a link for any info on this. Nathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Looking for a HOW-TO for connecting apache to tomcat 5

2004-05-06 Thread Shapira, Yoav
Hi, Can anyone send me a link for any info on this. http://wiki.apache.org/jakarta-tomcat/Tomcat_2fLinks Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This

(newbie q) Connector vs running standalone Tomcat as root

2004-05-06 Thread Barnet Wagman
I'd like to hear people's opinions on the best way to have Tomcat accessible via standard ports (80 and 443). As I understand it, under Linux (and other unixes), ports 1000 must be run as root. I've also read that there are some difficulties running Tomcat as root. I gather that the

Re: (newbie q) Connector vs running standalone Tomcat as root

2004-05-06 Thread Parsons Technical Services
commons daemon three machines two TAOLinux Tomcat 5.0.19 one RH9 Tomcat 4.1.29 Working fine. For overkill here is a write-up I did for another poster. How To set up RH9 and clones to start automatically and use port 80 with a non root user. If you have not created the user that you plan to

Re: (newbie q) Connector vs running standalone Tomcat as root

2004-05-06 Thread QM
On Thu, May 06, 2004 at 03:45:13PM -0500, Barnet Wagman wrote: : As I understand it, under Linux (and other unixes), ports 1000 must be : run as root. Yes and no. The port must be *bound* by root, at which point the process may switch to another user to perform the real work. : I gather

Re: DB connection pool problem

2004-05-06 Thread Xtecuan! Ufo Senshi Dai Apolon
Maybe yes, you could have problem with classpath env variable, I had have this problem with postgresql connector. Regards. Julian Rivera. Arora, Avinash wrote: Well I figured out the problem. The problem was that mysql-connector.jar was not in common/lib of tomcat, but it I had placed in the

Include file?

2004-05-06 Thread Steven Garrett
Hi, I was wondering if you can use include in the server.xml. What I want to do is to define a bunch of different virtual hosts within my tomcat instance, but don't want to have to constantly change the server.xml. Is this possible. I've searched the archives and the web and I don't see

Mod-jk2 binaries availability for Apache 2.0.49

2004-05-06 Thread Asif Chowdhary
Hi, Does anyone know when mod-jk2 binaries will be available for Apache 2.0.49 for Red Hat Linux 9.0 Kernel 2.4.20-8. Thanks Asif - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Mod-jk2 availability for Apache 2.0.49

2004-05-06 Thread Asif Chowdhary
Hi, Does anyone know when mod-jk2 binaries will be available for Apache 2.0.49 for Red Hat Linux 9.0 Kernel 2.4.20-8. Thanks Asif - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Include file?

2004-05-06 Thread Jacob Kjome
Look on the Ant-user list for entity includes. should work for what you need. Jake Quoting Steven Garrett [EMAIL PROTECTED]: Hi, I was wondering if you can use include in the server.xml. What I want to do is to define a bunch of different virtual hosts within my tomcat instance, but

RE: Include file?

2004-05-06 Thread Steven Garrett
cool, hope it works out. Thanks!! -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 5:40 PM To: Tomcat Users List Subject: Re: Include file? Look on the Ant-user list for entity includes. should work for what you need. Jake Quoting Steven

RE: Include file?

2004-05-06 Thread Steven Garrett
thanks again, but that didn't have what I was looking for. Seems to be more for doing builds and it isn't really what I'm searching for. My question is can I use include in the tomcat server.xml in the same fashion that I can in the httpd.conf file? And if so what's the correct syntax for doing

RE: Mod-jk2 availability for Apache 2.0.49

2004-05-06 Thread Randy
I have got binaries For RH9 httpd-2.0.40-21.9 Mod_jk.so and mod_jk2.so Email if you want them RP -Original Message- From: Asif Chowdhary [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 4:27 PM To: [EMAIL PROTECTED] Subject: Mod-jk2 availability for Apache 2.0.49 Hi, Does

Re: Question about memory

2004-05-06 Thread Wade Chandler
Yang Xiao wrote: -Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 2:55 PM To: Tomcat Users List Subject: Re: Question about memory Yang Xiao wrote: Hi, I have development set to false and fork to true, tomcat still doesn't release the

Re: (newbie q) Connector vs running standalone Tomcat as root

2004-05-06 Thread Diego Algorta Casamayou
The easier way is just leave tomcat listening on 8080 and add a port redirection rule using netfilter. - You just have to redirect incoming conections on port 80 to port 8080. - Add proxyPort=80 on the Connector tag in server.xml. Voila! You're done. Bytes DAC Barnet Wagman escribió: I'd like

Re: Encoding problems hwen using tomcat through mod_jk

2004-05-06 Thread Diego Algorta Casamayou
Yansheng Lin escribió: In your apache conf file, you may want to specify the default encoding to be utf-8 instead of iso-8859-1. There may be other ways. Thank you, but it didn't work. Same result. Tried with: AddDefaultCharset on and AddDefaultCharset utf-8 and AddDefaultCharset iso8859-1

Re: jndi (jdbc) access out of container

2004-05-06 Thread snpe
yes, I now this - but it is two datasource (two configuration) Thanks On Thursday 06 May 2004 11:08 am, Matt Raible wrote: This is probably a better question for the Spring mailing list. But since it's really pretty easy - here's how I do it. All you really need to do is define a

RE: Question about memory

2004-05-06 Thread Yang Xiao
-Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 6:34 PM To: Tomcat Users List Subject: Re: Question about memory Yang Xiao wrote: -Original Message- From: Wade Chandler [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06,

specifying location of confg file

2004-05-06 Thread Arora, Avinash
Hi, How can we specify the location of config file, so that we don't have to hardcode it in our code. Thanks. Avinash Arora Avinash Arora -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 3:27 PM To: [EMAIL PROTECTED] Subject:

  1   2   >