In one of our projects we still have to use JSF 1.2 + Tomcat 6 and the problem is when I'm sending https
-request to the server and trying to get requested URL in the managed bean as follows:
ExternalContext context = FacesContext.getCurrentInstance().getExternalContext();
HttpServletRequest request = (HttpServletRequest)context.getRequest();
String url = request.getRequestURL().toString()
The button that sends the request is just a submit-button looked as follows:
<h:form id="contactform">
<h:commandButton id="submit" action="#{forgotPasswordBean.doSend}"
</h:form>
I get http
-based URL intead of https
.
In the web-browser's debug panel I made sure that an https
-request was actually sent, but URL contained a link to just http
request. What's a problem or it's just a bug?