Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed: Correct behaviour of Autologin cookies
(OFBIZ-10635) In the method to set the autoLogin cookie, LoginWorker::autoLoginSet, system fetches the webAppInfo by using the method ComponentConfig::getWebappInfo. In this method, serverId and applicationName are passed as arguments. *WebappInfo webappInfo = ComponentConfig.getWebappInfo((String) context.getAttribute("_serverId"), UtilHttp.getApplicationName(request));* If the mount-point of the web app is set as an empty string, then 'root' will be used as the application name, due to which the object webAppInfo will come null. If the webAppInfo is null then the autoLogin cookie will not be created and added to the response object by the system. Thanks: Aditya for report and Mathieu Lirzin for discussion git-svn-id: https://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/trunk@1851074 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information