In my project .. all forwards are being done with https..
but there is a redirect when cancel is done from a page, which then redirects to the return url, which can either start with http or https.
There is a load a load balancer concept in my project which checks for the base scheme and location and redirects all return urls to https.
But I dont want this. Some suggested that location should be specified. Which I have already done. See the code below. Is there anything in which I can change the http response scheme explicitly from https to http.
String returnURL = createSuccessURL(replaceAmp(transactionInfoDTO.getMerchantReturnURLBack()), transactionInfoDTO.getEntranceCode(), transactionId);
response.setStatus(HttpServletResponse.SC_SEE_OTHER);
response.setHeader("Location", response.encodeRedirectURL(returnURL));