Hi,
I am using AEM 6.5 author instance. After login authentication, i have tries several ways to redirect new page. I can see in response, landing page is coming but does not reload in the browser. In the end, login page remains in browser.
Below is the POST of my login servlet :
protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse response) {
String path = "/content/amc/en/homepage/landing-page.html";
try {
String uname = request.getParameter("uname");
String password = request.getParameter("password");
//getting some token
if (StringUtils.isNotEmpty(token)) {
Map<String, String> params = new HashMap();
// Add token to cookie
org.apache.sling.api.wrappers.SlingHttpServletRequestWrapper req =
new org.apache.sling.api.wrappers.SlingHttpServletRequestWrapper(request) {
public String getMethod() {
return "GET";
}
};
javax.servlet.RequestDispatcher dispatcher = request.getRequestDispatcher(path);
dispatcher.include(req, response);
// AuthUtil.sendRedirect(request,response, path,params);
} else {
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
} catch (Exception e) {
e.printStackTrace();
}
}
With AuthUtil.sendRedirect() below is the response but page not navigate to landing-page in the browser.
Any idea to fix this?
Thanks,
Views
Replies
Total Likes
Try changing the Day CQ Root Mapping from [1] and mention the path you want AEM to redirect to after login
[1] http://<host>:<port>/system/console/configMgr/com.day.cq.commons.servlets.RootMappingServlet
Views
Replies
Total Likes
No, Changing root mapping didn't work.
Views
Replies
Total Likes
Hi,
You are including response of target page,you should either redirect or forward.
The main difference is that when you use forward the control is transferred to the next servlet/jsp you are calling, while include retains the control with the current servlet, it just includes the processing done by the calling servlet/jsp(like doing any out.println or other processing).
You can try below:
dispatcher.forward(req, response);
Views
Replies
Total Likes
Tried forward as well, unfortunately, same behaviour.
org.apache.sling.api.wrappers.SlingHttpServletRequestWrapper req =
new org.apache.sling.api.wrappers.SlingHttpServletRequestWrapper(request) {
public String getMethod() {
return "GET";
}
};
javax.servlet.RequestDispatcher dispatcher = request.getRequestDispatcher(path);
dispatcher.forward(req, response);
Views
Replies
Total Likes
Hi,
Could you please let us know what are you trying to do / what is the use case?
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies