Re: Tomcat dies suddenly

2010-02-14 Thread Peter Crowther
On 13 February 2010 15:29, Caldarale, Charles R chuck.caldar...@unisys.comwrote: Does memtest86+ fire up enough threads to heat up all the cores? No. It's a pure memory tester, and it's single-threaded so that it always knows what's adjacent to each bit. - Peter

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread Carl
Jorge, If the problem was easy, there wouldn't be the number of threads. I am running the standard JVM from Sun, in fact, have tried two versions. The boxes are not the problem because the problem appears on two very different boxes. Thanks, Carl - Original Message - From: Jorge

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread Carl
Anthony, Very certain it is not the hardware, am running Sun JVM, could be the OS. May be my next step (CentOS.) Thanks, Carl - Original Message - From: anthonyvie...@gmail.com To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, February 14, 2010 1:01 AM Subject: Re: [OT]

Re: Tomcat dies suddenly

2010-02-14 Thread Carl
Peter, That's what I thought. Thanks, Carl - Original Message - From: Peter Crowther peter.crowt...@melandra.com To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, February 14, 2010 5:29 AM Subject: Re: Tomcat dies suddenly On 13 February 2010 15:29, Caldarale, Charles R

File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
I have a new website that I'm using to bring my skills up to date and I'm running into a file does not exist issue. This is a very simple JSP/STRUTS application that I have working on my home system using NetBeans 6.8 and TomCat 5.5.28. It is made up of a couple of JSP pages and a STRUTS

Re: Tomcat dies suddenly

2010-02-14 Thread Mark Thomas
On 13/02/2010 22:23, Carl wrote: 5) not quite sure of this anymore, but it seems to happen also on different JVMs, which would tend to rule out a problem with a particular JVM port. No, I have only used Sun's 64 bit. Started with 1.6.0_17 and am now using 1.6.0_18. That is enough of a

Re: Tomcat dies suddenly

2010-02-14 Thread Carl
Mark, Thanks for the advice. I started down the 32 bit path but had difficulty with missing libraries on 64 bit Slackware. Brought up Slackware 32 bit but realized that was going back to the restrictive memory problems so stopped that path. I had thought about using a different JVM but

Re: Tomcat not seeing servlet

2010-02-14 Thread Konstantin Kolinko
2010/2/14 David Short dsh...@san.rr.com:    servlet-mapping        servlet-nameAuthLoginServlet/servlet-name        url-pattern/AuthLogin/url-pattern    /servlet-mapping The above is correct. Login.jsp snippet: form name=login method=post action=/AuthLogin Try this instead: form

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Pid
On 14/02/2010 11:58, Steve Campisano wrote: I have a new website that I'm using to bring my skills up to date and I'm running into a file does not exist issue. This is a very simple JSP/STRUTS application that I have working on my home system using NetBeans 6.8 and TomCat 5.5.28. It is made up

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
Thanks for replying . Yes, it is ugly I agree with that . but I'm just starting out ... small steps Anyway, I figured I'd start off with something small and easy. I did pass a few emails back and forth with the support staff but they pushed it back on me ... They told me to talk

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
Well, I seemed to have corrected my issue I created a new directory under public_html and copied all of my componets to this directory including WEB-INF, etc . Did a start and stop and it worked Now I'm going to try and create a small MySQL database and see if I can CRUD

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
I spoke to soon . I'm still getting the same error . On 2/14/2010 10:21 AM, Steve Campisano wrote: Thanks for replying . Yes, it is ugly I agree with that . but I'm just starting out ... small steps Anyway, I figured I'd start off with something small and easy. I did pass

RE: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Caldarale, Charles R
From: Steve Campisano [mailto:w1...@yahoo.com] Subject: Re: File does not exist error - public_html/addArticle.do I spoke to soon . I'm still getting the same error . So respond to Pid's suggestion: Without seeing the server.xml, any application context.xml or additional config,

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Ken Bowen
I believe addArticle.do is part of what is provided or generated by the Struts framework. You're much more likely to find someone who can help you with this on the struts mailing list. --Ken On Feb 14, 2010, at 10:21 AM, Steve Campisano wrote: Thanks for replying . Yes, it is ugly I

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
./AuthLogin and AuthLogin still don't work. It works with the fully qualified path http://yourserver:port/yourwebapp/AuthLogin; or ../../AuthLogin Thank you. -Original Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Sunday, February 14, 2010 5:53 AM To: Tomcat

Re: Tomcat not seeing servlet

2010-02-14 Thread Juha Laiho
On 02/14/2010 06:21 PM, David Short wrote: ./AuthLogin and AuthLogin still don't work. It works with the fully qualified path http://yourserver:port/yourwebapp/AuthLogin; or ../../AuthLogin Ah, yes, that completes the picture. And below I'll somewhat repeat what Konstantin already explained,

RE: [OT] Tomcat dies suddenly

2010-02-14 Thread George Sexton
-Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: Saturday, February 13, 2010 3:28 PM To: Tomcat Users List Subject: Re: [OT] Tomcat dies suddenly Caldarale, Charles R wrote: Since we must have by now exhausted all the normal causes of such errors,

RE: [OT] Tomcat dies suddenly

