473,399 Members | 2,478 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Bug in forms authentication?

Hi,
I noticed weird behaviour with the site that is using forms
authentication. I am logged to the site from the same machine from two
browsers (opened separately, not ctrl-N) as different users so two
sessions are created. Then from the one window I logoff but I'm
automatically logouted also from the other browser window. Why?

It is strange that it is working OK if I'm doing it on the same machine
where the web server is located.

regards,
mircu
Nov 19 '05 #1
7 1722
If you did a ctrl-N, then they are part of the same session and I would
imaging so is the user logged in.

"mircu" <mi***@op.pl> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
Hi,
I noticed weird behaviour with the site that is using forms
authentication. I am logged to the site from the same machine from two
browsers (opened separately, not ctrl-N) as different users so two
sessions are created. Then from the one window I logoff but I'm
automatically logouted also from the other browser window. Why?

It is strange that it is working OK if I'm doing it on the same machine
where the web server is located.

regards,
mircu

Nov 19 '05 #2
Peter Rilling wrote:
If you did a ctrl-N, then they are part of the same session and I would
imaging so is the user logged in.


A noted in my post that the other browser window was _not_ opened with
ctrl-N. I know that then it would be the same session.

regards,
mircu
Nov 19 '05 #3
KMA
Maybe I'm being thick, but what have sessions to do with forms
authentication. Isn't the auth token saved as a cookie. And the cookie is
shared.

Try using two different browsers rather than two instances of the same
browser type.

BTW, isn't the displayed functionality the desired case? That users remain
logged in at the server even if their browser is restarted/doubly launched.

As stated above, I could be a bit thick.
"mircu" <mi***@op.pl> wrote in message
news:OE**************@TK2MSFTNGP12.phx.gbl...
Peter Rilling wrote:
If you did a ctrl-N, then they are part of the same session and I would
imaging so is the user logged in.


A noted in my post that the other browser window was _not_ opened with
ctrl-N. I know that then it would be the same session.

regards,
mircu

Nov 19 '05 #4
KMA wrote:
Maybe I'm being thick, but what have sessions to do with forms
authentication. Isn't the auth token saved as a cookie. And the cookie is
shared. You are right that sessions and form authentication are separated
things. In my application I have tied it together a little. When the
user is logging I create the auth cookie and add to the response. When
logging out the FormsAuthentication.SignOut() and Session.Abandon() are
called.

Try using two different browsers rather than two instances of the same
browser type.
OK. I've checked this: when I'm connecting from two IE browsers it _is
not OK_, when from two Firefox browsers also _not OK_, but when from one
IE and one Firefox it _is OK_.
Hmm, maybe the auth cookie is shared across the browsers (the same type).
BTW Is there a way to list all cookies stored in memory?

BTW, isn't the displayed functionality the desired case? That users remain
logged in at the server even if their browser is restarted/doubly launched.
When the server is restarted sessions are lost (I have to use in-proc
sessions) so users can not continue work after the server is restarted
and should login again.

As stated above, I could be a bit thick.
"mircu" <mi***@op.pl> wrote in message
news:OE**************@TK2MSFTNGP12.phx.gbl...
Peter Rilling wrote:
If you did a ctrl-N, then they are part of the same session and I would
imaging so is the user logged in.


A noted in my post that the other browser window was _not_ opened with
ctrl-N. I know that then it would be the same session.

regards,
mircu



regards,
mircu
Nov 19 '05 #5
KMA
Mircu,

I'm still a bit puzzled as to why you think the observed behaviour is
incorrect. If I launch two instances of the same browser then they share the
same (client-side stored) cookie. If I log on in one then I'm effectively
logged on in the other. The "browser type cookie is logged on", you might
say.
When the server is restarted sessions are lost (I have to use in-proc
sessions) so users can not continue work after the server is restarted
and should login again.

But this is true regardless of how many client browsers are open. In-proc
storage on the server side is held only as long as the server process
exists. But the client side cookie may still be valid and authenticated.
This is also the desirted model, is it not? If I'm logged in to Amazon and
I'm taking 10 minutes to decide whther to buy a book, during which time
Amazon servers restart, why should I be prompted to log in again?

However, if you are personally storing something in a session volatile way
and the sessions are lost through a restart, it is up to you to write that
data to pernanent storage beforehand and recover it after. But I don't see
how the Forms authentication model is to blame here.

KMA

"mircu" <mi***@op.pl> wrote in message
news:uj**************@TK2MSFTNGP12.phx.gbl... KMA wrote:
Maybe I'm being thick, but what have sessions to do with forms
authentication. Isn't the auth token saved as a cookie. And the cookie is shared. You are right that sessions and form authentication are separated
things. In my application I have tied it together a little. When the
user is logging I create the auth cookie and add to the response. When
logging out the FormsAuthentication.SignOut() and Session.Abandon() are
called.

Try using two different browsers rather than two instances of the same
browser type.


OK. I've checked this: when I'm connecting from two IE browsers it _is
not OK_, when from two Firefox browsers also _not OK_, but when from one
IE and one Firefox it _is OK_.
Hmm, maybe the auth cookie is shared across the browsers (the same type).
BTW Is there a way to list all cookies stored in memory?

BTW, isn't the displayed functionality the desired case? That users remain logged in at the server even if their browser is restarted/doubly

