Re: why not SQL Authentication?
From: Pavlos Kariotellis (pkario_at_eie.gr)
Date: 03/29/05
- Next message: Ken Schaefer: "Re: Creation of ASPNET user in Active Directory 203"
- Previous message: Gunjan Desai: "Creation of ASPNET user in Active Directory 203"
- In reply to: Brock Allen: "Re: why not SQL Authentication?"
- Next in thread: Brock Allen: "Re: why not SQL Authentication?"
- Reply: Brock Allen: "Re: why not SQL Authentication?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 29 Mar 2005 12:07:31 +0300
My application is serving small businesses. Each one has its own DB. Most of
the time there is one user per DB. This user my be connected all day long.
To use connection pooling I'l have to log all the users to one DB and the
switch them to appropriate DB. I think this creates a security risk.
"Brock Allen" <ballen@NOSPAMdevelop.com> wrote in message
news:283855632475988240591776@msnews.microsoft.com...
> The main drawback of SqlAuthentication (authing from browser thru website
> thru database) is that connections can't be pooled. For some websites this
> is not a concern, but for others where you have huge volume (and/or you're
> not doing windows auth against the clients) if you use the client's creds
> for SqlAuth then that's an independant connection. So 1000 users on your
> site, that's 1000 distinct connections. If you use the same credentials
> (like a "SqlUser" account) then those connections get pooled and thus
> shared. It's a performance enhancement.
>
> -Brock
> DevelopMentor
> http://staff.develop.com/ballen
>
>
>
>> With Forms authentication and SQL Server, MS recommends creating a
>> User
>> table and storing user names and password hashes to that table.
>> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnne
>> tsec/html/SecNetHT03.aspThey go on proposing a Roles table and so on.I
>> wonder why not just use SQL Server authentication and just try to
>> loginwith the user supplied credentials?
>
>
>
- Next message: Ken Schaefer: "Re: Creation of ASPNET user in Active Directory 203"
- Previous message: Gunjan Desai: "Creation of ASPNET user in Active Directory 203"
- In reply to: Brock Allen: "Re: why not SQL Authentication?"
- Next in thread: Brock Allen: "Re: why not SQL Authentication?"
- Reply: Brock Allen: "Re: why not SQL Authentication?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|
|