SV: Enqueuing users requests

2007-11-20 Thread Wilhelmsen Tor Iver
I noticed that users are able to click several times at times and their actions are queued. But I'd prefer if the server drops any new request if the first one is not completed. Do you know if it is possible to configure the system to behave this way ? A common way to do this is using a token

Re: mod_proxy_ajp TIME_WAIT

2007-11-20 Thread David Cassidy
Hi Jim !!! This is fantastic news ! When is 2.2.7 going to be released ? :) Many many thanks David On Mon, 2007-11-19 at 15:27 -0500, Jim Jagielski wrote: 2.2.6 has a nasty bug were AJP connections are being closed when they shouldn't. 2.2.7 will fix that. In the meantime, trying

Killing tomcat java process, Windows

2007-11-20 Thread jimpo
I run two separate tomcat 6 instances on my development environment. Once I have redeployed the application enough times, the tomcat java.exe freezes and has to be shutdown using control-c. shutdown.bat does not work most of the times. I start the tomcat processes with startup.bat, they are not

codeBase changes if antiResourceLocking is active - Security policy fails

2007-11-20 Thread Markus Kiss
Hello, I'm using Tomcat 6.0 with the security option in order to assign different permissions to several webapps running within the Tomcat security sandbox. However, I've encountered the following effect when I activate the antiJARLocking and antiResourceLocking flags in the context.xml file

how to create multiple instances

2007-11-20 Thread raghav
how to create multiple instances for tomcat? -- View this message in context: http://www.nabble.com/TomCat-users%27-list%2C--forum-or-documentation---tf3716251.html#a13854150 Sent from the Tomcat - User mailing list archive at Nabble.com.

Re: Newbie mod_jk question - Getting HTTP 404 error for existing servlets-examples directory

2007-11-20 Thread Rainer Jung
K S wrote: Hi, I am a newbie to both Apache and Tomcat. I am using Apache 2.0.55, Tomcat 5.5.25, mod_jk 1.2.25 and Ubuntu ( 2.6.17-10-server) It seemed like I had the complete redirection working at one point, but unfortunately after no apparent change (that I can recollect), things just

Re: How to Deploy WAR using a sub-context path?

2007-11-20 Thread Johnny Kewl
--- HARBOR: http://coolharbor.100free.com/index.htm Now Tomcat is also a cool pojo application server --- Chuck... check me here ;) I started wondering

multiple instances for tomcat6.0

2007-11-20 Thread nagabandi raghavender
Hi, How to create multiple instances for tomcat 6.0. please give me the procedure for doing this. Thanks, Raghavender

Apache 6.0.14, catalina.out log problem

2007-11-20 Thread Christos Vasilakis
Hi there, I have just installed apache-tomcat 6.0.14 under Linux I modified $CATALINA_HOME/conf/tomcat-users.xml and added the following entries: ?xml version='1.0' encoding='utf-8'? tomcat-users role rolename=tomcat/ role rolename=manager/ role rolename=admin/ user username=xvas password=foo

Re: Apache 6.0.14, catalina.out log problem

2007-11-20 Thread Rainer Jung
Christos Vasilakis wrote: Hi there, I have just installed apache-tomcat 6.0.14 under Linux I modified $CATALINA_HOME/conf/tomcat-users.xml and added the following entries: ?xml version='1.0' encoding='utf-8'? tomcat-users role rolename=tomcat/ role rolename=manager/ role rolename=admin/ user

Re: multiple instances for tomcat6.0

2007-11-20 Thread Konstantin Kolinko
1. Read RUNNING.txt that comes with Tomcat distribution. There is a chapter entitled Advanced Configuration - Multiple Tomcat Instances. The trick is to have several $CATALINA_BASE directories for different instances of Tomcat. 2. Make sure that your $CATALINA_BASE\conf\server.xml specify

Re: Killing tomcat java process, Windows

2007-11-20 Thread myrealbruno
Janne, When running Tomcat as a Windows service it will appear in the task manager as - for instance - Tomcat5.exe. For each instance I use to rename the Tomcat executable to the instance name, so to distinguish between them easily. Note that you will have to change a bit the service installer

Port in address to tomcat webpage?

