We have requirement to display tem and condition page before the login page displayed. The term&condition page is maintained in NCR internal server (web site). I have tried to access that T&C page from web/default.jsp as below
response.sendRedirect(request.getContextPath() + "https://condition.ncr.com?returnUrl="+ returnUrl");
But request is not directly send to NCR site. Request is send as below appending with original link (http://susday4271.corp.ncr.com:8080). The original link should not append into the destination link. Please advice.
http://susday4271.corp.ncr.com:8080/ncr/https://condition.ncr.com/
Do this.
response.sendRedirect("https://condition.ncr.com?returnUrl="+ returnUrl");
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.