• Welcome to KonaKart Community Forum. Please login or sign up.
 

How to configuare Single Sign on in konakart

Started by zahid392, January 19, 2010, 01:20:58 pm

Previous topic - Next topic

zahid392

hello experts,
i am developing an web app in jsp/servlet where i already integrate konakart. now i have to impliment the single sign on mechanism, my single sign on will do the following

if the user is logged in from my web app he will also loggedin in konakart.no extra login will be nedded inside konakrt.

if the user is not logged in and try to access the area where konakrt required login then it will redirect to my web app Login.jsp.

now my question is how can i impliment it.please describe it in detail.

thanx in advance.

heidi

The section on Custom Credential Checking in the User Guide could be helpful for this:

http://www.konakart.com/docs/CustomCredentialChecking.html

--Heidi

zahid392

Quote from: heidi on January 19, 2010, 01:46:35 pm
The section on Custom Credential Checking in the User Guide could be helpful for this:

http://www.konakart.com/docs/CustomCredentialChecking.html

--Heidi


thnanks fro reply. i read that link that u have provide.

i have written the following class

package com.mfasia.lifeuk.util;

import com.konakart.app.KKException;

public class ShopingCartLoginHandler implements com.konakart.bl.LoginIntegrationMgrInterface{
   
   public int checkCredentials(String emailAddr, String password) throws KKException
   {
      int validLogin=1;
      
      
      return validLogin;
      
   }

}

and setup from Configuration>>Security and Auditing  section of the Admin App. but still i am not automatically logged in.
can u explain why this happening.

Thanks