How to do a http redirect to https in Sun Application Server / Web Server?
Asked
Active
Viewed 3,647 times
2 Answers
6
The servlet container should automatically redirect the user to the HTTPS listener if you set the transport-guarantee
element to CONFIDENTIAL
or INTEGRAL
in your web.xml
, like so:
<security-constraint>
<web-resource-collection>
<web-resource-name>All</web-resource-name>
<url-pattern>*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
The url-pattern
element contents should match the path you wish to secure. So, for example, if you want to secure everything under /admin
, specify /admin/*
as your url-pattern
. This should exhibit the following behaviour:
http://www.example.org/admin/login
will redirect to
https://www.example.org/admin/login
For more information, check out the Servlet 2.5 specification (JSR 154).

rjdkolb
- 10,377
- 11
- 69
- 89

David Grant
- 13,929
- 3
- 57
- 63
-
The above does not work on Liberty if you have a JASPIC enabled site and the validateRequest checks if you are in SSL mode. – Archimedes Trajano Aug 08 '15 at 19:22
-
Hi, I have used it this configuration and it worked. but the problem is its append port with URL like https://www. mydomain.com:8443 do you have idea how to remove this with achieving https..? – Raj Bhatia May 25 '16 at 11:44
-2
One possible approach might be to use mod_rewrite
I'm sure there's others.

cagcowboy
- 30,012
- 11
- 69
- 93