Page 1 of 1
How to use the same session variable betwen 3 diff. servers
Posted: Fri Mar 17, 2006 11:55 pm
by madhu
hi
am using Session variables in my project.
But once when we upload all code(files),when we switch on(i.e) accessing another server,am losing the session variables.
plz solve my problem.[/b]
Posted: Sat Mar 18, 2006 12:01 am
by feyd
The session information will need to be synchronized across the servers. This is often done with a database that is accessible to each of the servers. Worst case, if the servers fall under the same domain, you could use a cookie, but that is trusting the users' machines. Something I wouldn't trust with much of anything.
How to use the same session variable betwen 3 diff. servers
Posted: Sat Mar 18, 2006 12:08 am
by madhu
hi can u plz. explain with detailed information ,how to solve this problem.........
plz this is urgent.....
Posted: Sat Mar 18, 2006 12:26 am
by feyd
I have explained all you should need to build your solution. Do some research.