[b]<1> [/b]Some materials about SSL:
Concept about SSL
[url]http://blog.youkuaiyun.com/ThinMichael/archive/2006/05/22/750003.aspx[/url]
SSL Configuration For Jboss-Tomcat
[url]http://www.ghg.net/eems/HelpIndex/HelpIndex/SSLConfiguration.htm[/url]
Using SSL Certificates with JBoss 4 and Tomcat 5
[url]http://freebsdhowtos.com/117.html[/url]
[b]<2>[/b]In order to enable SSL in JBOSS,we have specify the file $JBOSS_HOME\server\default\deploy\jboss-web.deployer\server.xml,and remove the comment around tag "connector":
[code]
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/conf/ssl/server.keystore"
keystorePass="111111"
/>
[/code]
Concept about SSL
[url]http://blog.youkuaiyun.com/ThinMichael/archive/2006/05/22/750003.aspx[/url]
SSL Configuration For Jboss-Tomcat
[url]http://www.ghg.net/eems/HelpIndex/HelpIndex/SSLConfiguration.htm[/url]
Using SSL Certificates with JBoss 4 and Tomcat 5
[url]http://freebsdhowtos.com/117.html[/url]
[b]<2>[/b]In order to enable SSL in JBOSS,we have specify the file $JBOSS_HOME\server\default\deploy\jboss-web.deployer\server.xml,and remove the comment around tag "connector":
[code]
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/conf/ssl/server.keystore"
keystorePass="111111"
/>
[/code]