Thanks for your reply.
I am familiar with the process of renaming the default-web-site.xml to secure-web-site.xml and then addking the lines:
<web-site port="8443" display-name="OC4J" secure="true">
<ssl-config keystore="my-keystore" keystore-password="my-password">
But what I want to know if how to set up the truststore as well? I tried doing a guess like <ssl-config truststore="..." truststore-password"...">
but that didn't work.
Arg! I just figured it out. It wasn't working cuz I was doing:
<ssl-config keystore="my-keystore" keystore-password="my-password" />
<ssl-config truststore="my-truststore" truststore-password="my-password" />
When I should have been doing: <ssl-config keystore="my-keystore" keystore-password="my-password" truststore="my-truststore" truststore-password="my-password" />
It works fine now.