Re: FAQ? shutdown.bat not killing java process on Windows

2005-10-03 Thread David Delbecq
That's quite a problem ;) Actually your threads should be coded in such a way you may a send a notification in java telling him to finish his job. eg: myNonDaemonThreadICreatedMySelf.stopWorking(); which would set some flag in Thread and then code in your Thread reading the flag knows it has to

Re: FAQ? shutdown.bat not killing java process on Windows

2005-10-03 Thread Larry Meadors
So, once you know the threads that are left, what is the cleanest way to kill them? I have had this problem too, but since it was on a *nix platform, and just used 'kill' to get rid of the parent process. Larry On 10/3/05, Jon Wingfield <[EMAIL PROTECTED]> wrote: > Yep. It's a FAQ, but not in t

Re: Getting NoClassDefFound error for Rectangle.class (rt.jar)

2005-10-03 Thread David Delbecq
if it's *java.awt.Rectangle* and the computer you are trying to run fop on does not have graphical environment, maybe you should wonsider using headless java see http://java.sun.com/j2se/1.4.2/docs/guide/awt/AWTChanges.html#headless Bob Hall a écrit : >I'm getting a NoClassDefFoundError in a FOP

Re: FAQ? shutdown.bat not killing java process on Windows

2005-10-03 Thread David Delbecq
May i mention also the use of *java.util.Timer in forms other than new **java.util.Timer*(true); If used in any other form, it silently creates a non daemon thread. Jon Wingfield a écrit : > Yep. It's a FAQ, but not in the FAQ. > > Tomcat not quitting generally means your webapp has started a >

Re: FAQ? shutdown.bat not killing java process on Windows

2005-10-03 Thread Jon Wingfield
Yep. It's a FAQ, but not in the FAQ. Tomcat not quitting generally means your webapp has started a non-daemon thread which does not exit when the webapp is destroyed. If so, shut them down in a ServletContextListener. If you aren't explicitly creating threads in your webapp then the usual cu

RE: How to logout after login with JDBCRealm?

2005-10-03 Thread Raghupathy,Gurumoorthy
What type of authentication are you using ? FORM / BASIC ? If Basic then no you cant If form based then ( sesssion.invalidate() ) Guru -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 03 October 2005 03:08 To: Tomcat Users List Subject: How to logout after l

Re: Reg form based authentication

2005-10-02 Thread sree kanth
thank you all Sreekanth On 10/1/05, Mark Thomas <[EMAIL PROTECTED]> wrote: > > sree kanth wrote: > > Hi all, > > i have been developing on JSP's for the last one year,but still i have > never > > implemented form based authentication. > > Can any one help me in implenting form based authentication?

RE: Re: Stopping users from getting a directory listing

