Re: How to deal with LogJam Vulnerability?

2015-08-29 Thread George Sexton
On 8/25/2015 12:01 AM, Nikitha Benny wrote: Hi All, I am using Tomcat version 7.00.062 supported on JRE 8u45. How do i disable the LogJam Vulnerability? Here's a pretty nice article: https://blog.eveoh.nl/2014/02/tls-ssl-ciphers-pfs-tomcat/ There's an updated connector configuration near

Re: How to deal with LogJam Vulnerability?

2015-08-29 Thread George Sexton
On 8/29/2015 12:58 PM, George Sexton wrote: On 8/25/2015 12:01 AM, Nikitha Benny wrote: Hi All, I am using Tomcat version 7.00.062 supported on JRE 8u45. How do i disable the LogJam Vulnerability? Here's a pretty nice article: https://blog.eveoh.nl/2014/02/tls-ssl-ciphers-pfs-tomcat/

HTTP 400 with Form based authentication

2015-08-29 Thread Sreyan Chakravarty
Okay this is my first try at container based authentication using Realms in Tomcat. And things have gone wrong. Here is my login page -: html body h2Login/h2 form method=post action=j_security_check User ID: input type=text name=j_username / br / Password: input type=password

Designating a home page while using Realms

2015-08-29 Thread Sreyan Chakravarty
Okay I have just started to use Realms and container managed authentication and I am confused about as how to specify a home page. Let me explain-: web-resource-collection web-resource-nameTECHERS/web-resource-name url-pattern/teacher/success.jsp/url-pattern

Re: Is Container Managed Transactions possible in case of Tomcat ?

2015-08-29 Thread Sreyan Chakravarty
By container managed transactions I mean can I do the following in Tomcat not TomEE @PersistenceContext EntityManager em; Is it possible to have the entity manager injected at runtime in Tomcat with JOTM or Atomikos? On Thu, Aug 20, 2015 at 1:09 PM, Alex Soto asot...@gmail.com wrote: Yes

Re: How do LockOutRealms work ?

2015-08-29 Thread Sreyan Chakravarty
Is there any way I can tell the user that what number of login attempt he is on ? While using the LockOutRealm any way to display his login attempt on an html or jsp page ? On Mon, Aug 24, 2015 at 7:31 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED

Re: Tomcat can't find JDBC Driver listed under Maven

2015-08-29 Thread Sreyan Chakravarty
Thanks Christopher but I have solved the problem. It seems when you are using the Maven archetype for webapp you have to manually create a META-INF in the /src/main/webapp directory and place the context.xml there. And I have partly solved the issue. Will get back to you. Regards Sreyan

Re: Addding User to a Realm

2015-08-29 Thread Sreyan Chakravarty
Thanks Christopher for that previous reply. It really help clear things up and get things moving again. Now can you tell me how do I write my own custom credential handler. Planning one that uses sCrypt. How can I write it and reference that same CredentialHandler in the context.xml like