2007-11-20 Thread jdpl
Hi, how come when I'm accessing a page on my local apache, i always have to put in the port number, e.g: http://localhost:8080/somepage but when i'm accessing a remote website, i never put in the port number. Is there anyway I can configure my tomcat to not use the port number? thanks, J --

Re: Comet: response.sendRedirect() Problem

2007-11-20 Thread Jens Hagel
Hi filip, i've patched my Tomcat. Now, it works! Thank you! ;-) regards, jens On Nov 14, 2007 6:21 PM, Filip Hanik - Dev Lists [EMAIL PROTECTED] wrote: hi Jens, you've uncovered a bug in Tomcat. basically, Tomcat doesn't respect that you are calling CometEvent.close upon the BEGIN event.

Re: Port in address to tomcat webpage?

2007-11-20 Thread GF
when you go on normal websites, you are using port 80. look for 8080 in your server.xml and change it to 80 bye On Nov 20, 2007 3:14 PM, jdpl [EMAIL PROTECTED] wrote: Hi, how come when I'm accessing a page on my local apache, i always have to put in the port number, e.g:

Re: Port in address to tomcat webpage?

2007-11-20 Thread David Smith
When you don't give your browser get a port number, it assumes port 80 which is the registered, well known port for web traffic as defined by the IANA. Production websites all listen on port 80 which is why you never have to put it in your URLs to Google for example. The entire list of these

Re: Killing tomcat java process, Windows

2007-11-20 Thread jimpo
Great, seems like a good plan, I'll try that. It also seems there is no need to install support tools kit for the kill command, as Windows XP comes with taskkill command which I can use. br1 wrote: Janne, When running Tomcat as a Windows service it will appear in the task manager as -

cluster deployer (farming)

