java - How to enable debug logging for Tomcat native/APR SSL -
i'm using tomcat "native" apr provide ssl. connector looks like:
<connector port="8443" protocol="org.apache.coyote.http11.http11aprprotocol" sslenabled="true" sslverifyclient="require" sslcertificatefile="..." sslcertificatekeyfile="..." sslpassword="..." sslcacertificatefile="..." maxthreads="200" scheme="https" secure="true"/>
i'm having trouble apr side refusing certificates , want debug this. how can enable debug output (logging) ssl session on tomcat/apr side? adding "javax.net.debug=ssl" doesn't work, of course, since apr binary handling ssl, not java.
i have javax.net.debug=ssl output on client side, that's not enough info since error being sent server (tomcat/apr).
Comments
Post a Comment