Re: How to configure a TrustManager for tomcat?

2004-07-13 Thread Bill Barker
Firstly, the only SSLServerSocketFactory that actually does anything is the one for the deprecated HttpConnector in TC 4. With the CoyoteConnector, it is possible to plug in your own SSLImplementation (which, among other things, would allow you to install your own TrustManager), but most people

Re: How to configure a TrustManager for tomcat?

2004-07-13 Thread im dolor
So then could I extend org.apache.tomcat.util.net.JSSEImplementation to create my own implementation and override the getServerSocketFactory() to create one that uses my custom trust manager? Does that sound right to you? Will that only work with tomcat 5? Is there something that I can do that

Re: How to configure a TrustManager for tomcat?

2004-07-13 Thread Bill Barker
im dolor [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] So then could I extend org.apache.tomcat.util.net.JSSEImplementation to create my own implementation and override the getServerSocketFactory() to create one that uses my custom trust manager? Does that sound right to you?

How to configure a TrustManager for tomcat?

2004-07-12 Thread im dolor
Hello, I would like to be able to use CRL checking in Tomcat. I thought that I would implement my own trust manager which would download the crl and check against it every time the checkXXXTrusted method is called. However, I do not see anywhere in the configuration where it would be possible to