2007-11-20 Thread Yair Ben-Meir
Hi If I understand correctly, the cluster deployer is currently broken (I've tried running it with two tomcat instances on my machine in a cluster, and it threw me some exceptions). Is it going to be fixed? And if so, when? Thanks Yair Ben-Meir Office: 073-7997801 Fax:

javax/mail/address

2007-11-20 Thread Dustin Fortin
Hello, To begin, I have around 39 working tomcat 5.0.25 app servers running that have been running for years. I have been asked to upgrade to tomcat 6.0.14. Initially i tried to port over configuration files libraries, ectera.but that proved to be messy and was not recommended by this

Configure webapp Session timeout

2007-11-20 Thread Bob Riaz
Hello all, We're running a servlet that processes responses from an online test. The test is 2 hrs long, and we find that if a user does not make a request from his browser (saves a test answer) the sesion times out, and when he does next try to save an answer the servlet bounces him back to the

Re: Comet: response.sendRedirect() Problem

2007-11-20 Thread Filip Hanik - Dev Lists
Jens Hagel wrote: Hi filip, i've patched my Tomcat. Now, it works! Thank you! ;-) you're welcome, this will also be included in the next release Filip regards, jens On Nov 14, 2007 6:21 PM, Filip Hanik - Dev Lists [EMAIL PROTECTED] wrote: hi Jens, you've uncovered a bug in Tomcat.

RE: javax/mail/address

2007-11-20 Thread Dustin Fortin
Thats the frustrating part, there is no thread dump. When I tail the logs all I get is that tomcat is starting up, but it never gets further than that. It just hangs, and when I try to access the manager or any webapp I get a connection timeout. thanks -dustin -Original Message- From:

ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I do the make command.

2007-11-20 Thread Blumlein,Richard
Hello, Apache web server 1.3.31 Tomcat is at 5.5.20 AIX 5.3 I am attempting to build the Apache Web Server to Tomcat connector mod_jk. I have spent the last couple of days reviewing the docs and internet and I am not sure what is causing this. It seems to indicate a syntax issue with the nm

RE: javax/mail/address

2007-11-20 Thread Caldarale, Charles R
From: Dustin Fortin [mailto:[EMAIL PROTECTED] Subject: RE: javax/mail/address Thats the frustrating part, there is no thread dump. You have to take a thread dump; there won't be one generated automatically. Use kill -3 on Linux, ctrl-break on Windows. - Chuck THIS COMMUNICATION MAY

RE: javax/mail/address

2007-11-20 Thread Caldarale, Charles R
From: Dustin Fortin [mailto:[EMAIL PROTECTED] Subject: javax/mail/address When I have mail.jar in lib, this is as far as the tomcat startup gets. What does a thread dump show in the hang situtaion? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Rainer Jung
Niki Diulgerov wrote: Hello there, I'm trying to setup IIS6 + apache_tomcat running on different machine. I read alot on internet and succeeded to implement this but now (maybe very simple) problem appeared. if I set in uriworker.maps /*=client where client is my worker and open the site ...

RE: Configure webapp Session timeout

2007-11-20 Thread Dustin Fortin
That timeout is set to 60 seconds as it is. Even then it wont throw a stack trace to log, or to the web browser. -dsutin -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 11:24 AM To: Tomcat Users List Subject: RE: Configure

RE: javax/mail/address

2007-11-20 Thread Dustin Fortin
Yes, activation.jar is in the lib folder along with mail.jar. -dustin -Original Message- From: Markus Schönhaber [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 11:25 AM To: users@tomcat.apache.org Subject: Re: javax/mail/address Dustin Fortin wrote: When I put mail.jar

Socket_keepalive

2007-11-20 Thread Andrew Hole
I need to define socket_keepalive parameter... but in Windows server 2003 I think that doesn't exist SO keepalive interval. How can I resolve this? Thanks a lot - To start a new topic, e-mail: users@tomcat.apache.org To

RE: Configure webapp Session timeout

2007-11-20 Thread Caldarale, Charles R
From: Bob Riaz [mailto:[EMAIL PROTECTED] Subject: Configure webapp Session timeout I wondered if anybody knew how to configure the session for one particular webapp. Set the session-timeout in that webapp's WEB-INF/web.xml file; it will override the global one. - Chuck THIS

isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Niki Diulgerov
Hello there, I'm trying to setup IIS6 + apache_tomcat running on different machine. I read alot on internet and succeeded to implement this but now (maybe very simple) problem appeared. if I set in uriworker.maps /*=client where client is my worker and open the site ... default tomcat home page

Re: javax/mail/address

2007-11-20 Thread Markus Schönhaber
Dustin Fortin wrote: When I put mail.jar into the lib folder (which many of my webapps require) tomcat never boots up. It stalls on boot with nothing being thrown to log. Just a WAG (don't know if this even remotely related): you do put activation.jar into the lib folder along with mail.jar?

RE: javax/mail/address

2007-11-20 Thread Dustin Fortin
In catalina.out this error is new: Cannot create JDBC driver of class '' for connect URL 'null' java.lang.NullPointerException at sun.jdbc.odbc.JdbcOdbcDriver.getProtocol(JdbcOdbcDriver.java:507) at sun.jdbc.odbc.JdbcOdbcDriver.knownURL(JdbcOdbcDriver.java:476) at

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I do the make command.

2007-11-20 Thread Rainer Jung
Blumlein,Richard wrote: Hello, Apache web server 1.3.31 Tomcat is at 5.5.20 AIX 5.3 I am attempting to build the Apache Web Server to Tomcat connector mod_jk. I have spent the last couple of days reviewing the docs and internet and I am not sure what is causing this. It seems to indicate a

Re: How Do I use Tomcat 6.0.14 as a http Proxy?

2007-11-20 Thread Filip Hanik - Dev Lists
Tomcat doesn't have built in proxy capabilities. You want to use Apache in front of Tomcat, not the other way around Filip Tony Anecito wrote: Hi All, I found some old documentation and looking for something more current than 2004 about how to use Tomcat as a http proxy to say Apache. I am

Re: javax/mail/address

2007-11-20 Thread Pid
Post your JDBC/Datasource config(s), (sans passwords obviously). Where is it defined, in a context.xml or server.xml? p Dustin Fortin wrote: In catalina.out this error is new: Cannot create JDBC driver of class '' for connect URL 'null' java.lang.NullPointerException at

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Niki Diulgerov
Yes it works when I connect directly to tomcat Best regards, Nikolay Diulgerov Network Administrator E-mail: [EMAIL PROTECTED] Telephone : +33 4 89 87 77 77 Fax : +33 4 89 87 77 00 Web: http://www.codix-france.com Rainer Jung wrote: Niki Diulgerov wrote: Hello there, I'm trying to

Re: cluster deployer (farming)

2007-11-20 Thread Filip Hanik - Dev Lists
as soon as someone has time to fix it, contributions are welcome Filip Yair Ben-Meir wrote: Hi If I understand correctly, the cluster deployer is currently broken (I’ve tried running it with two tomcat instances on my machine in a cluster, and it threw me some exceptions). Is it going to

Re: Tomcat 5.5 - Virtualhost - context configuration for the zero path

2007-11-20 Thread Schadler Johann
I have moved the docBase to /vhosts/past-int/PaST and I have modified the CATALINA_BASE/conf/EngineName/HostName/ROOT.xml to direct docBase to the new phyiscal path. After stopping the JVM, deleting the CATALINA_BASE/work/EngineName/HostName/_ and starting up the JVM again I get a NullPointer

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Niki Diulgerov
Here is the log from isapi_redirect setup with DEBUG level I'm trying to access the TOMCAT MANAGER link from the default tomcat page (with the appropriate user and pass) when I'm trying from IIS it just shows again and again the window for user and pass. When I'm trying to do the same directly

RE: javax/mail/address

2007-11-20 Thread Propes, Barry L
others may tell you like they told me, but you probably ought to get rid of that sun.jdbc.odbc.JdbcOdbcDriver if you can and use a good one. Not that that is all of the problem. -Original Message- From: Dustin Fortin [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 10:46 AM

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Rainer Jung
Niki Diulgerov wrote: Yes it works when I connect directly to tomcat Best regards, Activate an access log in tomcat and check, if you are really talking to the right instance. Even if access gets denied, one access log line should show up. What's the header text of the basic

Re: tomcat 4 doesn't start properly

2007-11-20 Thread Hamid Rahman Mohmand
Dear Mark, Thanks. No I didn't look in the logs! but unfortunately now my windows is crashed and I have to reinstall everythign from the begining, i will see and if I got the same problem i will look at the logs for sure. Thanks for the nice hint, regards hamid On 11/19/07, Mark Thomas [EMAIL

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Niki Diulgerov
Something strange is that the header of the window asking for authentication through IIS is: Enter username and password for at http://192.9.202.10:8081 And the window which appears when I connect directly to tomcat : Enter username and password for Tomcat Manager Application at

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I dp a make.

2007-11-20 Thread Blumlein,Richard
Hi Rainer, Yes there were numerous -mode=compile statements before the first -mode=link which failed. It seems there is a hole in the process. I am following various docs which say to run the configure, then the make/make install. Yes, it seems something is not being passed properly. Rich

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-20 Thread Niki Diulgerov
Another strange thing which I just discovered is that in mozilla firefox (connecting to IIS) if I press cancel on the first window asking for user and pass... another one appears with header Enter username and password for Tomcat Manager Application at http://192.9.202.22:8081 and when I put

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I dp a make.

2007-11-20 Thread Rainer Jung
Blumlein,Richard wrote: Hi Rainer, Yes there were numerous -mode=compile statements before the first -mode=link which failed. It seems there is a hole in the process. I am following various docs which Those files need to be show up again as arguments in the libtool link step, which in

RE: javax/mail/address

2007-11-20 Thread Dustin Fortin
Its in the server.xml. See below: --There are many more like this depending on context. Should these database definitions be defined in the local contexts? Usernames and passwords are held in the tomcat-users.xml file. Resource name=UserDatabase auth=Container

Re: how to create multiple instances

2007-11-20 Thread Mark Thomas
raghav wrote: how to create multiple instances for tomcat? When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. This is known as thread hijacking and to many of the list archiving services and mail

RE: javax/mail/address

2007-11-20 Thread Dustin Fortin
Thank you, I'll read the docs. -dustin -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 20, 2007 1:43 PM To: Tomcat Users List Subject: RE: javax/mail/address From: Dustin Fortin [mailto:[EMAIL PROTECTED] Subject: RE:

RE: Configure webapp Session timeout

2007-11-20 Thread Caldarale, Charles R
From: Dustin Fortin [mailto:[EMAIL PROTECTED] Subject: RE: Configure webapp Session timeout That timeout is set to 60 seconds as it is. Since your servlet runs for 2 hours, a 60-second timeout seems a mite on the short side... Even then it wont throw a stack trace to log, or to the web

RE: javax/mail/address

2007-11-20 Thread Caldarale, Charles R
From: Dustin Fortin [mailto:[EMAIL PROTECTED] Subject: RE: javax/mail/address Should these database definitions be defined in the local contexts? If you want Tomcat to manage the database connections, then server.xml is appropriate. Resource name=jdbc/Admin auth=Container

RE: unable to access Tomcat Admin

2007-11-20 Thread Caldarale, Charles R
From: Ralph [mailto:[EMAIL PROTECTED] Subject: unable to access Tomcat Admin After starting the tomcat server, when I click on the Tomcat Administration link, I got the following error message just like before Your browser has likely cached the page. Refresh it. I typed

Re: Newbie mod_jk question - Getting HTTP 404 error for existing servlets-examples directory

2007-11-20 Thread K S
Thanks a lot Rainer! The problem as you guessed was with the Vhost. After putting the JkMounts in the global server configuration, it worked. I started using the VHost (though now I have realised I don't need them at all since I am not hosting more than one website on a single server) because the

unable to access Tomcat Admin

2007-11-20 Thread Ralph
Hi I have a question about tomcat 5.5 admin pacakge. I downloaded it and installed it according to the instruction. After starting the tomcat server, when I click on the Tomcat Administration link, I got the following error message just like before Tomcat's administration web application

Re: mod_proxy_ajp TIME_WAIT

2007-11-20 Thread Jim Jagielski
I'm hoping to get it out the top of December :) On Nov 20, 2007, at 3:57 AM, David Cassidy wrote: Hi Jim !!! This is fantastic news ! When is 2.2.7 going to be released ? :) Many many thanks David On Mon, 2007-11-19 at 15:27 -0500, Jim Jagielski wrote: 2.2.6 has a nasty bug were AJP

Re: How Do I use Tomcat 6.0.14 as a http Proxy?

2007-11-20 Thread Tony Anecito
Thanks I suspected Tomcat did not support that configuration but wanted to be sure. I currently have the Apache in front of Tomcat confiuration and was interested in using Tomcat in place of Apache but the issues regarding php support seemed to negate the use of Tomcat for my current

Re: Newbie mod_jk question - Getting HTTP 404 error for existing servlets-examples directory

2007-11-20 Thread Rainer Jung
K S wrote: Thanks a lot Rainer! The problem as you guessed was with the Vhost. After putting the JkMounts in the global server configuration, it worked. I started using the VHost (though now I have realised I don't need them at all since I am not hosting more than one website on a single

Re: How to Deploy WAR using a sub-context path?

2007-11-20 Thread Eric B.
Mark Thomas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Eric B. wrote: From a cursory inspection, it looks like the # naming convention wasn't thoroughly tested out for these types of scenarios in Tomcat's autodeployer. Either that, or I am missing something somewhere obvious.

iBatis + Spring + Spring MVC and Webflow on Tomcat vs. JBoss

2007-11-20 Thread P.B.
Hello, I am going to write an application using the following frameworks: iBatis + Spring + Spring MVC and Webflow. The application is going to talk to external web services and maybe expose its own as well. I am wondering what features would not be possible for this configuration if it was

xx

2007-11-20 Thread rahul
rahul -- 1. e4 _ - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

mod_jk compatibilities between versions.

2007-11-20 Thread rahul
Hi, I am trying to integrate mod_jk with the apache 2.2 package distribution in solaris. I would like to know what would be the versions that can have incompatibilities with the previous versions (both API and configuration) ie Is JK-1.2.25 going to be completely compatible with JK-1.2.26

Re: set juli logging directory?

2007-11-20 Thread Albretch Mueller
How can I avoid making this property and point a juli logger handler to web\logs directory? ~ Have you taken a look into the directory setting or your logging.properties file? Either the global or for the application? ~ lbrtchx

Re: How to Deploy WAR using a sub-context path?

2007-11-20 Thread Mark Thomas
Eric B. wrote: Mark Thomas [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Eric B. wrote: From a cursory inspection, it looks like the # naming convention wasn't thoroughly tested out for these types of scenarios in Tomcat's autodeployer. Either that, or I am missing something

Re: iBatis + Spring + Spring MVC and Webflow on Tomcat vs. JBoss

2007-11-20 Thread Mark Thomas
P.B. wrote: Hello, I am going to write an application using the following frameworks: iBatis + Spring + Spring MVC and Webflow. The application is going to talk to external web services and maybe expose its own as well. I am wondering what features would not be possible for this configuration

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I dp a make.

2007-11-20 Thread Blumlein,Richard
Hello Rainer and group. I tried using gmake instead of make and I got much further. In the instdso.sh script it checks to see if AIX. If AIX it removes the component. Not sure if this is ok. The mv fails since it cannot find mod_jk.so.0 in the apache-1.3 directory to rename it to mod_jk.so I

Questions about sometime slowness of tomcat

2007-11-20 Thread Jun Zhang
Hi, I really do not know which mail alias is the correct one to post this topic. So I send it to all. I am developing a web application using Tomcat, which uses a servlet to handle the request, which includes geting data from database and writing the data back to the client to display. When I

Re: Questions about sometime slowness of tomcat

2007-11-20 Thread Tony Anecito
Hi Jun, This could be due to several factors. I see this alot in SOAP calls where the first request is signficanly longer than susequent requests. It could be the jvm is optimizing the code and after multiple passes through the code it runs faster. It could also be there are objects that get

Re: Questions about sometime slowness of tomcat

2007-11-20 Thread david delbecq
First request is slower to respond to client becaus tomcat do have to initialize your servlet before first request and, probably, to compile your jsp Jun Zhang a écrit : Hi, I really do not know which mail alias is the correct one to post this topic. So I send it to all. I am developing a

RE: Is there a quiet or headless install for Tomcat 5?

2007-11-20 Thread Kurt Kavanaugh
Semantics. By embedded I mean we use Tomcat, along with a number of other processes/applications which we package into a single product offering. I just wanted to be clear that I did not mean we are running Tomcat in an embedded mode. Thanks for reading and considering... -Original

Re: Is there a quiet or headless install for Tomcat 5?

2007-11-20 Thread Mark Thomas
Kurt Kavanaugh wrote: Semantics. By embedded I mean we use Tomcat, along with a number of other processes/applications which we package into a single product offering. I just wanted to be clear that I did not mean we are running Tomcat in an embedded mode. Thanks for reading and

RE: Application redeployment on Tomcat startup only

2007-11-20 Thread Beth Hechanova
The deployOnStartup attribute is not working for me. Here's the snippet of my server.xml file: Host name=localhost appBase=webapps unpackWARs=true deployOnStartup=true autoDeploy=false xmlValidation=false xmlNamespaceAware=false If I copy a new war file and restart

Wr Rd in the JK status report

2007-11-20 Thread Dmitry Beransky
Hi, I'm having problems understanding the legend text for Wr Rd columns of the JK status report. What exactly do they mean? Here's a concrete example: Name Type Host Addr Act Stat D F M V Acc Err CE Wr Rd Busy Max Route RR Cd Rs static_1 ajp13 localhost:8012 127.0.0.1:8012 ACT OK 0 1 1 61

Re: mod_jk compatibilities between versions.

2007-11-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rahul, rahul wrote: I am trying to integrate mod_jk with the apache 2.2 package distribution in solaris. I would like to know what would be the versions that can have incompatibilities with the previous versions (both API and configuration)

Tomcat 6.0 / Log4J!

2007-11-20 Thread First Last
Hi, Basically my situtation is that I want to use log4j for all my logging, for Tomcat itself and for vairous webapps. However, in order to make Tomcat itself use log4j, I have to place log4j in the common classloader from which all webapps inherit. This means all my webapps start to

Re: set juli logging directory?

2007-11-20 Thread Igor Vlasov
Albretch Mueller-3 wrote: How can I avoid making this property and point a juli logger handler to web\logs directory? ~ Have you taken a look into the directory setting or your logging.properties file? Either the global or for the application? ~ lbrtchx For application -- View

RE: Tomcat 6.0 / Log4J!

2007-11-20 Thread First Last
In earlier versions I would have put log4j into the server classloader and not the common classloader; achieving the isolation I require. How do you do it in tomcat6? From: [EMAIL PROTECTED] To: users@tomcat.apache.org Subject: Tomcat 6.0 / Log4J!