RE: [ot] something similar to phps ?

2004-09-19 Thread Alex
cool. was showing a few folks in the office here how to set up tomcat (.net converts) and they were looking at the examples provided with the tomcat 5.0.x release. i thought, boy, this would be nice if out of the box, all the examples had some nice colour syntax highlighting, just like php

Re: unable to start the server

2004-09-19 Thread Big Chiz
if ur in windows try setting your environment catalina_home=c:\your_tomcat-folder On Sat, 18 Sep 2004 22:21:53 -0400, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have 'jakarta-tomcat-4.1.27-LE-jdk14'server. When i try to startup the server i get an error message Catlina_Home environmental

Re: Tomcat fine within the LAN, but invisible from without

2004-09-19 Thread Big Chiz
better i give him my remaining gmail invites, hehehe On Sat, 18 Sep 2004 18:11:51 +0100, Mark Thomas [EMAIL PROTECTED] wrote: Lee, You mail server is rejecting all messages to your address because you have exceeded your quota. Hence, you will not receive any messages until this is

Linking Sessions

2004-09-19 Thread SH Solutions
Hi Is there a way to link a session? I have the following scenario: I have multiple domains on a server. Some links on these pages need to switch to another domain, exspecially, when I need to switch to ssl-protected sites, since all these virtual domains share the same ssl domain (one ip only).

Re: chroot Linux 2.4.20-8 and tomcat 5.0.27

2004-09-19 Thread Sjoerd van Leent
Did you install Java within or without the chroot jail? If it is without the chroot jail, it can't detect certain configuration files, with the abcense of these, it doesn't know how to initialize itself. You could either: Use the parameters for the java executable Copy the needed configuration

Re: chroot Linux 2.4.20-8 and tomcat 5.0.27

2004-09-19 Thread Glen Ezkovich
Sjoerd, Thanks for your input. We installed Java within the chroot jail and are still having this problem. I have no problem increasing the stack size using Xss but I have no idea what property sets the initial thread stack location or which would allow us to allocate stack guard pages. On Sep

Re: chroot Linux 2.4.20-8 and tomcat 5.0.27

2004-09-19 Thread Olivier Jolly
Glen Ezkovich wrote: Sjoerd, Thanks for your input. We installed Java within the chroot jail and are still having this problem. I have no problem increasing the stack size using Xss but I have no idea what property sets the initial thread stack location or which would allow us to allocate stack

Re: cannot find server

2004-09-19 Thread Hassan Schroeder
Brian Roberts wrote: QM thanks for your reply the URL is http://127.0.0.1:8080/ . The set up wizard for tomcat server version 5 set up the software. I didn't make any adjustments to the settings. How can I check the DNS etc. as you suggested? I did try a google on that but it was difficult to

Re: unable to start the server

2004-09-19 Thread missioncoder
what OS are you using? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, September 18, 2004 10:21 PM Subject: unable to start the server I have 'jakarta-tomcat-4.1.27-LE-jdk14'server. When i try to startup the server i get an error message Catlina_Home

Sorry, Test, please ignore

2004-09-19 Thread Steffen Heil
PLEASE IGNORE. Hi Some month ago I could not subscribe using my usual mail account, so I subscribed with an alternative one. Now, I test to get on the list again. Since I got a confirmation, that I am on the list using this account, I decided to send a test message. Hope, it works. Sorry,

why is tomcat-users.xml rewritten ?

2004-09-19 Thread Jean-Paul Le Fèvre
Each time tomcat is restarted the file tomcat-users.xml is rewritten. It is horrible since my umask being 0022 the file which stores passwords become world readable. Obviously this file has to be read my the server but I do not see any valuable reason to write it back opening a serious security

AW: why is tomcat-users.xml rewritten ?

2004-09-19 Thread Steffen Heil
Hi Each time tomcat is restarted the file tomcat-users.xml is rewritten. It is horrible since my umask being 0022 the file which stores passwords become world readable. Obviously this file has to be read my the server but I do not see any valuable reason to write it back opening a serious

Re: [ot] something similar to phps ?

2004-09-19 Thread Jarl Skogsholm
Syntax highlighting is an editor feature not a language feature. Ed4W at www.getsoft.com takes care of it nicely. Some of the IDEs also have this feature. On Sun, 19 Sep 2004 05:52:51 -0400 (EDT), Alex [EMAIL PROTECTED] wrote: cool. was showing a few folks in the office here how to set up

Re: chroot Linux 2.4.20-8 and tomcat 5.0.27

2004-09-19 Thread Glen Ezkovich
Thanks Oliver, that did the trick. I had the feeling that was the directory I needed but for some reason I tried to make a new copy. What was I thinking. On Sep 19, 2004, at 9:42 AM, Olivier Jolly wrote: Just for checking, have you mounted /proc in the chroot ? It is a source of valuable

