How to make the App Server Listen for HTTPS

I have a web application that needs to be accesible over an HTTPS connection, not HTTP. When I deploy an application with Java Studio Creator to the App Server it is automatically set to an HTTP URL. How do I setup HTTPS ?Thank you in advance,Joe Paladin
[282 byte] By [joepaladin] at [2007-11-26 7:21:58]
# 1

Looks like I should have thanked myself in advance....

Turns out its pretty easy. Open the admin console, go to configuration, add and HTTP listener, check the security check box, and fill out the other mandatory fields like the port. Standard SSL port is 443.

Save changes, and restart the App Server. Any deployed apps should be reachable via https://localhost:443/myWebApp

This approach uses a default certificate that comes with the app server. Here is a link if you want to create a certificate :

http://java.sun.com/developer/technicalArticles/WebServices/appserv8-1.html

Joe Paladin

joepaladin at 2007-7-6 19:05:17 > top of Java-index,Application & Integration Servers,Application Servers...
# 2

Looks like I should have thanked myself in advance....

Turns out its pretty easy. Open the admin console, go to configuration, add and HTTP listener, check the security check box, and fill out the other mandatory fields like the port. Standard SSL port is 443.

Save changes, and restart the App Server. Any deployed apps should be reachable via https://localhost:443/myWebApp

This approach uses a default certificate that comes with the app server. Here is a link if you want to create a certificate :

http://java.sun.com/developer/technicalArticles/WebServices/appserv8-1.html

Joe Paladin

joepaladin at 2007-7-6 19:05:17 > top of Java-index,Application & Integration Servers,Application Servers...