Hi All,
I am facing an issue and couldn't find solution. We have following code in one of our portlets:
1
2PortletURL url = ((ActionResponseImpl) actionResponse).createActionURL();
3url.setParameter(SiriusRegistrationConstants.STRUTS_ACTION, "/login/login");
4url.setParameter("saveLastPath", "0");
5url.setParameter("redirect","/");
6url.setParameter("login", screenName);
7url.setParameter("password",password);
8url.setParameter("rememberMe", "true");
9actionResponse.sendRedirect(url);
Now the problem is when the following code is executed the URL in the browser address bar shows the parameters in the query string. Is there a way that this URL can be redirected using http POST method so that the parameters can't be seen in the address bar of the browser?
Thanks
Please sign in to flag this as inappropriate.