2005-10-02 Thread Caldarale, Charles R
> From: news [mailto:[EMAIL PROTECTED] On Behalf Of Graham Reeds > Subject: Re: Stopping users from getting a directory listing > > I tried copying the default servlet definitions and when that failed, > the proceeding filters, to the application specific web.xml but that > c

Re: Getting tomcat instance information into webapp

2005-10-02 Thread Kyle
Ah! Yes. See! I did mention I wasn't an expert. :) Yes, multiple instances, in my outlaid scenario equates to multiple installs. Whereas, multiple running instances doesn't necessarily. Sorry. Let me have a think about that for an hour or 4. How do you tell tomcat which port to listen on

Re: MyServlet as default servlet in tomcat 5.0.27

2005-10-02 Thread Parsons Technical Services
Rename your war to ROOT.war and deploy it. Or you can manually deploy the app and point the default Host element to the new appBase location. Doug - Original Message - From: "Partheeban Boopathy" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, September 30, 2005 5:06 PM S

Re: Getting tomcat instance information into webapp

2005-10-02 Thread David Kerber
Kyle wrote: I may be misunderstanding the question, but it seems to me that this shouldn't really be an issue. It's more likely that I don't know enought about tomcat to ask an intelligent question! You have multiple instances of tamcat running. This means you will have multiple server.x

Re: Getting tomcat instance information into webapp

2005-10-02 Thread Kyle
I may be misunderstanding the question, but it seems to me that this shouldn't really be an issue. You have multiple instances of tamcat running. This means you will have multiple server.xml's (meaning multiple "Engine"s in which you can set up your multiple realms and direct each different re

Re: Stopping users from getting a directory listing

2005-10-02 Thread Graham Reeds
Caldarale, Charles R wrote: From: news [mailto:[EMAIL PROTECTED] On Behalf Of Graham Reeds Subject: Stopping users from getting a directory listing What is the setting in the web.xml for stopping users from getting a directory listing? I'm pretty sure I've seen it somewhere before but I can't

Re: log4j log viewer for tomcat

2005-10-02 Thread Leon Rosenberg
lf5 regards Leon On 10/2/05, matador <[EMAIL PROTECTED]> wrote: > win200x > tomcat 5.5.9 > jdk 1.5.x > log4j 1.2.9 (i think) > > standard log4j setup with logs going into logs dir under tomcat install. > > does anyone have any recommendations for a webapp or workaround that allows > me to view th

Re: Newb question - How to install TomCat on MacOS Tiger 10.4

2005-10-01 Thread Werner Punz
Thomas K. Cheriyan Jr. wrote: > Hey guys, > > Im trying to get the latest version of TomCat on my laptop which has has > MacOS Tiger 10.4. I have also installed the latest version of Java. I read > the installation guide on the Jakarta site as well as many others online and > they haven't worked a

RE: Stopping users from getting a directory listing

2005-10-01 Thread Caldarale, Charles R
> From: news [mailto:[EMAIL PROTECTED] On Behalf Of Graham Reeds > Subject: Stopping users from getting a directory listing > > What is the setting in the web.xml for stopping users from getting a > directory listing? I'm pretty sure I've seen it somewhere > before but I can't for the life of m

Re: Reg form based authentication

2005-10-01 Thread Mark Thomas
sree kanth wrote: Hi all, i have been developing on JSP's for the last one year,but still i have never implemented form based authentication. Can any one help me in implenting form based authentication? Thank you all Sreekanth Very basic example: Put login.jsp and error.jsp in the root of your

Re: Charset configurations for JSP pages

2005-10-01 Thread Mark Thomas
Mieke Banderas wrote: Mark Thomas said: Read the spec. Where in the spec? "JSP.4 Internationalization Issues" would seem to be a blinding obvious place to start. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: wrapper.properties is existing?

2005-10-01 Thread Mark Thomas
Matson, Sunny (GE Healthcare) wrote: Hi All, Is there any wrapper.properties file we can write in Tomcat 5.5 which is equivalent to jserv.properties in Jserv. If it is, how should I write this file and where I need to place it. Don't know. What does it do? Mark

Re: combining form based authentication with https

2005-10-01 Thread Mark Thomas
Peddireddy Srikanth wrote: Hi all, I have a basic doubt If there are any resoursec which will me on this please point me towards them. I will carry on from there. My question is how to combine the form based authentication, where we use "jsecuritycheck" , "jusername" etc with https. As far as

Re: SQL Server 2000: JDBC

2005-09-30 Thread sree kanth
i suppose its a driver problem. I too had faced the same problem.More the MS SQL driver works in a very different ways that the query executed is different logically from the query supplied by us. Regards, Sreekanth

RE: Apache and IIS

2005-09-30 Thread BAHLR2
I had used LoadModule mod_perl mod_perl.so in httpd.conf of Apache under NT4.0. But how to confirm whether the functionality is working or not? -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent: 30 September, 2005 5:54 PM To: Tomcat Users List Subject: Re: Apache

Re: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Bob Bronson
- Original Message - From: "Remy Maucherat" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, September 30, 2005 3:57 AM Subject: Re: Asking Again: 5.5.12 Broke my 5.5.9 Config On 9/30/05, Bob Bronson <[EMAIL PROTECTED]> wrote: Hi all, I a

RE: Precompile jsps into work directory

2005-09-30 Thread Scott Goldstein
Never mind. I searched the list again and found the answer. Though I haven't tried it, yet, it looks like with the proper arguments (output directory, package name, etc.) to JSPC, you can manipulate it to compile the jsps to the work directory and not have to insert the servlet definition fragmen

RE: Limiting the number of threads Tomcat 4.1 creates

2005-09-30 Thread Rob Shields
Hi Chuck, On Fri, 2005-09-30 at 16:53 -0500, Caldarale, Charles R wrote: > The JVM itself creates at least seven daemon threads for internal use, > and Tomcat has a few others besides the request processors. Great, thanks. Since the threads are most doing very little I doubt the 20 or so of them

Re: Newb question - How to install TomCat on MacOS Tiger 10.4

2005-09-30 Thread Fadil
Hi, What's the problem ? Send us the log, if there is. Witch version of tomcat ?jdk ? do you set the JAVA_HOME=/Library/Java/Home in your env ? do you update os ? Fadil On 9/30/05, Thomas K. Cheriyan Jr. <[EMAIL PROTECTED]> wrote: > Hey guys, > > Im trying to get the latest version of TomCat on

RE: Limiting the number of threads Tomcat 4.1 creates

2005-09-30 Thread Caldarale, Charles R
> From: Rob Shields [mailto:[EMAIL PROTECTED] > Subject: RE: Limiting the number of threads Tomcat 4.1 creates > > I've tried setting that to 10 and restarting Tomcat, but when > I do a "ps auxm" I see 20 threads running under the Sun VM: The JVM itself creates

RE: Limiting the number of threads Tomcat 4.1 creates

2005-09-30 Thread Rob Shields
Hi Chuck, On Fri, 2005-09-30 at 16:08 -0500, Caldarale, Charles R wrote: > > Is there a way to limit the number of threads that Tomcat 4.1 > > creates in its thread pool? > > Reading the doc never hurts: > http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/coyote.html > > Look at the maxPr

RE: Limiting the number of threads Tomcat 4.1 creates

2005-09-30 Thread Caldarale, Charles R
> From: Rob Shields [mailto:[EMAIL PROTECTED] > Subject: Limiting the number of threads Tomcat 4.1 creates > > Is there a way to limit the number of threads that Tomcat 4.1 > creates in its thread pool? Reading the doc never hurts: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/coyote.h

RE: TC 5.5.9 and IIS 6.0 connection

2005-09-30 Thread Tracy Spratt
In IIS 6, you need to manually add the isapi_redirect.dll to the "Web Extensions" node in the IIS manager. Tracy -Original Message- From: Julien Barnier [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 4:58 AM To: tomcat-user@jakarta.apache.org Subject: TC 5.5.9 and IIS 6.0 co

Re: Multi-level context paths possible in TC 5.5.9?

2005-09-30 Thread David Kerber
t to false (the default) in security conscious environments, to make getContext() always return null. Hope this help. ---Trung -Original Message- From: David Kerber [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 2:47 PM To: Tomcat Users List Subject: Re: Multi-level con

RE: Multi-level context paths possible in TC 5.5.9?

2005-09-30 Thread Trung Nguyen
getContext() always return null. Hope this help. ---Trung -Original Message- From: David Kerber [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 2:47 PM To: Tomcat Users List Subject: Re: Multi-level context paths possible in TC 5.5.9? Awesome!!! Worked first time. I

Re: Multi-level context paths possible in TC 5.5.9?

2005-09-30 Thread David Kerber
Awesome!!! Worked first time. I had tried messing with context paths in an application .xml, but never thought to try the server.xml. One question: what does the "crossContext" flag do? Or is that what lets it look to a different path for the context path? The help files I looked thro

RE: Multi-level context paths possible in TC 5.5.9?

2005-09-30 Thread Trung Nguyen
David, You can do this by modify the server.xml file from $TOMAT_HOME/conf/ directory: Where docBase is where you store your app. (SiteData) Hope this help ---Trung -Original Message- From: David Kerber [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 1:47 PM

Re: Multiple Threads for one webapp

2005-09-30 Thread Tim Funk
two files session and cache. Is this causing the issue.??? Is this normal ??? Regards & Thanks Mahesh S Kudva -Original Message- From: Tim Funk <[EMAIL PROTECTED]> To: Tomcat Users List Date: Fri, 30 Sep 2005 11:55:18 -0400 Subject: Re: Multiple Threads fo

Re: Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
OTECTED]> To: Tomcat Users List Date: Fri, 30 Sep 2005 11:55:18 -0400 Subject: Re: Multiple Threads for one webapp > This still seems to be a programming issue (possibly a config issue). > Without > source and config files - I don't see how the mailing list can help > resolve &g

RE: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Trond Hersløv
Thanks for clarifying that! \trond -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 18:05 To: Tomcat Users List Subject: Re: Asking Again: 5.5.12 Broke my 5.5.9 Config On 9/30/05, Trond Hersløv <[EMAIL PROTECTED]> wrote: > Hi &

Re: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Remy Maucherat
On 9/30/05, Trond Hersløv <[EMAIL PROTECTED]> wrote: > Hi > I'm also running TC 5.5.9 and planning on installing 5.5.12. > Twice I have read through the complete Changelog, from 5.5.10 to 5.5.12. I > find nothing saying this attribute is now ignored. (Remy has appended his > comments at the botto

Re: Multiple Threads for one webapp

2005-09-30 Thread Tim Funk
0 Sep 2005 09:56:09 -0400 Subject: Re: Multiple Threads for one webapp It seems you have a thread started in the background during the life of the application. This thread goes to some external place of storage and to look for emails to send. It seems this thread is not stopped when a context

Re: Multiple Threads for one webapp

2005-09-30 Thread Mahesh S Kudva
-Original Message- From: Tim Funk <[EMAIL PROTECTED]> To: Tomcat Users List Date: Fri, 30 Sep 2005 09:56:09 -0400 Subject: Re: Multiple Threads for one webapp > It seems you have a thread started in the background during the life of > the > application. > This thread goes t

RE: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Trond Hersløv
7:29 To: Tomcat Users List Subject: RE: Asking Again: 5.5.12 Broke my 5.5.9 Config > From: Trond Hersløv [mailto:[EMAIL PROTECTED] > Subject: RE: Asking Again: 5.5.12 Broke my 5.5.9 Config > > I find nothing saying this attribute is now ignored. RTFM: "The value of this field must n

RE: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Caldarale, Charles R
> From: Trond Hersløv [mailto:[EMAIL PROTECTED] > Subject: RE: Asking Again: 5.5.12 Broke my 5.5.9 Config > > I find nothing saying this attribute is now ignored. RTFM: "The value of this field must not be set except when statically defining a Context in server.xml, as it wil

Re: Reg form based authentication

2005-09-30 Thread Peddireddy Srikanth
chk this link this might help you http://www.onjava.com/pub/a/onjava/2002/06/12/form.html u wil find lot of resources on net on this On 9/30/05, sree kanth <[EMAIL PROTECTED]> wrote: > Hi all, > i have been developing on JSP's for the last one year,but still i have > never > implemented form base

RE: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Trond Hersløv
Users List Subject: Re: Asking Again: 5.5.12 Broke my 5.5.9 Config On 9/30/05, Bob Bronson <[EMAIL PROTECTED]> wrote: > Hi all, > > I asked this question a couple days ago but received no helpful > responses. I thought I'd try one more time. If anyone has had > experienc

Re: Tomcat Alone or tomcat+IIS/Apache

2005-09-30 Thread Peddireddy Srikanth
thanks for all the replies On 9/30/05, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Peddireddy Srikanth [mailto:[EMAIL PROTECTED] > > Subject: Re: Tomcat Alone or tomcat+IIS/Apache > > > > And they argue that as Tomcat it self runs inside a JVM, which

Re: SQL Server 2000: JDBC

2005-09-30 Thread Lalit Batra
nth [mailto:[EMAIL PROTECTED] > Sent: vendredi 30 septembre 2005 05:27 > To: Tomcat Users List; Lalit Batra > Subject: Re: SQL Server 2000: JDBC > > Hello lalit, > we too had the problem of connection reset by peer and then we changed > the > Driver.Now we are using SourceForge

Re: Multiple Threads for one webapp

2005-09-30 Thread Tim Funk
It seems you have a thread started in the background during the life of the application. This thread goes to some external place of storage and to look for emails to send. It seems this thread is not stopped when a context is reloaded. When the app is reloaded - a new thread is started. In this

[OT] RE: Installing Tomcat 5.5 on Fedora 4 via Yum

2005-09-30 Thread Peter Crowther
> From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] > I've never understood this fascination for fooling around > with 3rd-party > packaged versions of Tomcat, rather than using the unadulterated > originals directly from the Tomcat download site. The > process couldn't > be much simpler: do

Re: Installing Tomcat 5.5 on Fedora 4 via Yum

2005-09-30 Thread Leon Rosenberg
On 9/30/05, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Rob Hills [mailto:[EMAIL PROTECTED] > > Subject: Installing Tomcat 5.5 on Fedora 4 via Yum > > > > However, I've so far been unsuccessful in finding any way to upgrade > > Tomcat beyond 5.0 using Yum. Has anyone else achieved th

RE: Installing Tomcat 5.5 on Fedora 4 via Yum

2005-09-30 Thread Caldarale, Charles R
> From: Rob Hills [mailto:[EMAIL PROTECTED] > Subject: Installing Tomcat 5.5 on Fedora 4 via Yum > > However, I've so far been unsuccessful in finding any way to upgrade > Tomcat beyond 5.0 using Yum. Has anyone else achieved this? I've never understood this fascination for fooling around with

RE: Tomcat Alone or tomcat+IIS/Apache

2005-09-30 Thread Caldarale, Charles R
> From: Peddireddy Srikanth [mailto:[EMAIL PROTECTED] > Subject: Re: Tomcat Alone or tomcat+IIS/Apache > > And they argue that as Tomcat it self runs inside a JVM, which inturn > is a single process all the threads etc wil be simulted ones (and not > the native threads) and

Re: tomcat caching issue

2005-09-30 Thread Tim Funk
Based on everything written so far - there is no evidence tomcat would be chaching anything. I'd suggest placing as much debug code in your code as possible via a logging pacakge such as log4j/commons-logging so the log information can be turned on via configuration directives. -Tim Santosh

Re: Apache and IIS

2005-09-30 Thread Nikola Milutinovic
[EMAIL PROTECTED] wrote: I want Apache to server .asp files, if possible rather than having IIS server to serve .asp files. Look for mod_asp, there are actually several implementations, ChillySoft was one of them, if memory serves. I think they are all based on mod_perl, so have that func

RE: Apache and IIS

2005-09-30 Thread BAHLR2
I want Apache to server .asp files, if possible rather than having IIS server to serve .asp files. -Original Message- From: Raghupathy,Gurumoorthy [mailto:[EMAIL PROTECTED] Sent: 30 September, 2005 4:32 PM To: 'Tomcat Users List' Subject: FW: Apache and IIS Importance: High Proxy is may

RE: Monitor and restart tomcat

2005-09-30 Thread Matteo Turra
More: if I use jsvc to launch tomcat as daemon, does jsvc -check provide information abuot tomcat status? > -Original Message- > From: Matteo Turra > Sent: venerdì 30 settembre 2005 11.57 > To: tomcat-user@jakarta.apache.org > Subject: Monitor and restart tomcat > > Hi, I would like t

Re: Asking Again: 5.5.12 Broke my 5.5.9 Config

2005-09-30 Thread Remy Maucherat
On 9/30/05, Bob Bronson <[EMAIL PROTECTED]> wrote: > Hi all, > > I asked this question a couple days ago but received no helpful > responses. I thought I'd try one more time. If anyone has had > experience with this, please let me know. Thanks... > > I've just tried to "upgrade" from TC v5

RE: session state preserved across different applications

2005-09-30 Thread Michal Kwiatek
Thanks a lot Bernhard, this is a pretty complete explanation! Michał. > -Original Message- > From: Bernhard Slominski [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 29, 2005 6:25 PM > To: 'Tomcat Users List' > Subject: AW: session state preserved across different applications > >

RE: SQL Server 2000: JDBC

2005-09-30 Thread Karasek-XID, Nicolas
-Original Message- From: sree kanth [mailto:[EMAIL PROTECTED] Sent: vendredi 30 septembre 2005 05:27 To: Tomcat Users List; Lalit Batra Subject: Re: SQL Server 2000: JDBC Hello lalit, we too had the problem of connection reset by peer and then we changed the Driver.Now we are using

Re: Tomcat Alone or tomcat+IIS/Apache

2005-09-30 Thread Leon Rosenberg
We had the same discussion a year ago, as we switched to tomcat 5 and was testing whether we do need apache in front of it. Actually the only advantage for this solution left were apache mods like url-rewriting -> http://mydomain -> http://mydomain/myapp/mypath <- better for some search engines and

Re: Tomcat Alone or tomcat+IIS/Apache

2005-09-29 Thread Mladen Turk
Peddireddy Srikanth wrote: And they argue that as Tomcat it self runs inside a JVM, which inturn is a single process all the threads etc wil be simulted ones (and not the native threads) and hence it will not scale up well under high loads. Is this argument a valid one or just a misunderstandin

Re: Tomcat Alone or tomcat+IIS/Apache

2005-09-29 Thread Peddireddy Srikanth
Dear Chuck, your mail is very informative. We r facing a similar issue in our organization :: Tomcat or Apache+tomcat. And the supporters of Apache+tomcat are arguing that as Apache/IIS can make use of native OS (windows inour case) libraries for thread management , memory mangement etc, they wi

Re: SQL Server 2000: JDBC

2005-09-29 Thread MERT EREN ÜSTÜNKAYA
Hei, I used to have that problem i am not sure but this happens when you dont close the connections i guess. Use "sp_who" STORED procedure to check the logged on users to SQL2000.. sree kanth wrote: Hello lalit, we too had the problem of connection reset by peer and then we changed the

RE: Re: Flexible way of defining application variables in text format?

2005-09-29 Thread Caldarale, Charles R
> From: news [mailto:[EMAIL PROTECTED] On Behalf Of matador > Subject: Re: Flexible way of defining application variables > in text format? > > > > First: you can load your property files on each request as well. > > really, using what? Try the java.util.Propert

Re: SQL Server 2000: JDBC

2005-09-29 Thread sree kanth
Hello lalit, we too had the problem of connection reset by peer and then we changed the Driver.Now we are using SourceForge driver jtds.jar.May be this may solve ur problem. If anyone can find a better alternative please inform us. Regards, Sreekanth >

Re: Flexible way of defining application variables in text format?

2005-09-29 Thread matador
Leon Rosenberg <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > > First: you can load your property files on each request as well. really, using what? im curious -- struts and regular properties files out of the box dont support that behaviour, so you would have to 'roll your own' i thi

Re: Charset configurations for JSP pages

2005-09-29 Thread Mieke Banderas
Mark Thomas said: >Read the spec. Where in the spec? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Why doesn't my context work?

2005-09-29 Thread Mark Eggers
--- Michael Sullivan <[EMAIL PROTECTED]> wrote: [ lots of stuff snipped ] OK, I finally got around to putting this together on my Limux (Fedora Core 4) box. My environment: 2.6.12-1.1456_FC4 running on a Dell 8200 with 768 MB java 1.5.0_04-b05 apache 2.0.54 mod_jk 1.2.14.1 tomcat 5.5.9 My confi

RE: Capturing User Passwords

2005-09-29 Thread Bovy, Stephen J
:58 AM To: Tomcat Users List Subject: RE: Capturing User Passwords Hi Stephen, Aaron posted the link (Thanks Aaron!) - so I guess your request is best directed to him. Cheers, Greg -Original Message- From: Bovy, Stephen J [mailto:[EMAIL PROTECTED] Sent: Thu

RE: Capturing User Passwords

2005-09-29 Thread Perry, Greg \(UK - London\)
: Subject: RE: Capturing User Passwords Hi Greg , thanks for the link. Your download does not have any source, ( can you share it ?? ) Stephen Bovy Computer Associates 6100 Center Drive Suite 700

RE: Capturing User Passwords

2005-09-29 Thread Bovy, Stephen J
[mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 4:43 PM To: Tomcat Users List Subject: Re: Capturing User Passwords You could modify the FormAuthenticator class and have it cache the password. I believe it's in the org.apache.catalina.authenticator package of the tomcat source.

RE: Struts Validation

2005-09-29 Thread Raghupathy,Gurumoorthy
Send your ApplicationResource.properties and alsi the struts-config.xml -Original Message- From: Phillip Qin [mailto:[EMAIL PROTECTED] Sent: 29 September 2005 17:52 To: Tomcat Users List Subject: RE: Struts Validation You need to copy some messages from validator-rules.xml's comm

RE: Struts Validation

2005-09-29 Thread Phillip Qin
You need to copy some messages from validator-rules.xml's commented out block. -Original Message- From: Samara, Fadi N Mr ACSIM/ASPEX [mailto:[EMAIL PROTECTED] Sent: September 29, 2005 12:44 PM To: 'tomcat-user@jakarta.apache.org' Subject: Struts Validation Dear list, I have a very simp

Re: How to PreCompile JSPs

2005-09-29 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Murali wrote: > Hi , > Can you someone provide me some information on how to precompile JSPs > (probably thousands of JSPs) ? This might help. http://www.rgagnon.com/javadetails/java-0414.html - -- "Love is mutual self-giving that ends in self-reco

Re: Running Servlet in Tomcat

2005-09-29 Thread Partheeban Boopathy
Hi Copy your class file in webapps/YourApplication/WEB-INF/classes folder and restart the server,it will work. Thanks Parthi On 9/29/05, Singh, VilishKumar <[EMAIL PROTECTED]> wrote: > > Hi all, > I have compiled my servltet class and but hen I put the .class file into > the webapps/ROOT/WEB-IN

Re: Capturing User Passwords

2005-09-29 Thread [EMAIL PROTECTED]
Thanks Larry - that's worked for me!-Original Message-From: Larry Meadors [mailto: [EMAIL PROTECTED]] Sent: 29 September 2005 04:01To: Tomcat Users List Subject: Re: Capturing User PasswordsHere is the code (this is for tomcat 4.1.x):       if(log.isDebugEnabled()){          Prin

Re: Webapp deploy on windows

2005-09-29 Thread Joakim Ahlén
Thanks for your reply, I looked into bug 10026 and found out that there has been some issues with dtds stored inside jar-files, which is exactly our case. This is the first time i've actually came across some type of cause for this problem, so i'll look into this further before i start digging

Re: pointing to a folder outside tomcat webapps

2005-09-29 Thread Peddireddy Srikanth
ntext. > Hot to do it? > > > -- Initial Header --- > > From : "Arup Vidyerthy" [EMAIL PROTECTED] > To : "Tomcat Users List" tomcat-user@jakarta.apache.org > Cc : > Date : Wed, 28 Sep 2005 11:27:25 +0100 > Subject : RE: pointi

Re: custom session manager

2005-09-28 Thread Leon Rosenberg
check this out: http://www.niallp.pwp.blueyonder.co.uk/TomcatBug36541.html The link itself handles a bug, but one of the solutions is to replace the std. manager with custom manager with all info you need to actually do this. I thin kthis fits your question. regards leon On 9/29/05, Mark <[EMAI

Re: Flexible way of defining application variables in text format?

2005-09-28 Thread Leon Rosenberg
On 9/29/05, matador <[EMAIL PROTECTED]> wrote: > Leon Rosenberg <[EMAIL PROTECTED]> wrote in > news:[EMAIL PROTECTED]: > > > > > > now how exactly writing a thread which polls the db is less messy, > > than writing a thread that polls a file? > > > > regards > > leon > > > no need for threads with

Re: Jsps

2005-09-28 Thread Leon Rosenberg
if you haven't reconfigured your resin -> actually nothing. just drop your war file in webapps. if you did, you have to do the same you did in httpd.sh now in catalina.sh. More or less. leon On 9/29/05, Prema Kumar <[EMAIL PROTECTED]> wrote: > > Hi, > > I have an Application which is J2EE Archi

RE: Multiple tomcat services?

2005-09-28 Thread Jens Nordberg
28 september 2005 16:35 To: 'Tomcat Users List' Subject: RE: Multiple tomcat services? If you look at $tomcat_home/bin directory you should see a file call service.bat. Using that file you should be able to install a tomcat service under different names. -Original Message-

RE: Running Servlet in Tomcat

2005-09-28 Thread Singh, VilishKumar
] Sent: Thursday, 29 September 2005 11:32 AM To: Tomcat Users List Subject: Re: Running Servlet in Tomcat Reading the provided documentation is usually a good place to start. Singh, VilishKumar wrote: > I have done that. > I have not used any package in my servlet. You must place all your

Re: Webapp deploy on windows

2005-09-28 Thread Mark Thomas
Joakim Ahlén wrote: I'm not trying to blame anyone for not fixing this issue, (well, maybe i'm laying some blame on those who thinks this is _not_ a tomcat issue..) however, i am really interested in having this bug fixed, and i am prepared to put some effort and time into it myself. To do this

Re: Running Servlet in Tomcat

2005-09-28 Thread Mark Thomas
Reading the provided documentation is usually a good place to start. Singh, VilishKumar wrote: I have done that. I have not used any package in my servlet. You must place all your class files in packages. http://jakarta.apache.org/tomcat/faq/classnotfound.html Can u describe the steps precise

RE: Running Servlet in Tomcat

2005-09-28 Thread Singh, VilishKumar
Hi Shashikant, I have done that. I have not used any package in my servlet. Can u describe the steps precisely to run the first servlet in tomcat thanks Regards, Vilish -Original Message- From: shashikant [mailto:[EMAIL PROTECTED] Sent: Thursday, 29 September 2005 11:05 AM T

Re: Re: Running Servlet in Tomcat

2005-09-28 Thread sree kanth
Sorry, icouldn't get u.Please help Regards, Sreekanth

Re: Session sharing not working - Which is the best strategy?

2005-09-28 Thread sree kanth
Hi all, frankly saying, i too have never tried this but we can keep some information stored in a cookie and then we can have the other web application browse through the cookies and find if the cookie is the intended one and process the applciation logic. Regards, Sreekanth

Re: Re: Running Servlet in Tomcat

2005-09-28 Thread mail
We're sorry, you have reached an email address at YahooGropus, not YahooGroups. Your message has not been delivered to the Yahoo Group intended. Please re-send your email to the correct address. We apologize for the inconvenience. YahooGropus

Re: Running Servlet in Tomcat

2005-09-28 Thread sree kanth
Hi singh, try to put package declaration for the servlets and then redeploy.This may work. Regards, Sreekanth

Re: Capturing User Passwords

2005-09-28 Thread Larry Meadors
Here is the code (this is for tomcat 4.1.x): if(log.isDebugEnabled()){ Principal principal = req.getUserPrincipal(); PropertyDescriptor[] pds; pds = PropertyUtils.getPropertyDescriptors(principal.getClass()); for(int i = 0; i < pds.length; i++){

Re: Flexible way of defining application variables in text format?

2005-09-28 Thread matador
Leon Rosenberg <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > > now how exactly writing a thread which polls the db is less messy, > than writing a thread that polls a file? > > regards > leon no need for threads with db. change the val in the db then the next time the page loads,

Re: JMX Method to check JDBC connection acivity?

2005-09-28 Thread andy gordon
Edmon, Did you get an answer to your question? I found your question quite interesting. I ran some tests and received the same error (RMI permission) as you. I used JConsole as well as looked at JMXProxy and could not determine if my datasource (in this case MySQL) was running or not. The i

Re: Session Attribute Management

2005-09-28 Thread Vernon
I already found the problem. It is about how a request shall be written in a JSP file: using . Thanks --- Vernon <[EMAIL PROTECTED]> wrote: > Hi, all, > > In my application, a session attribute is needed to > let the application function properly. So, I have a > filter to verify whether this a

Re: Capturing User Passwords

2005-09-28 Thread Aaron Loucks
Again, any help would be greatly appreciated. -Original Message- From: Giuseppe Briotti [mailto:[EMAIL PROTECTED] Sent: 28 September 2005 14:45 To: Tomcat Users List Subject: Re: Capturing User Passwords == Date: Wed, 28 Sep 2005 14:29:04 +0100 From: &q

OT: RE: Generic Types support in Tomcat?

2005-09-28 Thread kooto (sent by Nabble.com)
o pin-point your search on Nabble. In contrast, Google's search has to appeal to the non-technical majorities. -- Sent from the Tomcat - User forum at Nabble.com: http://www.nabble.com/RE%3A-Generic-Types-support-in-Tomcat--t334942.html#a987796

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-28 Thread Shankar Unni
NoKideen wrote: is there anybody know how to do this ? Running Tomcat as Non-Root under Linux listen for port 80 Google is your friend: http://www.google.com/search?q=linux+port+80+non-root - To unsubscribe, e-mail: [EMAI

Re: Vexing Problem with Tomcat connector

2005-09-28 Thread Mark Thomas
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. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old thread.

Re: Virtual hosts and Threads

2005-09-28 Thread Mark Thomas
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. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old thread.

Re: Possible Security Bug

2005-09-28 Thread Mark Thomas
John Caron wrote: I have a _possible_ bug involving security in Tomcat 5.0.28. I dont see it in the bug database, although it may be described in a way that I didnt search for. I would prefer to send it privately in case its real. If thats not feasible, I will post it here. Or is there a way

Re: Manager webapp and virtual hosts

2005-09-28 Thread Dan Baggott
Mikolaj, Hi. Sorry to bother you but I saw this posting on the Tomcat list and was wondering if you were able to successfully set up what you describe? I have mod_jk working fine and I'm now trying to do exactly what you mentioned: my1.domain.com (apache + mod_jk) ===> tomcat.domain.com/webap

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