/idm/jboss/server/IDM/deploy/IDM-ds.xml
Start:
/idm/start-jboss.sh
Stop:
/idm/stop-jboss.sh
Start the driver after starting Jboss.
NOTE:The driver, upon starting, attempts a handshake with the User Application If JBoss isn’t running or the WAR wasn’t successfully deployed, the driver errors out.
http://xxx.xxx.xxx.xxx:<port>/IDM/
Also, come on; Novell you are supposed to be "smart. Why not use a directory cert??
First, generate a cert.
/opt/novell/java/bin/keytool -genkey -alias tomcat -keyalg RSA -storepass changeit -keystore /home/userapp/novell/userapp/jboss/server/IDM/conf/jboss.jks -dname "cn=JBoss,o=willeke,l=butler,s=OH,c=US" -keypass changeit
Then edit the /home/userapp/novell/userapp/jboss/server/IDM/deploy/jbossweb-tomcat55.sar/server.xml file. Enable SSL by uncommenting or adding a section that looks like:
<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}/IDM/conf/jboss.jks" keystorePass="changeit" sslProtocol = "TLS" />!!Turning on the Application Security
In IDM.war, find the web.xml file and open it in a text editor. At the bottom of the file, uncomment the following section:
<security-constraint> <web-resource-collection> <web-resource-name>IDMProv</web-resource-name> <url-pattern>/*</url-pattern> <http-method>POST</http-method> <http-method>GET</http-method> <description>IDM Provisioning Edition</description> </web-resource-collection> <user-data-constraint> <transport-guarantee>CONFIDENTIAL</transport guarantee> </user-data-constraint> </security-constraint>Save the file and the archive. Restart JBoss.