2010-02-14 Thread George Sexton
Most IS people by nature are problem solvers. We like puzzles, and we like solving them. This is a useful exercise because someday this problem or something similar will happen to someone else. If it's really bugging you, no one is forcing you to read the messages. Why don't you just ignore them?

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread Carl
George, Been there. In Brookfield (CT), under certain circumstances, when someone would use the copier (not on the same circuit), the Novell server would go down. Here, we have all new wiring directly from the fuse box with really good UPS's in between. Thanks, Carl - Original

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
I'm waiting for this information now .. On 2/14/2010 10:48 AM, Caldarale, Charles R wrote: From: Steve Campisano [mailto:w1...@yahoo.com] Subject: Re: File does not exist error - public_html/addArticle.do I spoke to soon . I'm still getting the same error . So respond to

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread Ognjen Blagojevic
George Sexton wrote: There's a story in a book I once read where a computer system crashed every morning around the same time. No one could figure it out. Finally, the head of IS goes down to the computer room at the expected time. In walks a maintenance man who comes in, opens the cabinet

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
Yes, you are correct that the .do is part of struts. However, this appears to be a setup issue with my site. Again, I have this working in my testing environment. It is only an issue after deployment to my web site. Also note that is will work if I access the application in the following

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
Here is what I have for a server.xml component . I'm have also requested addition information concerning the application context.xml or additional configuration information NOTE: X = my site name = Host name=X.com appBase=/home/X/public_html

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
Here is what they sent for the context.xml. Here are the contents for context.xml file. = Context WatchedResourceWEB-INF/web.xml/WatchedResource /Context = On 2/14/2010 2:29 PM, Steve Campisano wrote: Here is what I have for a server.xml component . I'm

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Pid
On 14/02/2010 19:29, Steve Campisano wrote: Here is what I have for a server.xml component . I'm have also requested addition information concerning the application context.xml or additional configuration information NOTE: X = my site name = Host name=X.com

Re: Tomcat dies suddenly

2010-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carl, On 2/13/2010 5:35 PM, Carl wrote: I am using the mysql-connector/j version 3.1.12. Interesting because the latest driver is version 5.1.11. Is this worth a shot or is it likely to just miuddy the waters? We typically have less than 20

Re: Tomcat dies suddenly

2010-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carl, On 2/13/2010 4:04 PM, Carl wrote: I will start the newly rebuilt server with strace tomorrow morning before anyone comes on. Hopefully, strace will yield some useful information. You'll likely have to run your server repeatedly under

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Anthony, On 2/14/2010 1:01 AM, anthonyvie...@gmail.com wrote: CentOS, Sun JVM, IBM Hardware = 100% Uptime 100%, eh? Care to make a wager? - -chris -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Mozilla -

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread anthonyvierra
ok i left out the cluster part ;) On Sun, Feb 14, 2010 at 1:21 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Anthony, On 2/14/2010 1:01 AM, anthonyvie...@gmail.com wrote: CentOS, Sun JVM, IBM Hardware = 100% Uptime 100%, eh?

Re: Tomcat dies suddenly

2010-02-14 Thread Carl
Chris, I upgraded to 5.1.11 but can go back to 3.1.12 in about 15 minutes. Have been running all day on 5.1.11... no burps so far but I haven't been pushing it. Tomoroow, I will see if I can break it. Thanks, Carl - Original Message - From: Christopher Schultz

Re: Tomcat dies suddenly

2010-02-14 Thread Carl
Chris, I agree it will be several crashes (maybe never) but strace is a low risk, low investment so I am running with it. I am also using your suggestion to trap the exit code although I believe we already know what it will be. The production server that has held up all day is the T110

Re: [OT] Tomcat dies suddenly

2010-02-14 Thread Carl
Chris, You are evil. Thanks, Carl - Original Message - From: Christopher Schultz ch...@christopherschultz.net To: Tomcat Users List users@tomcat.apache.org Sent: Sunday, February 14, 2010 4:21 PM Subject: Re: [OT] Tomcat dies suddenly -BEGIN PGP SIGNED MESSAGE- Hash: SHA1

RE: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Caldarale, Charles R
From: Pid [mailto:p...@pidster.com] Subject: Re: File does not exist error - public_html/addArticle.do Host name=X.com appBase=/home/X/public_html Aliaswww.X.com/Alias Context path= reloadable=true docBase=/home/X/public_html debug=1/ This is the old school and

RE: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Caldarale, Charles R
From: Steve Campisano [mailto:w1...@yahoo.com] Subject: Re: File does not exist error - public_html/addArticle.do Here is what they sent for the context.xml. Context WatchedResourceWEB-INF/web.xml/WatchedResource /Context That's the global conf/context.xml, which applies to all

Re: File does not exist error - public_html/addArticle.do

2010-02-14 Thread Steve Campisano
Thanks for taking the time and helping me with my issue and also for reviewing the server and context xml that was provided to me. Your analysis indicates there are many issues that would require attention by their systems staff. I will discuss your findings with them though my impression is

RE: Tomcat not seeing servlet

2010-02-14 Thread David Short
Thank you Juha. The c:url value='/AuthLogin'/ works nicely. -Original Message- From: Juha Laiho [mailto:juha.la...@iki.fi] Sent: Sunday, February 14, 2010 8:49 AM To: users@tomcat.apache.org Subject: Re: Tomcat not seeing servlet On 02/14/2010 06:21 PM, David Short wrote: ./AuthLogin