Ask a Question related to ASP.NET Web Services, Design and Development.
-
Nikolay Petrov #1
SQL User authentication
Is it possible to authenticate user using a SQL database, containing users
and passwords?
What I want to achive is:
I have as SQL database containig data for my app. This database also
contains usernames, passwords and rights which are specific for my app.
Also I have a middle tier WebService, which contains the business logic of
my app, and is responsible for connecting to SQL database.
The connection between SQL server and the WebService as made with hardcoded
user. I don't need to authenticate the Users with SQL server.
As a frontend I have a Windows Froms and ASP .NET applications.
The users should fill username/password boxes, then this information is to
be passed to the WebService, which checks the username and password in the
SQL database.
I want the WebService methods to be available only to users, which have
authenticated to the user database in SQL server.
Any ideas, sample code and documents of how to implement this would be
greatly appreciateble.
I use VB .NET
Thank you in advance!
Nikolay Petrov Guest
-
user authentication weirdness
On our development machine, running MySQL 5.0.19, I created a database alert_db, and for development purposes created a user called alert_db with a... -
User Authentication
Hi All: I would like to have certain areas of a site that I am developing password protected but I am not sure how to go about doing this. I know... -
User Authentication problems
hi everyone i am using a php site and i have been trying to implement user authentication by completing the macromedia tutorial "Macromedia -... -
XP user authentication
Folks, Given the following function signature: bool AutheticateUser(string uid, string pwd); Can anyone tell me which .Net class.function API... -
DB User authentication.
Not a programmin newbie, but a PHP newbie. I'm working off the user authentication and database thing off hotscripts.com. It doesn't work, yet... -
Nikolay Petrov #2
SQL User authentication
Is it possible to authenticate user using a SQL database, containing users
and passwords?
What I want to achive is:
I have as SQL database containig data for my app. This database also
contains usernames, passwords and rights which are specific for my app.
Also I have a middle tier WebService, which contains the business logic of
my app, and is responsible for connecting to SQL database.
The connection between SQL server and the WebService as made with hardcoded
user. I don't need to authenticate the Users with SQL server.
As a frontend I have a Windows Froms and ASP .NET applications.
The users should fill username/password boxes, then this information is to
be passed to the WebService, which checks the username and password in the
SQL database.
I want the WebService methods to be available only to users, which have
authenticated to the user database in SQL server.
Any ideas, sample code and documents of how to implement this would be
greatly appreciateble.
I use VB .NET
Thank you in advance!
Nikolay Petrov Guest
-
Mary Chipman #3
Re: SQL User authentication
Yes, you can store this information in your SQL Server. The technique
is described in the ASP.NET security best practices whitepaper, which
is a free download from
[url]http://www.microsoft.com/downloads/release.asp?ReleaseID=44047[/url]
--Mary
On Tue, 19 Oct 2004 16:20:09 +0300, "Nikolay Petrov"
<johntup2@mail.bg> wrote:
>Is it possible to authenticate user using a SQL database, containing users
>and passwords?
>
>What I want to achive is:
>I have as SQL database containig data for my app. This database also
>contains usernames, passwords and rights which are specific for my app.
>Also I have a middle tier WebService, which contains the business logic of
>my app, and is responsible for connecting to SQL database.
>The connection between SQL server and the WebService as made with hardcoded
>user. I don't need to authenticate the Users with SQL server.
>As a frontend I have a Windows Froms and ASP .NET applications.
>The users should fill username/password boxes, then this information is to
>be passed to the WebService, which checks the username and password in the
>SQL database.
>I want the WebService methods to be available only to users, which have
>authenticated to the user database in SQL server.
>
>
>Any ideas, sample code and documents of how to implement this would be
>greatly appreciateble.
>I use VB .NET
>
>Thank you in advance!
>Mary Chipman Guest
-
Mary Chipman #4
Re: SQL User authentication
Yes, you can store this information in your SQL Server. The technique
is described in the ASP.NET security best practices whitepaper, which
is a free download from
[url]http://www.microsoft.com/downloads/release.asp?ReleaseID=44047[/url]
--Mary
On Tue, 19 Oct 2004 16:20:09 +0300, "Nikolay Petrov"
<johntup2@mail.bg> wrote:
>Is it possible to authenticate user using a SQL database, containing users
>and passwords?
>
>What I want to achive is:
>I have as SQL database containig data for my app. This database also
>contains usernames, passwords and rights which are specific for my app.
>Also I have a middle tier WebService, which contains the business logic of
>my app, and is responsible for connecting to SQL database.
>The connection between SQL server and the WebService as made with hardcoded
>user. I don't need to authenticate the Users with SQL server.
>As a frontend I have a Windows Froms and ASP .NET applications.
>The users should fill username/password boxes, then this information is to
>be passed to the WebService, which checks the username and password in the
>SQL database.
>I want the WebService methods to be available only to users, which have
>authenticated to the user database in SQL server.
>
>
>Any ideas, sample code and documents of how to implement this would be
>greatly appreciateble.
>I use VB .NET
>
>Thank you in advance!
>Mary Chipman Guest



Reply With Quote

