problems solved restarting tomcat

2009-02-26 Thread Laura Bartolomé
Hi again... We have problems with our webpage, suddenly it doens't load and an error message appears (I can't told you the exact error showed cause I couldn't see it, but I have to believe the boss... ). If we restart Tomcat then it turns on again working correctly! We have Tomcat 6 like a

Re: problems solved restarting tomcat

2009-02-26 Thread David Smith
It looks like your web application is trying to convert a string to a long (a type of number similar to an integer, but bigger) at line 49 in se.purpur.roach.web.pub.action.PublicArticleAction, but the string it's trying to convert is null. On a guess, this is related to a form submission and a

Re: problems solved restarting tomcat

2009-02-26 Thread Laura Bartolomé
Ok, and the question is: is possible than this error makes Tomcat doesn't work and we need to restart it??? Thanks for your help David Smith escribió: It looks like your web application is trying to convert a string to a long (a type of number similar to an integer, but bigger) at line 49 in

Re: problems solved restarting tomcat

2009-02-26 Thread David Smith
Normally no, but then again I don't know a lot about your software. Anything I suggest would be pure conjecture. --David Laura Bartolomé wrote: Ok, and the question is: is possible than this error makes Tomcat doesn't work and we need to restart it??? Thanks for your help David Smith

Re: problems solved restarting tomcat

2009-02-26 Thread Laura Bartolomé
ok... :( some idea of where can I get information about this problem? I mean the problem that leaves Tomcat without working David Smith escribió: Normally no, but then again I don't know a lot about your software. Anything I suggest would be pure conjecture. --David Laura Bartolomé wrote:

RE: problems solved restarting tomcat

2009-02-26 Thread Caldarale, Charles R
From: Laura Bartolomé [mailto:la...@secways.com] Subject: Re: problems solved restarting tomcat Ok, and the question is: is possible than this error makes Tomcat doesn't work and we need to restart it??? Probably not that error directly, but the failure in properly handling the request

Re: problems solved restarting tomcat

2009-02-26 Thread David Smith
Your options are pretty limited -- 1. Talk to the developer of your webapp, 2. Hire another developer if the original isn't available, or 3. Learn Java and web application development with Struts (that's the framework your webapp is using), then look at the source code and debug it yourself.