mod_jk2 hangs?!

2003-10-02 Thread Christian Traber
Hi, I use apache 2.0.46, mod_jk2, tomcat4.1.18 (the standard versions shipped with Suse 8.2). Sometimes the apache-tomcat connection seems to hang. After restarting apache (or I think waiting for a few minutes) everything works again. There are a lot of such messages in my apache errorlog:

RE: connectors documents

2003-10-02 Thread Walker Chris
Mark, Um, I think it's what you're trying to do. The server runs two virtual hosts: www.xxx.com and admin.xxx.com. Either can be accessed through the default page with just the domain name or by specifying the page (e.g. https://www.xxx.com/login.jsp). There's a certain amount of weirdness

Re: How do i handle session-timeout in an acceptable manner?

2003-10-02 Thread Hayo Schmidt
The problem with your solution is, that the application does not know where to continue after the login page. This will result in an error. I have implemented this workaround: protected void doGet( HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse)

Major headache: why don't Apache en Tomcat communicate????????

2003-10-02 Thread Arjen van der Weijden
Hi folks, Running apache server 2.0.42 with mod_jk 1.2.4 and tomcat 4.1.12 all on windows XP professional. Tomcat starts nicely and serves servlets fine via port 8080. Autoconfigured apache to run together with tomcat via mod_jk following the howto's by John Turner. Apache runs without any syntax

onjava example does not work on Tomcat 5.0

2003-10-02 Thread gachsaran
Hi What does following example need to work on tomcat 4.1x and 5.0.x. It works on 4.0.x but not successer. http://www.onjava.com/lpt/a/780 Thanks for any help gachsaran

onjava example does not work on Tomcat 5.0

2003-10-02 Thread gachsaran
Hi What does following example need to work on tomcat 4.1x and 5.0.x. It works on 4.0.x but not successer. http://www.onjava.com/lpt/a/780 Thanks for any help gachsaran

Re: onjava example does not work on Tomcat 5.0

2003-10-02 Thread Jon Wingfield
Having had a very, very brief look at the article I would say that one problem would be the lack of mappings for the servlets. Since 4.1.12 the invoker servlet which handled default servlet mappings has been disabled. The reasons for this have been discussed ad nauseum on this list and are in

Login problem

2003-10-02 Thread Roland Carlsson
Hi! I got a little problem using form-based login that I hope to get some help with. The problem is the following: When using form-based authentication to get a nice looking login-page I am forced to use tomcats authentication-methods. This would be nice if I hadn't an apache infront of the

Invoker servlet security

2003-10-02 Thread Marcel Stor
Hi all, I can think of a number of reasons why the invoker servlet is disabled with new Tomcat installations - security (as stated in the release notes) is not one of them. Could someone please point me to a thread where these implications have been discussed on this list. I've searched the

Re: Invoker servlet security

2003-10-02 Thread Tim Funk
FAQ http://jakarta.apache.org/tomcat/faq/misc.html#evil -Tim Marcel Stor wrote: Hi all, I can think of a number of reasons why the invoker servlet is disabled with new Tomcat installations - security (as stated in the release notes) is not one of them. Could someone please point me to a thread

Re: onjava example does not work on Tomcat 5.0

2003-10-02 Thread Tim Funk
The article seems to declare the servlet but not map it. For example, this needs added to web.xml servlet-mapping servlet-namemyServletName/servlet-name url-pattern/myserlvetPattern/url-pattern /servlet-mapping -Tim Jon Wingfield wrote: Having had a very, very brief look at the article

Tomcat 5 context configuration for multiuser enviroment

2003-10-02 Thread Oleksiy Podopryhora
I have added Listener className=org.apache.catalina.startup.UserConfig directoryName=public_html userClass=org.apache.catalina.startup.PasswdUserDatabase / That gives me mapping localhost:8080/~bob to /home/bob/public_html 1) now i have 300 users ( students) and i would like to specify CONTEXT

RE: How do i handle session-timeout in an acceptable manner?

2003-10-02 Thread Jeremy Nix
The problem with your solution is, that the application does not know where to continue after the login page. This will result in an error. If you want your login page to redirect you back to the page that the user timed out on, then why don't you just add a hint to the login url so that after

