Updated SSL Configuration for UserApp 3.5.1
Novell Cool Solutions: Tip
By Celso Lima
Reader Rating 
|
Digg This -
Slashdot This
Posted: 14 Nov 2007 |
Problem
Novell's site (Cool Solutions and TIDs) list the following for the SSL configuration to work with JBoss:
<Connector port="8443" address="${jboss.bind.address}"
maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
emptySessionPath="true" scheme="https" secure="true" clientAuth="false"
keystoreFile="${jboss.server.home.dir}/conf/cacerts"
keystorePass="changeit" sslProtocol="TLS" />
Solution
With the version of JBoss (4.2.0) packaged with IDM 3.5.1, I had to add SSLEnabled="true" protocol="HTTP/1.1" (see below):
<Connector port="8443" address="${jboss.bind.address}"
maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
emptySessionPath="true" SSLEnabled="true" protocol="HTTP/1.1"
scheme="https" secure="true" clientAuth="false"
keystoreFile="${jboss.server.home.dir}/conf/cacerts"
keystorePass="changeit" sslProtocol="TLS" />
Environment
User Application for IDM 3.5.1
Novell Cool Solutions (corporate web communities) are produced by WebWise Solutions. www.webwiseone.com
