Hi!

I'm using JBoss 3.2.2 with Tomcat. I try to set up SSL protected access to the
web applications. Here's the configuration in jboss-service.xml:
 
<!-- SSL/TLS Connector configuration using the SSL domain keystore -->
<Connector className = "org.apache.coyote.tomcat4.CoyoteConnector"
  port = "8443" scheme = "https" secure = "true">
  <Factory className = "org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
    keystoreFile="${jboss.server.home.dir}/conf/ssl.keystore"
    keystorePass="password"
    protocol = "TLS"/>
</Connector>

At startup I get this debug output:

10:48:26,016 DEBUG [Http11Protocol] Attribute port: 8443
10:48:26,020 DEBUG [Http11Protocol] Attribute maxThreads: 20
10:48:26,024 DEBUG [Http11Protocol] Attribute backlog: 10
10:48:26,028 DEBUG [Http11Protocol] Attribute tcpNoDelay: true
10:48:26,031 DEBUG [Http11Protocol] Attribute soLinger: -1
10:48:26,035 DEBUG [Http11Protocol] Attribute soTimeout: 60000
10:48:26,038 DEBUG [Http11Protocol] Attribute timeout: 300000
10:48:26,042 DEBUG [Http11Protocol] Attribute serverSoTimeout: 0
10:48:26,045 DEBUG [Http11Protocol] Attribute maxKeepAliveRequests: 100
10:48:26,049 DEBUG [Http11Protocol] Attribute secure: true
10:48:26,052 DEBUG [Http11Protocol] Attribute algorithm: null
10:48:26,056 DEBUG [Http11Protocol] Attribute keystore:
/usr/local/jboss/server/default/conf/ssl.keystore
10:48:26,059 DEBUG [Http11Protocol] Attribute keystoreType: JKS
10:48:26,063 DEBUG [Http11Protocol] Attribute protocol: TLS
10:48:26,066 DEBUG [Http11Protocol] Attribute sslImplementation: null
10:48:26,080 DEBUG [SSLImplementation] Error loading SSL Implementation
org.apache.tomcat.util.net.puretls.PureTLSImplementation
java.lang.ClassNotFoundException: No ClassLoaders found for:
org.apache.tomcat.util.net.puretls.PureTLSImplementation

I can access the web pages, but for every request I get this exception:

10:50:14,072 DEBUG [JSSE14Support] Error getting client certs
javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated

I tried adding clientAuth="false" but it gave the same result.

Is this an error or something I can safely ignore?

    /Markus




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to