I've managed to set up SSL in my JBoss4.0.5 by adding a adding a keystore to the
${jboss.server.home.dir}/conf directory and putting the following into my server.xml:
| <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/ssl/jboss-keystore.jks"
| keystorePass="mypassword" sslProtocol = "TLS" />
|
Doing the same in JBoss4.2.1 however does not work.
What am I missing?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4075693#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...