Enabling SSL Requests on Jdev's Integrated Weblogic

Posted by Christian David Straub on Oracle Blogs See other posts from Oracle Blogs or by Christian David Straub
Published on Fri, 26 Mar 2010 22:08:26 +0000 Indexed on 2010/03/26 22:33 UTC
Read the original article Hit count: 432

Filed under:
Often times you will want to enable SSL access for such things as secure login or secure signup. By default, the integrated WLS that ships with JDev does not listen to SSL requests. However, this is easily fixed.

Just navigate to http://127.0.0.1:7101/console

This will deploy the console app where you can configure WLS. By default the login credentials are:

username: weblogic
password: weblogic1

Then go to Environment -> Servers -> DefaultServer. 

Check the "SSL Listen Port Enabled" box and your server will now listen to SSL requests (just make sure to use the listen port that is specified).

For added security, you can always check while processing your request that it is going through an SSL connection by first checking HttpServletRequest.isSecure().

© Oracle Blogs or respective owner

Related posts about jdeveloper