How to implement a cluster with static membership when the StaticMembershipService does not exist in tomcat 8.5?

2023-06-11 Thread Manak Bisht
I am trying to implement a cluster with static members in tomcat 8. However, according to the documentation, StaticMembershipService only exists in tomcat 9 and not in tomcat 8.5

Re: Get Client Certificate Information

2023-06-11 Thread Timothy Ward
Doesn't seem to work via perl, where would I have to use that line of code? On Sun, Jun 11, 2023 at 5:26 PM Martynas Jusevičius wrote: > You can get client certificates from ServletRequest: > > X509Certificate[] certs = > > (X509Certificate[])getHttpServletRequest().getAttribute("jakarta

Re: Get Client Certificate Information

2023-06-11 Thread Martynas Jusevičius
You can get client certificates from ServletRequest: X509Certificate[] certs = (X509Certificate[])getHttpServletRequest().getAttribute("jakarta.servlet.request.X509Certificate"); https://jakarta.ee/specifications/servlet/5.0/apidocs/jakarta/servlet/servletrequest#getAttribute(java.lang.St

Get Client Certificate Information

2023-06-11 Thread Timothy Ward
Tomcat 10.1 setup using certificateVerification="required" on Windows Server 2019, is there a way to get the SSL_CLIENT_S_DN and SSL_CLIENT_I_DN via a CGI perl script? I think I have the SSLValve valve implemented, but there is nothing for sure that tells me that it is. The browser prompts for th

Tomcat 9 data source configuration error

2023-06-11 Thread Ying Jin
Hello, We have an old java servlet web application which uses the "ojdbc6_g" jar as Oracle jdbc driver and it works in Weblogic 14 server. Recently, we need to try to see if this application can be deployed to Tomcat or not. The JDBC data source has been configured in Tomcat 9.0.75 server accordi