Re: frequent Class unloading/classnotfound problem

2011-04-09 Thread S Arvind
Chris, > So when the request comes it is sending 404 status or class-not-found exception. ->-Can you give some specifics? >>Assume we have a class called Sample.class, so when trying to create the object it is giving classnotfound exception. Then i have to again compile the java in the runtime

Re: [ANN] Apache Tomcat 7.0.12 released

2011-04-09 Thread Stevo Slavić
Since these requests to upload maven artifacts are repeating regularly after a release, obviously publishing these artifacts is not part of the release process, but community expects/requires them. Why not make it automatic part of release process? Regards, Stevo. On Sun, Apr 10, 2011 at 12:13 AM

Re: [ANN] Apache Tomcat 7.0.12 released

2011-04-09 Thread David Calavera
Hey Mark, could you upload the maven artifacts to the repository?? Thank you! On Wed, Apr 6, 2011 at 9:51 AM, Mark Thomas wrote: > The Apache Tomcat team announces the immediate availability of Apache > Tomcat 7.0.12. > > Apache Tomcat 7.0.12 includes bug fixes and the following new features >

Re: localhost:8080

2011-04-09 Thread Jonathan Rosenberg
By default, Tomcat listens on port 8080. When you type just localhost, the browser tries port 80. Did Tomcat just get reinstalled, by chance? -- Jonathan Rosenberg Founder & Executive Director Tabby's Place, a Cat Sanctuary On Sat, Apr 9, 2011 at 3:14 PM, ken dias wrote: > > > I have to type

localhost:8080

2011-04-09 Thread ken dias
I have to type localhost:8080 to get to my webserver - tomcat 6.0.032. Before, just localhost would work. I have XP Thanks, Ken

Re: [ win xp and win server 2003 ] tomcat utf8 encoding

2011-04-09 Thread André Warnier
Fadil wrote: unsubscribe -- | v To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org - To unsubscribe, e-mail: users-unsubscr..

RE: localhost:8080

2011-04-09 Thread Caldarale, Charles R
> From: ken dias [mailto:kend...@hotmail.com] > Subject: localhost:8080 > I have to type localhost:8080 to get to my webserver - tomcat > 6.0.032. Before, just localhost would work. I have XP > Thanks, > Ken > > Date: Sat, 9 Apr 2011 18:26:11 +0100 > > Subject: Re: [ win xp and win server

localhost:8080

2011-04-09 Thread ken dias
I have to type localhost:8080 to get to my webserver - tomcat 6.0.032. Before, just localhost would work. I have XP Thanks, Ken > Date: Sat, 9 Apr 2011 18:26:11 +0100 > Subject: Re: [ win xp and win server 2003 ] tomcat utf8 encoding > From: fadil.w...@gmail.com > To: users@tomcat.apache.or

Re: [ win xp and win server 2003 ] tomcat utf8 encoding

2011-04-09 Thread Fadil
unsubscribe 2011/4/7 Tomislav Brkljačić > > Hi to all, > > this is my scenario and problem. > > Situation 1. - local machine, win xp > I have a web app deployed to tomcat, and the app has a webform for > uploading > attachments. > Attachments can have funny letters (š,ć,čćžđ ) in the filename. >

Re: [ win xp and win server 2003 ] tomcat utf8 encoding

2011-04-09 Thread Tomislav Brkljačić
I gave the "add the filter and bunch of Spring jars" method a try and it turned out to be a success! Fantastic! Filter code : characterEncodingFilter org.springframework.web.filter.CharacterEncodingFilter forceEncoding true encoding UTF-8 characterEncodingFilter /* And all the jars fro

How to retry database connection with Tomcat 7 jdbc pool ?

2011-04-09 Thread sojin
How to configure Tomcat 7 jdbc pool to retry database connection if the DB goes restarted ? With default configurations on alternatives like apache dbcp or bonecp, the connection gets automatically re-connected when DB back in life. But not with the Tomcat jdbc with all default configuration. Any