JSTL App Still Failing Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
I'm still having that problem with a JSTL app failing under Tomcat 4.0.6. The error is No such tag redirect in the tag library imported with prefix c. The c.tld in the standard.jar calls for class org.apache.taglibs.standard.tag.el.core.RedirectTag to implement the tag. I can see that class,

RE: Classes not recompiling - Have to restart Tomcat

2003-10-02 Thread Cunningham, Steven
So which would be quicker/easier? Restarting tomcat (which is handled by Eclipse, so 1 button press) or compiling the classes myself and hope tomcat picks them up? Steven Cunningham Aspiring J-Developer -Original Message- From: Seth Rubin [mailto:[EMAIL PROTECTED] Sent: Wednesday,

One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
One more piece of info regarding my problem: I deployed the apps in this order: echo, data-source, and big. The stderr.log was empty after I deployed echo and data-source. When I look in stderr.log after deploying big, I see a single line: No tags It's cryptic, and it obviously says

Re: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
A Google search suggested that perhaps Tomcat 4.0.6 had an out-of-date servlet.jar, so I replaced it with the one from Tomcat 4.1.27. Still failed - No tags. MOD --- Michael Duffy [EMAIL PROTECTED] wrote: One more piece of info regarding my problem: I deployed the apps in this order:

I need help explaining why lock box doesn't show up - PLEASE

2003-10-02 Thread batristain
Greetings, I'm running Apache with mod SSL on a linux box. I'm also running Tomcat and using the JkMount statements to send all of the jsp pages to Tomcat. The clients that I set this up for are complaining that the little lock box in the browser doesn't show up on the jsp pages - but isn't the

Re: Tomcat 5 context configuration for multiuser enviroment

2003-10-02 Thread Oleksiy Podopryhora
Oleksiy Podopryhora wrote: I have added Listener className=org.apache.catalina.startup.UserConfig directoryName=public_html userClass=org.apache.catalina.startup.PasswdUserDatabase / That gives me mapping localhost:8080/~bob to /home/bob/public_html 1) now i have 300 users ( students) and i

RE: How do i handle session-timeout in an acceptable manner?

2003-10-02 Thread Shapira, Yoav
Howdy, The problem with your solution is, that the application does not know where to continue after the login page. This will result in an error. If you want your login page to redirect you back to the page that the user timed out on, then why don't you just add a hint to the login url so

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Shapira, Yoav
Howdy, The google search result you read was wrong on that one, for sure ;) Tomcat 4.x has the same servlet jar: the one corresponding to the servlet specification v2.3. Don't feel free to swap jars between tomcat versions in general though ;) Nearly all the other jars that come with tomcat are

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
You're right - it WAS a little dated (2001/2002 vintage). I'll put the original back. Yes, I run Tomcat as a Windows service. I asked for both stdout.log and stderr.log when I set up the service. Here's the script. - MOD @echo off rem Script for installing Tomcat 4.0.6 as a Windows service

Integrating Tomcat and Apache on RedHat 9.0

2003-10-02 Thread Mike Millson
FYI, below is an article I wrote on integrating tomcat and apache on RedHat 9.0 that might be of interest. http://www.meritonlinesystems.com/docs/apache_tomcat_redhat.html It has a lot of general configuration info as well. It has been fairly well tested recently by a number of individuals who

Re: Apache 2 Tomcat4.1.27 name based virtual hosts

