During development it is sometimes necessary to able to run your webapplication under SSL. To obtain a test certificate from verisign can sometimes take a little too much time and effort. Especially when there is a bug waiting to be fixed.

This post describes an easy way to create a certificate yourself using SUN’s keytool and configure OC4J to use it. It originates almost one to one from the Oracle Application Server Containers for J2ee Stand Alone User’s Guide (how about that for a title).

I assume that you have at least JDK 1.3 installed and setup correctly. Make sure that the you set the PATH to include the JDK’s bin directory.


1. Create a certificate

  • Open a command prompt and change directory to the config directory of your OC4J instance
  • type the following:

    keytool -genkey -keyalg "RSA" -keystore sslfile -storepass simanoel -validity 365

Where:

  1. the keystore option sets the filename where the keys are stored
  2. the storepass option sets the password for the keystore
  3. the validity sets the number of days the certificate is valid

The keytool will prompt several questions to you. Just answer these as you please.
The new keystore file ( sslfile in my case ) is created in the current directory (config in this case)

2 . Setting up OC4J

  • If you don’t already have a secure-web-site.xml file in your OC4J config directory, create one by copying the existing http- web-site.xml and renaming the copy to secure-web-site.xml
  • Edit secure-web-site.xml
    • add secure=”true” to the website element
    • add the following line inside the web-site element

      use the keystore name and password you used when creatiung the certificate
    • te port number, to use an available port. The default for SSL is normally 443, but you have to be a super user to use it, I therefore used (4443)
    • Save the changes
    • It should look something like this
      < &lt;?xml version="1.0" standalone="yes"?&gt;
      &lt;!DOCTYPE web-site PUBLIC "Oracle9iAS XML Web-site" "http://xmlns.oracle.com/ias/dtds/web-site.dtd"&gt;
      &lt;web-site port="4443" display-name="Oracle9iAS Containers for J2EE HTTP Web Site" secure="true"&gt;
      &lt;ssl-config keystore="sslfile" keystore-password="simanoel"/&gt;
      &lt;default -web-app application="default" name="defaultWebApp"/&gt;
      &lt;web-app application="default" name="dms0" root="/dms0"/&gt;
      &lt;web-app application="default" name="dms" root="/dmsoc4j"/&gt;
      &lt;web-app application="udo" name="web" root="/udo"/&gt;
      &lt;access-log path="../log/http-web-access.log"/&gt;
      

  • edit server.xml

    • Uncomment or add the following line

         &lt;web-site path="./secure-web-site.xml" /&gt;
      
    • Save the changes
    • it will something like:

        &lt;?xml version="1.0" standalone="yes"?&gt;
        &lt;!DOCTYPE application-server PUBLIC "Orion Application Server Config" "http://xmlns.oracle.com/ias/dtds/application-server.dtd"&gt;
        &lt;application-server application-directory="../applications" deployment-directory="../application-deployments" connector-directory="../connectors"&gt;
          &lt;rmi-config path="./rmi.xml"/&gt;
          &lt;jms-config path="./jms.xml"/&gt;
          &lt;log&gt;
            &lt;file path="../log/server.log"/&gt;
          &lt;/log&gt;
          &lt;global-application name="default" path="application.xml"/&gt;
          &lt;global-web-app-config path="global-web-application.xml"/&gt;
          &lt;web-site path="./secure-web-site.xml" /&gt;
          &lt;web-site path="./http-web-site.xml"/&gt;
          &lt;application name="udo" path="../applications/udo" auto-start="true"/&gt;
      &lt;/application-server&gt;
         

Restart OC4J. Now OC4J will listen for both SSL request (port 4443) and non-SSL requests (port 8888). In my case the urls would be

  • http://localhost:8888/udo/
  • https://localhost:4443/udo/

You can switch either of them off by removing the corresponding entry in server.xml