Solution
konakartadmin_gwt.properties
konakartadmin.gwt.engineclass=com.konakartadmin.app.KKAdminCustomEng

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Quote from: gmi on August 07, 2010, 08:47:24 am
Hi,
I have just installed the KonaKart Portlet and the KonaKart Admin Portlet for Liferay and I have two questions:
1. Single sign-on is possible for the admin portlet, the configuration for that is explained in the Installation.pdf of KonaKart and I have also done so.
But is it also possible that Liferay users are already logged in automatically in the KonaKart shop with the Liferay login and they not even need to register in the KonaKart shop again and log in again?
Thanks in advance!
package com.isoco.shop.util;
import org.apache.log4j.Logger;
import com.konakart.app.KKException;
import com.konakart.bl.LoginIntegrationMgrInterface;
/**
* Checks credentials
*
* More information:
* http://www.konakart.com/docs/CustomCredentialChecking.html
*
*/
public class ShopingCartLoginHandler implements LoginIntegrationMgrInterface {
private final Logger log = Logger.getLogger(ShopingCartLoginHandler.class);
/* (non-Javadoc)
* @see com.konakart.bl.LoginIntegrationMgrInterface#checkCredentials(java.lang.String, java.lang.String)
*/
/**
* The checkCredentials() method can return the following values:
*
* A negative number in order for the login attempt to fail.
* The KonaKart login() method will return a null sessionId.
*
* Zero, to signal that this method is not implemented.
* The KonaKart login() method will perform the credential check.
*
* A positive number for the login attempt to pass.
* The KonaKart login() will not check credentials,
* and will log in the customer, returning a valid session id.
*
* @param login
* @param password
* @return int
*/
public int checkCredentials(String arg0, String arg1) throws KKException {
/**
* Returns always 1. Liferay will make the work.
*
*/
if (log.isDebugEnabled()){
log.debug("The KonaKart login() will not check credentials, " +
"and will log in the customer, returning a valid session id.");
}
return 1;
}
}