Hi,
I’ve deploy KonaKart on my Liferay 5.2.3 portal, and as sashwill I would like to use my portal login as my KonaKart login.
To do it, I register some users in konakartadmin, and, with the same email and password in Liferay,
and I've configured the LOGIN_INTEGRATION_CLASS with com.konakart.bl.LoginIntegrationMgr
When a customer make a login in Liferay, a Hook (a Liferay hook) executes:
KKAppEng kkAppEng = this.getKKAppEng(request, response); //"this." because this class extends BaseAction
String sessionId = kkAppEng.getCustomerMgr().login(user, password);
but sessionId is always null.
Is this the correct way to make a login?. (I'm following the "LoginSubmitAction" step by step as login sample).