Answer Me Please About Session.
-
Hi All, Today was my interview, the interviewer asked me a question which confused me. He asked if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
-
Hi All, Today was my interview, the interviewer asked me a question which confused me. He asked if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
Cache?
coolmindd wrote:
if the browser security s high, then the session will not be recognized by the server
I didn't face that kinda problem until now.
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net) "Please vote to let me (and others) know if this answer helped you or not. A 5 vote tells people that your question has been answered successfully and that I've pitched it at just the right level. Thanks."
-
Hi All, Today was my interview, the interviewer asked me a question which confused me. He asked if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
I don't believe that's correct. Perhaps he meant to say 'cookies'.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
I don't believe that's correct. Perhaps he meant to say 'cookies'.
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
Christian Graus wrote:
Perhaps he meant to say 'cookies'.
maybe. ya. I also think like that. but actually, cookieless works in IE with high security.. What the interviewer said might be wrong.
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net) "Please vote to let me (and others) know if this answer helped you or not. A 5 vote tells people that your question has been answered successfully and that I've pitched it at just the right level. Thanks."
-
Hi All, Today was my interview, the interviewer asked me a question which confused me. He asked if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
coolmindd wrote:
if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
I think the only alternative is having
Cookieless Sessions
which is not recommended because it's more open to session hijacking.- Regards -
JON
Life is not measured by the amount of breaths we take, but by the moments that take our breath away.
-
Hi All, Today was my interview, the interviewer asked me a question which confused me. He asked if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
coolmindd wrote:
if the browser security s high, then the session will not be recognized by the server
The Session is maintained on the server however, it has a pointer cookie (SessionID) stored, which might be disabled due to high security settings of web browser.
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
coolmindd wrote:
if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
I think the only alternative is having
Cookieless Sessions
which is not recommended because it's more open to session hijacking.- Regards -
JON
Life is not measured by the amount of breaths we take, but by the moments that take our breath away.
Also, the URL becomes very unfriendly with strange characters. Isn't it?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
Hi All, Today was my interview, the interviewer asked me a question which confused me. He asked if the browser security s high, then the session will not be recognized by the server, what will b the alternative for that ?
But what s the solution for that.
-
Also, the URL becomes very unfriendly with strange characters. Isn't it?
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
But what s the solution for that.
Setting the Browser security high will restrict executing Javascript, Activex control, Cookies. Keeping the security Medium and allowing Cookies to be stored in the machine is harmless. Cookies are not bad programs to harm the system. It's a piece of info which is used to have a session with the server. So If the user is so concious about his system security let him have the firewall enabled and anti-virus installed. Even after doing this if he still needs more security by having the browser security high then let him not access your site. This is the only solution If the browser security is high. Because I would not recommend anyone to develop a site with cookieless session which would be failure eventually.
- Regards -
JON
Life is not measured by the amount of breaths we take, but by the moments that take our breath away.