Is tomcat UserDatabaseRealm buggy?

2014-11-26 Thread Kehlenbach, Andreas
Hello, I think I found the following bug in tomcat 7/8 with the following setup: We use tomcat 7.0.42 (but I tried 7.0.55 and 8.0.15 without success) and deployed a web service with jersey 1.18.2. Additionally we set up HTTP authentication. In our case DIGEST authentication, but I tried BASIC

RE: How can code in a Realm gain access to a Globally Named Resource

2014-11-26 Thread vince.webb
Chris, thank you for your reply -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: 26 November 2014 04:17 To: Tomcat Users List Subject: Re: How can code in a Realm gain access to a Globally Named Resource -BEGIN PGP SIGNED MESSAGE-

Re: URL Mapping for filter not the same on tomcat as it is on TomEE?

2014-11-26 Thread Konstantin Kolinko
2014-11-24 23:05 GMT+03:00 zack6849 z...@zack6849.com: Hello, i've found some strange issue with the url mapping with tomcat, i've tested this on tomcat8 and TomEE, it seems easily reproducable. I have a Filter listening to requests matching /uploads/* (all files inside of my uploads

Re: Deploying .ca-bundle file .crt file as SSL certificates

2014-11-26 Thread Kernel freak
Hello, After arguing with the admins for all this time, I finally have the few files ready. I have the following files : keystore.p12, server.crt, ssl-cert-snakeoil.key, domainname.com.ca-bundle, domainname.com.crt domainname.com.csr domainname.com.key, vsftpd.pem. I did the following as

Re: Help! parallel deployment problem.

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chris, On 11/25/14 11:48 PM, Chris Gamache wrote: Indeed, the affected nodes don't have the newer war at all. If you don't mind me asking-- if not FarmWebDeployer, what scheme do you use to deploy a war across a cluster? We have a small

Re: Is tomcat UserDatabaseRealm buggy?

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Andreas, On 11/26/14 5:42 AM, Kehlenbach, Andreas wrote: I think I found the following bug in tomcat 7/8 with the following setup: We use tomcat 7.0.42 (but I tried 7.0.55 and 8.0.15 without success) and deployed a web service with jersey

Re: How can code in a Realm gain access to a Globally Named Resource

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Vince, On 11/26/14 7:26 AM, vince.w...@thomsonreuters.com wrote: -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: 26 November 2014 04:17 To: Tomcat Users List Subject: Re: How can code in a Realm

AW: [bulk]: Re: Is tomcat UserDatabaseRealm buggy?

2014-11-26 Thread Kehlenbach, Andreas
Hey Chris, Yes I know that BASIC authentication doesn't use nonces, thus I don't think that this is the root cause. Just forget about the nonce timout. For full information: I played around with the timeout and used values of 1, 5, 20 minutes. But as I discovered that also the 401 appears with

Re: Deploying .ca-bundle file .crt file as SSL certificates

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 To whom it may concern, On 11/26/14 9:03 AM, Kernel freak wrote: After arguing with the admins for all this time, I finally have the few files ready. I have the following files : keystore.p12 That should contain your key. Can you confirm that

Re: AW: [bulk]: Re: Is tomcat UserDatabaseRealm buggy?

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Andreas, On 11/26/14 11:26 AM, Kehlenbach, Andreas wrote: Yes I know that BASIC authentication doesn't use nonces, thus I don't think that this is the root cause. Just forget about the nonce timout. Umm... you suggested that it was the cause.

Re: How can code in a Realm gain access to a Globally Named Resource

2014-11-26 Thread Mark Thomas
On 26/11/2014 16:23, Christopher Schultz wrote: snip/ I'm not sure, but I would guess you can't define a Realm in server.xml and use a DataSource defined in context.xml. If the Realm is in server.xml, then you should be able to grab the globally-accessible DataSources by using their existing

Re: Deploying .ca-bundle file .crt file as SSL certificates

2014-11-26 Thread Kernel freak
On Wed, Nov 26, 2014 at 5:33 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 To whom it may concern, On 11/26/14 9:03 AM, Kernel freak wrote: After arguing with the admins for all this time, I finally have the few files ready.

Re: Deploying .ca-bundle file .crt file as SSL certificates

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 To whom it may concern, On 11/26/14 12:00 PM, Kernel freak wrote: On Wed, Nov 26, 2014 at 5:33 PM, Christopher Schultz ch...@christopherschultz.net wrote: To whom it may concern, On 11/26/14 9:03 AM, Kernel freak wrote: After arguing

Re: How can code in a Realm gain access to a Globally Named Resource

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mark, On 11/26/14 12:01 PM, Mark Thomas wrote: On 26/11/2014 16:23, Christopher Schultz wrote: snip/ I'm not sure, but I would guess you can't define a Realm in server.xml and use a DataSource defined in context.xml. If the Realm is in

Re: catalina.out rotation in tomcat 7.0.56

2014-11-26 Thread Niranjan Babu Bommu
Hi Chris, Can you please help me out catalina.out rotation, I have only thing pending in my migration project. I want to rotate catalina.out everyday midnight. Thanks Niranjan On Fri, Nov 21, 2014 at 2:00 PM, Niranjan Babu Bommu niranjan.bo...@gmail.com wrote: Hi Chris, Thanks for your

RE: How can code in a Realm gain access to a Globally Named Resource

2014-11-26 Thread vince.webb
Mark Thank you. I looked at DataSourceRealm.open() took the following lines and put them into my custom Realm: /// if (localDataSource) { context = ContextBindings.getClassLoader(); context = (Context) context.lookup(comp/env); } else { context =

Re: catalina.out rotation in tomcat 7.0.56

2014-11-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Niranjan, On 11/26/14 1:40 PM, Niranjan Babu Bommu wrote: Can you please help me out catalina.out rotation, I have only thing pending in my migration project. I want to rotate catalina.out everyday midnight. It sounds like you are saying that

Re: How can code in a Realm gain access to a Globally Named Resource

2014-11-26 Thread Konstantin Kolinko
2014-11-27 0:26 GMT+03:00 vince.w...@thomsonreuters.com: Initially I had difficulty with getServer() giving me null. To fix it I stopped calling this method from within the Realm's constructor, instead I get the DataSource the first time it's needed. Learn about org.apache.catalina.Lifecycle

http://courses.apexlearning.com/apps/AceWeb/logon.jsp

2014-11-26 Thread Travis Power
i need the preview sheets for apex world history sem 2 2014, us history sem 2 2014. like this one for example - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail:

Re: http://courses.apexlearning.com/apps/AceWeb/logon.jsp

2014-11-26 Thread Travis Power
or a login to the website in the subject On Wed, Nov 26, 2014 at 4:47 PM, Travis Power powertrav...@gmail.com wrote: i need the preview sheets for apex world history sem 2 2014, us history sem 2 2014. like this one for example

Re: http://courses.apexlearning.com/apps/AceWeb/logon.jsp

2014-11-26 Thread Travis Power
it comes from your server/website On Wed, Nov 26, 2014 at 4:48 PM, Travis Power powertrav...@gmail.com wrote: or a login to the website in the subject On Wed, Nov 26, 2014 at 4:47 PM, Travis Power powertrav...@gmail.com wrote: i need the preview sheets for apex world history sem 2 2014, us

Re: http://courses.apexlearning.com/apps/AceWeb/logon.jsp

2014-11-26 Thread Hassan Schroeder
On Wed, Nov 26, 2014 at 1:50 PM, Travis Power powertrav...@gmail.com wrote: it comes from your server/website Uh, no. The URL you reference is apparently using a poorly configured instance of the Tomcat server, but that's as far as the connection with this mailing list goes :-) Good luck. --