I don't know what your problem is, but I can tell you that I run JBoss 4.0.3 on 
Win2K win Sun JDK5. All I need to do to enable SSL is to uncomment this section 
in %JBOSS_HOME%/server/<your_config>/deploy/jbossweb-tomcat55.sar/server.xml


  |  <!-- SSL/TLS Connector configuration using the admin devl guide keystore
  |       <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/my.keystore"
  |            keystorePass="mypwd" sslProtocol = "TLS" />
  |     -->
  | 

Then if I want to secure the jmx-console, I uncomment the security constraint 
section in the web.xml file for the jmx-console web application. I  then needed 
to add the following to the web.xml file because it was missing:

  | <login-config>
  |   <auth-method>BASIC</auth-method>
  |   <realm-name>JBoss JMX Console</realm-name>
  | </login-config>
  | 

I also uncomment the security-domain section in the jboss-web.xml file for the 
web application as well.

Then if I direct my browser to the following URL 
https://localhost:8080/jmx-console I get prompted to accept my certificate and 
then for usr/pwd. It works just fine...

Cheers
//Anders


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3907372#3907372

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3907372


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to