1.- I create a keystore in the path JBOSS_HOME\server\default\conf\mykeystore.jks with the following cmd command:
keytool -genkeypair -alias myalias -keyalg RSA -storetype PKCS12 -keysize 2048 -validity 365 -keystore PATH/mykeystore.jks -keypass mykeypass -storepass mystorepass
2.- Then edit the server.xml file located in the path "JBOSS_HOME\server\default\deploy\jbossweb.sar" and add the following configuration:
<Connector protocol="HTTP/1.1" SSLEnabled="true"
port="8443" address="${jboss.bind.address}"
scheme="https" secure="true" clientAuth="false"
keystoreFile="${jboss.server.home.dir}/conf/mykeystore.jks"
keystorePass="mystorepass" SSLProtocol = "TLS" />
3.- Restart the server
4.- I go to the browser and put the path of my wsdl: https://myhost:8443/.... I get the error ERR_SSL_VERSION_OR_CIPHER_MISMATCH
My jboss5 uses jdk1.6.0_45
What mistake am i making?