-
1. Re: https://localhost:8443
jaikiran Apr 27, 2014 2:30 AM (in response to jenchong)Jen Chong wrote:
We setup transport confidential in our web.xml e.g.
...
<url-pattern>/xxx</url-pattern>
<url-pattern>/stats/*</url-pattern>
<url-pattern>/_ah/mail/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
But when we hit http://localhost/xxx, it is redirected to https://localhost:8443/xxx? Why?
Because your web.xml states that the /xxx path needs to be served as CONFIDENTIAL and hence it is redirected to the https protocol. It's working as expected.
-
2. Re: https://localhost:8443
jenchong May 2, 2014 5:42 PM (in response to jaikiran)See, we need to use ssl in the cloud/ openshift but locally you dont have that. So what is the solution without toggling it to work in both?
-
3. Re: https://localhost:8443
alesj May 2, 2014 6:13 PM (in response to jenchong)You can have ssl locally as well.
-
4. Re: https://localhost:8443
jenchong May 6, 2014 8:17 PM (in response to alesj)What is the syntax?