2003-10-02 Thread John Bell
Hi Dave, I now have - as below in httpd.conf. The same prob exists. If capucino is 2nd all is ok if freshlyroast is 2nd it is not found. So The first VirtualHost section is used for requests without a known server name and so freshly is not a known server name??? Regards VirtualHost *

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Shapira, Yoav
Howdy, Yes, I run Tomcat as a Windows service. I asked for both stdout.log and stderr.log when I set up the service. Here's the script. - MOD Hmm, let's try to take another variable out of the equation. I'm sure your script is fine, but can you run tomcat normally from the command line, not

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Very good. I'll do that right away and get back to you. Thank you - MOD --- Shapira, Yoav [EMAIL PROTECTED] wrote: Howdy, Yes, I run Tomcat as a Windows service. I asked for both stdout.log and stderr.log when I set up the service. Here's the script. - MOD Hmm, let's try to take

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Yoav, you're a genius. It came right up when I stopped the service and ran it from the command window. I'm NOT crazy. ;) Thank you! Now, the question is that when I deploy this it's going to be Tomcat 4.0.6 running as a service and connected to IIS on a Windows XP server. What did I do

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Walker Chris
Michael, What account does the service run under? The default for most services is the System account, which may be having problems accessing some resource that your application needs. Chris -Original Message- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: 02 October 2003 15:34

Virtual Users on Apache/Tomcat on https

2003-10-02 Thread Alex Korneyev
Hello Everyone! I hope someone can point me in the right direction. How do i configure Apache to redirect https://servername.serverhost.com/~username/test.jsp to Tomcat ? if that username has a domwin, www.domain.com then i can access test.jsp file via http://www.domain.com/test.jsp no problem.

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Hi Chris, Hmmm, good question. There's no argument in the tomcat.exe that calls for a username OR password. I'm admin on my own machine. The question is: what about the deployment machine? If it's installed under the admin account, wouldn't it use the System admin username and password?

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Walker Chris
Hi Michael, This is a Winows thing, rather than a Tomcat thing. Control Panel-Services-Apache Tomcat 4.1-Startup will show you the NT account the service uses to start. By default services use the System account, which IIRC, can't access any network resources such as mapped drives. It may also

Re: Virtual Users on Apache/Tomcat on https

2003-10-02 Thread Oleksiy Podopryhora
Alex Korneyev wrote: Hello Everyone! I hope someone can point me in the right direction. How do i configure Apache to redirect https://servername.serverhost.com/~username/test.jsp to Tomcat ? Listener className=org.apache.catalina.startup.UserConfig directoryName=public_html

RE: make rule for tomcat

