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

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -