Re: dbcp with embedded tomcat7

2011-02-07 Thread Konstantin Kolinko
2011/2/7 Holger Veltrup velt...@sitepark.com:  InitialContext ic = new InitialContext(); In short: 1) InitialContext depends on classloader: the context you created here and the one that your webapp will create with new InitialContext() are different. 2) Usually binding a pool after

Re: Does tomcat use some kind of virtualization technology or sharing/mounting network filesystem?

2011-02-07 Thread Pid
On 07/02/2011 10:19, Astghik Mkrtchyan wrote: Does tomcat use some kind of virtualization technology or sharing/mounting network filesystem? Or what kind of reason can be for such behavior and how to fix? No it doesn't. p signature.asc Description: OpenPGP digital signature

Re: Tomcat7 - Firefox - SWF Upload

2011-02-07 Thread Pid
On 07/02/2011 12:37, Gabriele Bulfon wrote: Sorry, I thought it was an already known issue. I'm using SWFUpload, a mix of javascript/flash that enables multiple files to be uploaded with multiselection. It uses JSESSIONID to mantain session. I have read these two links about the problem:

Re: Tomcat7 - Firefox - SWF Upload

2011-02-07 Thread Gabriele Bulfon
Thanks, I have only this inf conf: conf/Catalina/localhost and it's empty. What is this? Gabriele. -- Da: Pid A: Tomcat Users List Data: 7 febbraio 2011 15.13.26 CET Oggetto: Re: Tomcat7 - Firefox - SWF Upload On

Re: how to refresh connection pool before it gets completely busy

2011-02-07 Thread Filip Hanik - Dev Lists
What do you mean by refresh? best Filip On 2/1/2011 11:53 PM, Rhonny David wrote: Dear All, We are facing connection pool busy problem in tomcat 6.0.29. Till we finalize our investigation, we need connection pool to be refreshed before all connections get busy. Say for example if we have

Re: Tomcat 5.5.33 soon?

2011-02-07 Thread David Rees
On Mon, Feb 7, 2011 at 12:56 PM, Jim Jagielski j...@jagunet.com wrote: A test tarball was just announced to the development list for voting and approval... Thanks - I guess I was not patient enough. :-) -Dave - To

Re: Facing a problem when reading cookies having a colon in the value (Tomcat 6.0.32)

2011-02-07 Thread Reinwald Warapen
Any suggestion here ? On 2/7/2011 10:58 PM, Reinwald Warapen wrote: Hey, I am using Tomcat 6.0.32 and im facing a problem when reading cookies having a colon in the value. // start snippet Cookie test=new Cookie(TESTING,http://test:8081;); response.addCookie(test); //end

How to hookup Servlet 3.0 Authentication to realm? (request.login)?

2011-02-07 Thread Michael McCutcheon
Hello, I'm attempting to setup my web app to authenticate via the new Servlet 3.0 HttpServletRequest.login method. I have a JDBC realm set up in the context.xml in Netbeans 7. Now I'd like to use the request.login method to authenticate against that realm. The problem I'm having is that I