2003-10-02 Thread cody wang
I cannot get it work. Is your working? -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 12:08 PM To: Tomcat Users List Subject: RE: make rule for tomcat Howdy, Add a personal contact named Tomcat User List with [EMAIL PROTECTED] as the

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Hi Chris, Thank you for pointing that out. (I'd forgotten about it.) I see that I'm set up to log in as the System account, but the checkbox that says Allow service to interact with local desktop was unchecked. H - could that have kept Tomcat from looking inside those JARs? I have two

Re[2]: Virtual Users on Apache/Tomcat on https

2003-10-02 Thread Alex Korneyev
Hello Oleksiy, I am not sure how this is going to help me. This is a Tomcat side configuration. thanks Thursday, October 2, 2003, 10:18:48 AM, you wrote: OP Alex Korneyev wrote: Hello Everyone! I hope someone can point me in the right direction. How do i configure Apache to redirect

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Walker Chris
I'd rather leave that one for somebody who has experience with Tomcat on a Win32 production server... Chris -Original Message- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: 02 October 2003 16:21 To: Tomcat Users List Subject: RE: One More Piece Of Info RE:JSTL Failure Under Tomcat

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Very good. Thanks for bringing up the question, Chris. It might even be something to ask my Windows admin. Perhaps they'll have a strong opinion about that. - MOD --- Walker Chris [EMAIL PROTECTED] wrote: I'd rather leave that one for somebody who has experience with Tomcat on a Win32

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Hi Chris, I just tried my app after setting up the Windows service to login under the system account and checking the box to allow interaction with the local desktop. The echo and data source apps still succeeded, and the big app failed for the same reason: No tags in stderr.log. That's not

Re: Apache 2 Tomcat4.1.27 name based virtual hosts

2003-10-02 Thread David Rees
On Thu, October 2, 2003 at 7:12 am, John Bell sent the following I now have - as below in httpd.conf. The same prob exists. If capucino is 2nd all is ok if freshlyroast is 2nd it is not found. So The first VirtualHost section is used for requests without a known server name and so freshly

RE: make rule for tomcat

2003-10-02 Thread Joao Medeiros
Cody, Make sure you have a folder named 'Tomcat User List' otherwise it will not work. I'm assuming Yoav is referring to Microsoft Outlook and you're also using this e-mail client. -JM -Original Message- From: cody wang [mailto:[EMAIL PROTECTED] Sent: 02 October 2003 16:21 To: 'Tomcat

Re: JNDI resources in web.xml

2003-10-02 Thread Sanjay Manchiganti
josh... I am not sure about specifying in web.xml...but you can specify it per application. This can be done by specifying the JNDI entries between the context tag for the application. sanjay. --- Josh G [EMAIL PROTECTED] wrote: How can I specify jndi resources in web.xml for an application

Re: I need help explaining why lock box doesn't show up - PLEASE

2003-10-02 Thread David Rees
On Thu, October 2, 2003 at 6:25 am, [EMAIL PROTECTED] sent the following Greetings, I'm running Apache with mod SSL on a linux box. I'm also running Tomcat and using the JkMount statements to send all of the jsp pages to Tomcat. The clients that I set this up for are complaining that the

Re: Virtual Users on Apache/Tomcat on https

2003-10-02 Thread David Rees
On Thu, October 2, 2003 at 7:53 am, Alex Korneyev sent the following I hope someone can point me in the right direction. How do i configure Apache to redirect https://servername.serverhost.com/~username/test.jsp to Tomcat ? if that username has a domwin, www.domain.com then i can access

No mention of 4.1.27 hotfix on website

2003-10-02 Thread Wendy Smoak
I just embarrassed myself on struts-dev complaining that the struts-blank webapp wouldn't reload, when the problem was that I hadn't applied the hotfix for Tomcat 4.1.27. I went to http://jakarta.apache.org/tomcat and clicked the 'Binaries' link in the left-hand menu. That got me to:

Using mod_jk with Apache Virtual Hosts

2003-10-02 Thread David Godfrey
Hi, Looking for some help with the following please I have Apache HTTP Server set up to server three virtual hosts. Two of these I want to be serving Tomcat based content, the third serves purely static content. I have this working of a fashion, as I have Jkmount directives inside the two

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Shapira, Yoav
Howdy, This is where I stop, not having much experience in setting up tomcat as a windows service. Glad I could help so far though ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 10:34 AM To:

RE: make rule for tomcat

2003-10-02 Thread Shapira, Yoav
Howdy, I wouldn't suggest something that didn't work for me ;) Yes, it works, and Mr. Medeiros' suggestion is of course true. Yoav Shapira Millennium ChemInformatics -Original Message- From: Joao Medeiros [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 11:43 AM To: 'Tomcat

org.apache.catalina.startup.Bootstrap

2003-10-02 Thread Mufaddal Khumri
Hello, I get a pop up icon for org.apache.catalina.startup.Bootstrap on my doc on MAC OS X when I click on the link in my web app which generates and sends a pdf file to the client browser. Once this popup is there the application works as expected, but if I quit this popup, tomcat shuts off

RE: JNDI resources in web.xml

2003-10-02 Thread Shapira, Yoav
Howdy, You specify resource or env entry references in web.xml, whose runtime values are defined in server.xml Resource and Environment tags. See http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-resources-howto.htm l Yoav Shapira Millennium ChemInformatics -Original Message- From:

RE: Classes not recompiling - Have to restart Tomcat

2003-10-02 Thread Cunningham, Steven
Anyone? :( Steven Cunningham Aspiring J-Developer -Original Message- From: Cunningham, Steven Sent: Thursday, October 02, 2003 9:06 AM To: Tomcat Users List Subject: RE: Classes not recompiling - Have to restart Tomcat So which would be quicker/easier? Restarting tomcat (which is

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Thanks again for taking the time, Yoav. Your suggestion was invaluable and right on the money, as usual. Sincerely, MOD --- Shapira, Yoav [EMAIL PROTECTED] wrote: Howdy, This is where I stop, not having much experience in setting up tomcat as a windows service. Glad I could help so

RE: No mention of 4.1.27 hotfix on website

2003-10-02 Thread Shapira, Yoav
Howdy, I just embarrassed myself on struts-dev complaining that the struts-blank webapp wouldn't reload, when the problem was that I hadn't applied the hotfix for Tomcat 4.1.27. May that be the worst embarrassing moment for you ;) I've embarrassed myself much worse on this and other lists ;)

Newbie Question: Tomcat 3.2.3 + JDK1.3.1_09 + Win2K

2003-10-02 Thread Graham Reeds
I finally got Tomcat working last night. Nothing odd in that, you'd think, but the problems I have been having is quite frustrating. The reason was I would get a 'Unable to find Program ' message when trying to start the Tomcat server. However, at various stages of installation things would

RE: Classes not recompiling - Have to restart Tomcat

2003-10-02 Thread Shapira, Yoav
Howdy, There's the same ease IMHO. If you have to pick, restart tomcat I suppose, as it's better to test from a clean start of the server than a reload, especially if you have reloading problems. Yoav Shapira Millennium ChemInformatics -Original Message- From: Cunningham, Steven

Re: No mention of 4.1.27 hotfix on website

2003-10-02 Thread Michael Duffy
Thanks for sending this, Wendy. I didn't get the hotfix, either. Thanks to you I've got it now. - MOD --- Wendy Smoak [EMAIL PROTECTED] wrote: I just embarrassed myself on struts-dev complaining that the struts-blank webapp wouldn't reload, when the problem was that I hadn't applied

Including a JSP into another.

2003-10-02 Thread Andoni
Hello, This does not work for me at all: jsp:include page=mypage.jsp flush=true / But when I do a simple substitution for: %@ include file=mypage.jsp% It works fine. I want to use the first one though as I want to add parameters to the call. What is the difference? How does one not work?

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Walker Chris
What account was it running under before? Can you set it to start under your account? It would be worth making sure that everything the app needs, especially the taglibs, is accessible to all users. Failing that, I suppose you could search the source for the message No tags. Chris

RE: Classes not recompiling - Have to restart Tomcat

2003-10-02 Thread Cunningham, Steven
Ok, thanks. Steven Cunningham Database Management Group Liberty Mutual -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 12:08 PM To: Tomcat Users List Subject: RE: Classes not recompiling - Have to restart Tomcat Howdy, There's the

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Hi Chris, It's always been under the local system account. I'll change it to mine and see if that helps. Thanks - MOD --- Walker Chris [EMAIL PROTECTED] wrote: What account was it running under before? Can you set it to start under your account? It would be worth making sure that

RE: Installing Tomcat 4.1.24 as a service on Win 2000 - won't start

2003-10-02 Thread Dean Searle
I have found this to occur if JDK is not installed correctly. Try going to C:\Program Files\Java\j2re1.4.2_01\bin\client and see if there is a jvm.dll file there. If there is not then uninstall the JDK, delete the Java folder and reinstall. If the jvm.dll is there then uninstall the JDK and

RE: I need help explaining why lock box doesn't show up - PLEASE

2003-10-02 Thread batristain
Hi Dave, When it's in Apache it's going through port 80 and when it's in Tomcat it's going through the default 8080 port. -Original Message- From: David Rees [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 11:45 AM To: Tomcat Users List Subject: Re: I need help explaining why

Re: Including a JSP into another.

2003-10-02 Thread Tim Funk
It should work. Is it a compile or run time error? -Tim Andoni wrote: Hello, This does not work for me at all: jsp:include page=mypage.jsp flush=true / But when I do a simple substitution for: %@ include file=mypage.jsp% It works fine. I want to use the first one though as I want to add

RE: mod_jk2 hangs?!

2003-10-02 Thread Dean Searle
You're missing the jk2.shm file. This file should be created using notepad or vi (depending on your OS)and placed in a folder. That folder can be determined by looking into jk2.properties in the {TOMCAT_HOME}/conf and workers2.properties in {APACHE_HOME}/conf. Or you can specify where it needs

ssl on more than one port on w2000 sp2?

2003-10-02 Thread Vengurlekar, Mandar
Hi, Can i start more than one apache tomcat servers to listen on ssl connections on more than one port? I have a machine windows 2000 with sp2 that has 2 apache tomcat servers running. One server has the ssl port running fine, but i cannot use the ssl port on the other Thanks and Regards,

RE: Tomcat sucks at receiving large messages

2003-10-02 Thread Stewart, Daniel J
Since I will be occasionally receiving messages in the 10Mbyte range, I can't read in a line at a time - it takes too long. The bug in the code below is because BufferedReader.read() will not necessarily return the whole buffer. So I replace the line reader.read(charArr); With this: int

RE: Tomcat sucks at receiving large messages

2003-10-02 Thread Stewart, Daniel J
This code will be running in a controlled environment, with known clients, where the largest message size is known (~10M). This code takes the entire body and forwards it on to another messaging system, so I have no choice but to deal with the entire message. And I can't read it a byte or line

Tomcat hanging!! About to change container!! Please help!!

2003-10-02 Thread Joe Zendle
We have 10 days until we go GA. We are experiencing periodic and regular lockups of Tomcat. We are testing on a machine that is fairly loaded with background work (about 50% cpu). Our web app is accessed by very few users so Tomcat per se, is not under load handling requests. After say 10-12

RE: Tomcat sucks at receiving large messages

2003-10-02 Thread Shapira, Yoav
Howdy, Seems like a very decent fix. Thanks for posting it so others can have a future reference solution ;) I wonder if there's a java.nio solution that will perform better... Yoav Shapira Millennium ChemInformatics -Original Message- From: Stewart, Daniel J [mailto:[EMAIL

Re: Including a JSP into another.

2003-10-02 Thread Andoni
Apologies, I wasn't looking at the log file. though it seemed to be working and just not getting this far, when you look at the log file it has a whole host (100 to be precise) of errors and says too many errors, limit is 100. So the file was including properly just not displaying at all. Sorry

RE: Tomcat hanging!! About to change container!! Please help!!

2003-10-02 Thread Shapira, Yoav
Howdy, say 10-12 hours of browser inactivity, when attempting to login we get the BASIC Auth prompt, we enter our credentials and then tomcat hangs while loading our index.jsp. The request never completes. I've attached our configuration. Please let me know if there is anything that looks

Re: Tomcat hanging!! About to change container!! Please help!!

2003-10-02 Thread Tim Funk
Since I see SSL stuff .. you may want to look at building from HEAD until 4.1.28 comes out. I think there were some connector fixes as well as ssl fixes. I don't know if the fixes were performance related. -Tim - To

Re[2]: Virtual Users on Apache/Tomcat on https

2003-10-02 Thread Alex Korneyev
Hello David, Thursday, October 2, 2003, 10:52:17 AM, you wrote: DR On Thu, October 2, 2003 at 7:53 am, Alex Korneyev sent the following I hope someone can point me in the right direction. How do i configure Apache to redirect https://servername.serverhost.com/~username/test.jsp to Tomcat ?

RE: Tomcat sucks at receiving large messages

2003-10-02 Thread Ian Huynh
Unless your client is very conforming to the rules (ie. Content-Length is is correct wrt to available bytes) you could be waiting for a while for the stream of data to come across or until your socket read statement timeout int length = req.getContentLength(); ByteArrayOutputStream baos = new

JK2 log location, anyone?

2003-10-02 Thread Joe Barefoot
sorry to repost so quickly, but this seems like it should be a really simple answer: Where is the JK2 log file placed by default, and how do you specify where it should go on Windows using IIS? I've tried various registry keys per the documentation with no luck (see below). Keep in mind that

Re: Apache 2 Tomcat4.1.27 name based virtual hosts

2003-10-02 Thread John Bell
Hi Dave, VirtualHost * ServerName www.freshlyroastcoffee.biz DocumentRoot /coffeepp JkMount /* ajp13 etc /VirtualHost VirtualHost * ServerName www.capucino.co.uk DocumentRoot /coffeemy JkMount /* ajp13 etc /VirtualHost With this setup www.freshlyroastcoffee.biz is found so is

RE: ssl on more than one port on w2000 sp2?

2003-10-02 Thread Jay Garala
Are they using the same port -Original Message- From: Vengurlekar, Mandar [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 12:35 PM To: '[EMAIL PROTECTED]' Subject: ssl on more than one port on w2000 sp2? Hi, Can i start more than one apache tomcat servers to listen on

RE: One More Piece Of Info RE:JSTL Failure Under Tomcat 4.0.6

2003-10-02 Thread Michael Duffy
Hi Chris, I've failed as local system account, local system account with access to local desktop, and running the service under my own account. Looking in the localhost log, I see this line: 2003-10-02 13:31:25 Could not load TagLibraryValidator class

Re: JK2 log location, anyone?

2003-10-02 Thread Mark Eggers
According to the docs (don't have them handy at the moment), mod_jk2 uses the Windows system logging as a default. If you want to use your own log file, put something like the following in workers2.properties. # Alternate file logger [logger.file:0] # level=DEBUG file=${serverRoot}/logs/jk2.log

Link to Integrating Tomcat into Apache?

2003-10-02 Thread David Erickson
Hey I've been trying to find a good tutorial or how to on integrating tomcat into apache.. can anyone provide a link? Preferably Apache 2.x and tomcat 4.1.x thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Link to Integrating Tomcat into Apache?

2003-10-02 Thread David Rees
On Thu, October 2, 2003 1at 1:02 am, David Erickson sent the following Hey I've been trying to find a good tutorial or how to on integrating tomcat into apache.. can anyone provide a link? Preferably Apache 2.x and tomcat 4.1.x Did you bother looking at the Jakarta Tomcat site?

Re: Tomcat hanging!! About to change container!! Please help!!

2003-10-02 Thread Noam Camiel
Hi Joe, I'm experiencing a similar problem to what you are describing. What I've now tried to do based on Rémy Maucherat advice is to try the IBM JVM instead of the Sun JVM. I don't have conclusive results yet, but if you are using the Sun JVM, try using the IBM VM. Regards, Noam - Original

Re: Link to Integrating Tomcat into Apache?

2003-10-02 Thread David Erickson
Jeez I don't know how I missed that :P I did find another one but of course Jakarta's docs are better. Thanks a bunch -David - Original Message - From: David Rees [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, October 02, 2003 12:12 PM Subject: Re: Link to

Re: Tomcat hanging!! About to change container!! Please help!!

2003-10-02 Thread David Rees
On Thu, October 2, 2003 at 9:44 am, Joe Zendle sent the following We have 10 days until we go GA. We are experiencing periodic and regular lockups of Tomcat. We are testing on a machine that is fairly loaded with background work (about 50% cpu). Our web app is accessed by very few users so

RE: I need help explaining why lock box doesn't show up - PLEASE

2003-10-02 Thread David Rees
On Thu, October 2, 2003 at 9:30 am, [EMAIL PROTECTED] sent the following When it's in Apache it's going through port 80 and when it's in Tomcat it's going through the default 8080 port. You're not using mod_jk to forward requests from Apache to Tomcat? Either way, if you are using port 80,

[tomcat 5.0 docs] Application Developer's Guide: build.xml file

2003-10-02 Thread drm
Hi all :) First post here, so don't bomb me if i do anything wrong :P After downloading and installing Tomcat 5.0 beta i discovered an error in the build.xml file provided in that section. The target install misses the action to create a war file, and deploying that war file in/on/to (?) the

Re: Using mod_jk with Apache Virtual Hosts

2003-10-02 Thread David Rees
On Thu, October 2, 2003 at 8:52 am, David Godfrey sent the following Looking for some help with the following please I have Apache HTTP Server set up to server three virtual hosts. Two of these I want to be serving Tomcat based content, the third serves purely static content. I have

Re: Apache 2 Tomcat4.1.27 name based virtual hosts

2003-10-02 Thread David Rees
On Thu, October 2, 2003 1at 0:33 am, John Bell sent the following Hi Dave, VirtualHost * ServerName www.freshlyroastcoffee.biz DocumentRoot /coffeepp JkMount /* ajp13 etc /VirtualHost VirtualHost * ServerName www.capucino.co.uk DocumentRoot /coffeemy JkMount /* ajp13 etc

RE: ssl on more than one port on w2000 sp2?

2003-10-02 Thread Vengurlekar, Mandar
Hi Jay, One is 8443 and the other is 8444 The tomcat apache servers are running on 8005 and 8205 Thanks and Regards, Mandar -Original Message- From: Jay Garala [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 1:42 PM To: [EMAIL PROTECTED] Subject: RE: ssl on more than one

Accessing Sessions in the container

2003-10-02 Thread Simha, Kailas
Hi all, How would I be able to access/list all the sessions running on a JVM/Container? Any sample code would be delightfully welcome! Thanks in advance, Kailas - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Accessing Sessions in the container

2003-10-02 Thread Filip Hanik
prohibited by spec Filip - Original Message - From: Simha, Kailas [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Thursday, October 02, 2003 11:50 AM Subject: Accessing Sessions in the container Hi all, How would I be able to access/list all the sessions running on a

Re: Accessing Sessions in the container

2003-10-02 Thread Tim Funk
But that restriction can be bypssed by creating a SessionListener to store these sessions yourself in ServletContext scope. Search the archive for more info about this. Doing so can also easily create a memory leak if one is not careful. -Tim Filip Hanik wrote: prohibited by spec Filip

IIS +Tomcat for some reason the query strings are stripped

2003-10-02 Thread jmattucci
I was wondering if anyone else has come accross this problem. I have tomcat running under IIS. When I call a jsp page with parameters eg. www.x.ca?CHOICE=1 on the address field I see www.x.ca?CHOICE=1 but my jsp page is always receiving www.x.ca Is it possible that IIS is stripping the

RE: ssl on more than one port on w2000 sp2?

2003-10-02 Thread Jay Garala
smime.p7m Description: S/MIME encrypted message

RE: Accessing Sessions in the container

2003-10-02 Thread Simha, Kailas
Right, but I do not want all web applications to implement this Listener either. Kailas Enterprise Web Infrastructure -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Thursday, October 02, 2003 2:57 PM To: Tomcat Users List Subject: Re: Accessing Sessions in the

RE: ssl on more than one port on w2000 sp2?

2003-10-02 Thread Jay Garala
Hold on!!! 8005 port in Tomcat is used for Shutdown. Look at your server.xml, way in the top... Do you see Server port=8005 shutdown=SHUTDOWN debug=0? If you do, change your SSL config to another port on Tomcat, usually its 8009. What is your environment? OS? JVM? Tomcat? Apache?

Re: Accessing Sessions in the container

2003-10-02 Thread Filip Hanik
put a Valve in your context and you can do all kinds of things there on the invoke you can do StandardManager manager = (StandardManager)request.getContext().getManager(); Session[] sessions = manager.findSessions(); the valve if configured only to one context to so you will only get one

[I] Dev tool for Tomcat

2003-10-02 Thread Anoop Grover
Are you tired of starting and stopping your tomcat server each time you update a WAR? Are you looking for an innovative way to streamline your existing development processes? If so, look no further ... Likha Software provides tools based on Open Source and Open Standards that enables the

Re: Slow serving requests issue

2003-10-02 Thread Neil Aggarwal
Alex: We have been trying to diagnose a similar problem that we are experiencing on our servers. All of our requests come into our controller servlet. The servlet then forwards the request via a RequestDispatcher to a jsp page for display. On occasion (at least once a day), one of these

Re: Integrating Tomcat and Apache on RedHat 9.0

2003-10-02 Thread Lawence
Thanks for sharing. Mike Millson [EMAIL PROTECTED] wrote: FYI, below is an article I wrote on integrating tomcat and apache on RedHat 9.0 that might be of interest. http://www.meritonlinesystems.com/docs/apache_tomcat_redhat.html It has a lot of general configuration info as well. It has

Re: mod_jk2 hangs?!

2003-10-02 Thread Christian Traber
Dean Searle wrote: You're missing the jk2.shm file. This file should be created using notepad or vi (depending on your OS)and placed in a folder. That folder can be determined by looking into jk2.properties in the {TOMCAT_HOME}/conf and workers2.properties in {APACHE_HOME}/conf. Or you can

  1   2   >