Is there any change for controler oracle.apps.fnd.sso.login.webui.MainLoginPageCO between R12.2.5 an
Hi All,
I met a issue when do some customization on controller 'oracle.apps.fnd.sso.login.webui.MainLoginPageCO' on R12.2.5.
When I do below change for oracle.apps.fnd.sso.login.webui.MainLoginPageCO on R12.2.4, it works, but does NOT work on R12.2.5.
public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
{
String pUserName = pageContext.getParameter("usernameField");
String pPassword = pageContext.getParameter("passwordField");
String pass = checkLDAP(pageContext, pUserName, pPassword);
if ("N".equals(pass)) {
throw new OAException("Incorrect login and password.");
}
String pwd = get_pwd(pageContext, pUserName);
pageContext.putParameter("passwordField", pwd);
OAMessageTextInputBean pwdBean = (OAMessageTextInputBean)webBean.findIndexedChildRecursive("passwordField");
pwdBean.setValue(pageContext, pwd);
super.processFormRequest(pageContext, webBean);