launched.
When the server is restarted sessions are lost (I have to use in-proc
sessions) so users can not continue work after the server is restarted
and should login again.

As stated above, I could be a bit thick.
"mircu" <mi***@op.pl> wrote in message
news:OE**************@TK2MSFTNGP12.phx.gbl...
Peter Rilling wrote:

If you did a ctrl-N, then they are part of the same session and I would
imaging so is the user logged in.

A noted in my post that the other browser window was _not_ opened with
ctrl-N. I know that then it would be the same session.

regards,
mircu



regards,
mircu

Nov 19 '05 #6
KMA wrote:
I'm still a bit puzzled as to why you think the observed behaviour is
incorrect. If I launch two instances of the same browser then they share the
same (client-side stored) cookie. If I log on in one then I'm effectively
logged on in the other. The "browser type cookie is logged on", you might
say.
I know that this behaviour can be correct in one situation but it is not
correct in another. In my situation I'd like to log in in one browser
with different role than in another. If I'm logged in one browser, then
if I am automatically authorized to the site from other browsers I can
not log in as a different user with different role.

However, if you are personally storing something in a session volatile way
and the sessions are lost through a restart, it is up to you to write that
data to pernanent storage beforehand and recover it after. But I don't see
how the Forms authentication model is to blame here.


I blame it that it doesn't work in the situation I described earlier. I
agree that in one situation the behaviour is correct but if I wanted
something other it seems that it can't be customized. The fix would be
simple, the cookie name or data should be allowed to append user defined
data (eg. user name/role/id) and then if I wanted to log in from two
browsers I would have two cookies and when logging off only one cookie
(matched the defined data) should be deleted.

regards,
mircu
Nov 19 '05 #7
KMA
Mircu,

I think it's true to say that logging in simultaneously with two different
sets of credentials is an exotic requirement, and hence it isn't the default
behaviour of forms authentication. As far as I can imagine, the only reason
to do this is for testing a site. You could do this by lauching multiple
browser types. If you really want to use the same browser, or your users
need to then you're going to have to handroll some extra authentication
code. Either way, I think the plain vanilla forms auth gives you incredible
functionality for the 20 or so lines it take to implement.

KMA
"mircu" <mi***@op.pl> wrote in message
news:#N**************@TK2MSFTNGP09.phx.gbl...
KMA wrote:
I'm still a bit puzzled as to why you think the observed behaviour is
incorrect. If I launch two instances of the same browser then they share the same (client-side stored) cookie. If I log on in one then I'm effectively logged on in the other. The "browser type cookie is logged on", you might say.


I know that this behaviour can be correct in one situation but it is not
correct in another. In my situation I'd like to log in in one browser
with different role than in another. If I'm logged in one browser, then
if I am automatically authorized to the site from other browsers I can
not log in as a different user with different role.

However, if you are personally storing something in a session volatile way and the sessions are lost through a restart, it is up to you to write that data to pernanent storage beforehand and recover it after. But I don't see how the Forms authentication model is to blame here.


I blame it that it doesn't work in the situation I described earlier. I
agree that in one situation the behaviour is correct but if I wanted
something other it seems that it can't be customized. The fix would be
simple, the cookie name or data should be allowed to append user defined
data (eg. user name/role/id) and then if I wanted to log in from two
browsers I would have two cookies and when logging off only one cookie
(matched the defined data) should be deleted.

regards,
mircu

Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Billy Jacobs | last post by:
I have a website which has both secure and non-secure pages. I want to uses forms authentication. How do I accomplish this? Originally I had my web.config file in the root with Forms...
3
by: Kris van der Mast | last post by:
Hi, I've created a little site for my sports club. In the root folder there are pages that are viewable by every anonymous user but at a certain subfolder my administration pages should be...
2
by: Eric | last post by:
I am trying to build an app where the stuff in the root directory is open to all, but anything under the Restricted directory requires you to login and I want to use Forms to do it. I'm having...
0
by: Anonieko Ramos | last post by:
ASP.NET Forms Authentication Best Practices Dr. Dobb's Journal February 2004 Protecting user information is critical By Douglas Reilly Douglas is the author of Designing Microsoft ASP.NET...
7
by: Justin | last post by:
I am trying to password protect a subdirectory using forms authentication. I am using the "Location" tag to specify the directory to be protected. The login.aspx page is in the root directory of...
5
by: V. Jenks | last post by:
Using forms authentication, can I control which pages and/or directories a user would have access to or is that only available with Windows authentication? Thanks!
4
by: =?Utf-8?B?R3V1czEyMw==?= | last post by:
Hi, I created a web site on a remote server. To logon the user must enter a user id and password. The site is uses Forms Authentication. The web config file looks as follows: ...
4
by: Bjorn Sagbakken | last post by:
In a web-application with login creds (user, pwd), these are checked against a user table on a SQL server. On a positive validation I have saved the userID, name, custno and role-settings in a...
5
by: Rory Becker | last post by:
Having now created a Custom MembershipProvider that seems to work correctly with my Logon and ChangePassword controls, I am, as they say, a happy bunny. The next stange is to move on to the...
1
by: Sean | last post by:
Hi, I've taken over a website, which has an admin section that is currently open. I added Forms Authentication to the admin directory with the using the location section in web.config: ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.