KonaKart Community Forum

Installation / Configuration => Configuration of KonaKart => Topic started by: zahid392 on January 19, 2010, 01:20:58 pm

Title: How to configuare Single Sign on in konakart
Post by: zahid392 on January 19, 2010, 01:20:58 pm
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.
Title: Re: How to configuare Single Sign on in konakart
Post by: 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
Title: Re: How to configuare Single Sign on in konakart
Post by: zahid392 on January 20, 2010, 06:28:13 am
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