RE: SSL client cert selection dialog not showing up on cloned deployment of tomcat 7 for windows x64

2016-01-11 Thread David Balažic
Wrong system clock? What does the client say? (about the server certificate. Is it valid? Expired?) Regards, David Balažic Software Engineer www.comtrade.com > -Original Message- > From: Gael Abadin [mailto:gael.aba...@imatia.com] > Sent: 11. January 2016 10:16 > To: Tomca

RE: [ANN] Apache Tomcat 8.0.29 available

2015-11-25 Thread David Balažic
Typo on http://tomcat.apache.org/tomcat-8.0-doc/changelog.html "TLSv1.0 is no an alias" Should probably be "TLSv1.0 is not an alias" Regards, David Balažic > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: 25. November 2015 17:22

RE: [OT] RE: 80ms delay switching between worker threads

2015-10-31 Thread David Balažic
Just a note: When most of you say "resolution" what you think about is actually called "accuracy". (also see "precision" , here is a good roundup: http://www.tutelman.com/golf/measure/precision.php ) David Balažic Software Engineer www.comtrade.com >

RE: Firefox SSL with APR - losing client certificate

2015-09-17 Thread David Balažic
Anyone with experience debugging SSL issues (with APR or from Firefox/Chrome side) ? David Balažic > -Original Message- > From: David Balažic [mailto:david.bala...@comtrade.com] > Sent: 10. September 2015 14:58 > To: users@tomcat.apache.org > Subject: RE: Firefox SSL wi

RE: Tomcat Session issue - Session not expiring on browser close event

2015-09-14 Thread David Balažic
Kiran Badi wrote: > Is their a way to kill the session after certain period of inactive time > where user is not doing anything on the site or I need to adjust my timeout > value ? The timeout means exactly "kill the session after certain period of inactive time", so the answer is yes. Regards

RE: Firefox SSL with APR - losing client certificate

2015-09-10 Thread David Balažic
Reported as Bug 58244 - two way SSL loses client certificate after a few requests https://bz.apache.org/bugzilla/show_bug.cgi?id=58244 David Balažic > -Original Message- > From: David Balažic > Sent: 7. August 2015 17:38 > To: users@tomcat.apache.org > Subject: Firef

RE: Firefox SSL with APR - losing client certificate

2015-08-12 Thread David Balažic
use is available in the Apache Tomcat/8.0.24 logs. Apache Tomcat/8.0.24 The error occurs in about 30 seconds after first load (keep refreshing or clicking every few seconds or so). Tested with: - Chrome v44 - Firefox v39.0.3 and v40 The problem does not occur with IE v11. Regards, David Ba

RE: Firefox SSL with APR - losing client certificate

2015-08-10 Thread David Balažic
> From: David Balažic [mailto:david.bala...@comtrade.com] > > > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > > Sent: 8. August 2015 14:33 > > > > Quick question: this is with Tomcat only and no httpd out in front, righ > > t? &

RE: Firefox SSL with APR - losing client certificate

2015-08-10 Thread David Balažic
> From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Sent: 8. August 2015 14:33 > > Quick question: this is with Tomcat only and no httpd out in front, righ > t? Yes. David - To unsubscribe, e-mail: users-unsubsc

Firefox SSL with APR - losing client certificate

2015-08-07 Thread David Balažic
dated to 39.0.3 The Connector line from server.xml: Regards, David Balažic - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

HTTP cache control?

2013-11-25 Thread David Balažic
Hi! Considering that JSP pages are by definition dynamic (different on each GET), why doesn't Tomcat set the HTTP headers in the line of "do not cache this, it's dynamic!" by default for all generated HTML (*.jsp files and servlet responses)? Regards, David --

synchronizing in tomcat

2009-11-17 Thread David Balažic
Hi! Does tomcat offer any mechanism for locking servlet executions? So if one servlet does: - get 10 EUR from account 1 (read account 1 balance; substract 10; store new balance) - add 10 EUR to account 2 (...) How can I make sure no other servlet does (read account 1 balance; sustract 10; stor

Re: Possible to do async processing?

2009-11-16 Thread David Balažic
2009/11/16 Joseph Morgan : > Yes, there is a way, and I suspect you're doing "fire-and-forget" processing, > but, could you give us a better idea as to what you are trying to do? > > Tomcat will handle servlet requests in multiple threads if needed, anyway.   > So it may not be necessary.  I'm thi

Possible to do async processing?

2009-11-16 Thread David Balažic
Hi! We are using tomcat 6.0 and now we have the need to trigger from the service() method of a servlet. So: - a request arrives - the servlet triggers an async event - servlet sends response and closes - the async task is done (independent of servlet opeartion) Is there a way to do this? O

Version in web.xml

2009-09-07 Thread David Balažic
Hi! Is the version mismatch in the web-app tag, like this: http://java.sun.com/xml/ns/javaee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";> an error? Or is it vali

Re: EL - access to nonexisting property, but no error ?

2009-08-26 Thread David Balažic
Martin, I have no isELIgnored=true But I figured it out. I had an object (bean), that had a property/method : List getMyList() Then I used an EL: ${theBean.myList.a} This would cause an error , except if getMyList() returns null! Then it is a null.something EL, which gives no error. Thanks for

EL - access to nonexisting property, but no error ?

2009-08-26 Thread David Balažic
versions: Tomcat 5.5.28, Java "1.6.0_15" and Windows XP Pro SP3 Hi! Can someone explain why does an EL like "${someListobject.a}" NOT give an error ? "someListobject" is an attribute of type java.util.List "a" is not a property of java.util.List, so according to Servlet 2.4 specs (page I-68), it