Hide Forgot
/UserList.xhtml
*** Bug 755732 has been marked as a duplicate of this bug. ***
Add these lines to standalone.xml (in the <subsystem xmlns="urn:jboss:domain:web:1.0" default-virtual-server="default-host"> element): <connector name="https" protocol="HTTP/1.1" socket-binding="https" scheme="https" secure="true"> <ssl name="https" password="password" certificate-key-file="../standalone/configuration/server_keystore.jks"/> </connector> Add this attribute to <components> in components.xml: xmlns:navigation="http://jboss.com/products/seam/navigation" Add this string to the <components> xsi:schemaLocation attribute in components.xml: http://jboss.com/products/seam/navigation http://jboss.com/products/seam/navigation-2.2.xsd Add this element to <components> in components.xml: <navigation:pages http-port="8080" https-port="8443"/> Add the following attribute to <page> in login.page.xml: scheme="https" Create the keystore with: keytool -genkey -alias skynetcert -keyalg RSA -keysize 1024 -dname "CN=skynet.bne.redhat.com,OU=ECS,O=Red Hat,L=Brisbane,S=Queensland,C=AUS" -keypass password -keystore server_keystore.jks -storepass password
Also need to add the redirect-port="8443" attribute to: <connector name="http" protocol="HTTP/1.1" socket-binding="http" scheme="http" redirect-port="8443"/>