Hi Experts,
Need your guidance in Logon Page customisation.
We have a customised logon page, which has a extra input field visible based on the URL, the portal is being accessed by.
Code:
boolean isExtURL = LocationAccessCheck.isExternalURL(request.getRequestURL().toString());
The "LocationAccessCheck" is a java file which does the camparison of the url part after "//" with "userfriendlyurl.com" It never considers the protocol part.
The value - true / false determines whether the field is visible or not.
The code was / is working fine in http protocol - http://<userfriendlyurl.com>
But now https has been implemented and the URL is https://<userfriendlyurl.com> and this boolean value is never getting to TRUE. Hence the custom field is never getting visible.
The changes are done in logonPage.jsp. Please advise.
Thanks