Re: Session sharing not working - Which is the best strategy?

2005-09-28 Thread sree kanth
Hi all, frankly saying, i too have never tried this but we can keep some information stored in a cookie and then we can have the other web application browse through the cookies and find if the cookie is the intended one and process the applciation logic. Regards, Sreekanth

Re: Session sharing not working - Which is the best strategy?

2005-09-28 Thread Ritchie Gillam
I have seen some forums in which the suggestion is to store the userid and session id in a database table upon leaving the first application and then retrieving that session_id for the same user upon entering the 2nd application. If you don't have this record in the database table then force t

Session sharing not working - Which is the best strategy?

2005-09-28 Thread starki78
We have a web-application that uses a implemented logging mechanism where the valid-user is stored in the session. Now there shall come another web-application that shall be used with the user that was authenticated before. I know that session sharing is not allowed but what else could I do?. Can