persistence after the request response cycle

2004-09-19 Thread ian stone
Hi All, In my present set up I have a servlet serving a HTML page, the HTML page returns the form data via POST which the same servlet saves to a MySQL database. I'd like to extend the present setup so that after receiving the 1st POST data, the servlet responds with HTML page 2. HTML page 2

Re: Linking Sessions

2004-09-19 Thread QM
On Sun, Sep 19, 2004 at 12:58:05PM +0200, SH Solutions wrote: [post trimmed for archive's sake] : So my problem is, that inter-domain-links by default loose their session. Is : is a problem. : Now, I have special links, that lead to a servlet that puts every attribute : of the local session into a

Re: [ot] something similar to phps ?

2004-09-19 Thread QM
On Sun, Sep 19, 2004 at 05:52:51AM -0400, Alex wrote: : cool. was showing a few folks in the office here how to set up tomcat : (.net converts) and they were looking at the examples provided with the : tomcat 5.0.x release. i thought, boy, this would be nice if out of the : box, all the examples

Re: persistence after the request response cycle

2004-09-19 Thread QM
On Sun, Sep 19, 2004 at 07:25:26PM +0100, ian stone wrote: : I'd like to extend the present setup so that after : receiving the 1st POST data, the servlet responds with : HTML page 2. HTML page 2 then returns form data via : POST to the same servlet. The servlet would then save : the accumulated

AW: Linking Sessions

2004-09-19 Thread Steffen Heil
Hi If I understand your setup, you could look into Single Sign-On. Tomcat has a special Valve for this. Search the docs/archives for details. Sorry, no. Single Sign-On only works on the same domain, as it requires sessions itself. If that doesn't work for you -- granted, there are some

RE: Linking Sessions

2004-09-19 Thread Dale, Matt
I'm just thinking out loud here really as I don't know if this is possible. Obviously the problem you are having is that the session ID is stored in a cookie which is relevant to a particular domain, change the domain and you change the cookie so a different session. My thought would be can you

Re: [ot] something similar to phps ?

2004-09-19 Thread Alex
Thanks Jarl. I appreciate that. I'll assume I didn't clarify the point I was trying to make and i'll leave it at that... On Sun, 19 Sep 2004, Jarl Skogsholm wrote: Date: Sun, 19 Sep 2004 13:34:40 -0400 From: Jarl Skogsholm [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED]

RE: persistence after the request response cycle

2004-09-19 Thread Craig Berry
The usual mechanism for this is to persist intermediate data to a session-scope object which is persisted after all data has been accumulated. Struts provides excellent support for this pattern. -Original Message- From: ian stone [mailto:[EMAIL PROTECTED] Sent: Sun 9/19/2004 11:25

Re: AW: why is tomcat-users.xml rewritten ?

2004-09-19 Thread Fred Stluka
I've just searched the archives and it seems that this question comes up every few months at least. The behavior of rewriting tomcat-users.xml and changing its permissions to match the Tomcat umask surprises enough people that it seems worth changing if possible. I put a lot of faith in the

linux, tomcat5, jsvc, chroot and jsvc error:Invalid user name 'nobody' specified

2004-09-19 Thread Glen Ezkovich
I'm trying to run tomcat in chroot jail using jsvc. I can run tomcat inside chroot by its self without any problems. I also can run tomcat using jsvc as various users outside of chroot. When I attempt to run tomcat with jsvc inside of a chroot jail, I get the folowing error message: jsvc

RE: persistence after the request response cycle

2004-09-19 Thread Frank W. Zammetti (MLists)
The other common approach is to re-send the data for page 1 as hidden form fields with the page 2 form submission. That way, the second time the servlet is executed, it is getting all the required data as part of request. As a general rule (which is broken often for one reason or another!), if

Re: linux, tomcat5, jsvc, chroot and jsvc error:Invalid user name 'nobody' specified

2004-09-19 Thread QM
On Sun, Sep 19, 2004 at 05:24:02PM -0500, Glen Ezkovich wrote: : I'm trying to run tomcat in chroot jail using jsvc. I can run tomcat : inside chroot by its self without any problems. I also can run tomcat : using jsvc as various users outside of chroot. When I attempt to run : tomcat with jsvc

Re: AW: why is tomcat-users.xml rewritten ?

2004-09-19 Thread QM
On Sun, Sep 19, 2004 at 06:19:57PM -0400, Fred Stluka wrote: : I've just searched the archives and it seems that this question : comes up every few months at least. The behavior of rewriting : tomcat-users.xml and changing its permissions to match the : Tomcat umask surprises enough people that

Tomcat vs BEA Weblogic?

2004-09-19 Thread Bjørn T Johansen
I am taking over a project that's running on Weblogic 8.1 SP3 today.. They are only using the jsp-container and it is time to renew the support agreement with BEA. So I was just wondering, is it worth it? Or is Tomcat as good as WL or maybe better? Does WL have features that is missing in

Re: Tomcat vs BEA Weblogic?

2004-09-19 Thread Frank W. Zammetti (MLists)
The one comment I would make is that with BEA, you have a certain degree of accountability that you don't have with an open-source product. That can be important in a business environment. I'm probably starting a religious war by posting this, but to some companies it is frankly more important

RE: Tomcat vs BEA Weblogic?

2004-09-19 Thread epyonne
JBOSS is as good as any EJB container out there on the market, if not better. The only different is support. You have to pay BEA a small fortune for support and they will help you every step of the way. On the other hand, if you use JBOSS, you are pretty much on your own. Although you can hire the

RE: Tomcat vs BEA Weblogic?

2004-09-19 Thread John Najarian
I have to agree with epyonne. JBoss has lousy documentation doesn't have good support. Tomcat is a very fine JSP/Servlet container. There isn't anything it can't do. -Original Message- From: Bjørn T Johansen [mailto:[EMAIL PROTECTED] Sent: Sunday, September 19, 2004 4:32 PM To:

Re: Tomcat vs BEA Weblogic?

2004-09-19 Thread Big Chiz
as long as you know what you are doing and understand every aspect of the software you will be using, you wont need any support from any vendor. at least thats what i understand from using tomcat vs bea. On Sun, 19 Sep 2004 19:09:46 -0500, epyonne [EMAIL PROTECTED] wrote: JBOSS is as good as

RE: Tomcat vs BEA Weblogic?

2004-09-19 Thread John Najarian
Not so when going to a full blown application server vs a JSP/Servlet container. I've worked with iPlanet, Sun's application Server(built on iPlanet) JBoss. JBoss is a PIA when compared. Poor documentations few resources. -Original Message- From: Big Chiz [mailto:[EMAIL PROTECTED]

Re: Tomcat vs BEA Weblogic?

2004-09-19 Thread QM
On Mon, Sep 20, 2004 at 01:31:52AM +0200, Bj?rn T Johansen wrote: : So basically, I would like some advice on why I should/shouldn't continue : with Weblogic? :) I've used Tomcat and Weblogic, and can offer a brief comparison: 1/ Co$t. You can't beat Tomcat's price. WL licensing is based on

Re: cannot find server

2004-09-19 Thread Brian Roberts
Hassan Schroeder Shiver me timbers, me cocky just fell off its perch.[1] Thanks Hassan, I love it when you talk command line. Yep I tried 'catalina.bat run' at the bin directory of tomcat and the reply was. 'catalina.bat' not recognized as an internal or external command, operable program or

Re: Re: unable to start the server

2004-09-19 Thread bbisc
Thank you for your suggestion. My operating system is windows 98. What i have sets so far in my autoexec file are JAVA_HOME variable and class path(my installed directory\common\lib\servlet.jar). After receiving your mail I set CATALINA_HOME=c:\my installed directory in my autoexec file

Re: Re: unable to start the server

2004-09-19 Thread bbisc
I am using windows 98. Any suggestion or advice is highly appreciated. Bis From: [EMAIL PROTECTED] Date: 2004/09/19 Sun AM 10:57:24 EST To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: unable to start the server what OS are you using? - Original Message - From: [EMAIL

session-timeout is out by factor of 100?

2004-09-19 Thread Peter Johnson
Hi, Is anyone successfully using the web.xml session timeout configuration with Tomcat 5.0.25? Testing seems to indicate that this setting is out by a factor of 100 however using session.setMaxInactiveInterval seems to yield the desired result. E.g. Printing the time remaining (in ms) in a

Basic Action Question (I need more sets of eyes)

2004-09-19 Thread John Mattos
Hi I've been staring at this for a while and I can't see what's wrong. Maybe one of you can help me out. I'm trying to create a basic login form. The form validation part is working (comes back and tells me that uid or pw has to be entered if I neglected to) but it SEEMS that the

Re: Basic Action Question (I need more sets of eyes)

2004-09-19 Thread Michael McGrady
John Mattos wrote: Hi I've been staring at this for a while and I can't see what's wrong. Maybe one of you can help me out. I'm trying to create a basic login form. The form validation part is working (comes back and tells me that uid or pw has to be entered if I neglected to) but it SEEMS

RE: Basic Action Question (I need more sets of eyes) - ignore please.

2004-09-19 Thread John Mattos
Man, I'm obviously tired. Please ignore that email. Wrong list. Oops!