Forms authentication with Windows authentication

Posted: 09-10-2003, 06:14 PM
Hi,

I have an ASP.NET web site that uses IIS Basic Authentication and accesses
an OLAP Server at various stages. The OLAP Server authentication mechanism
relies on Windows accounts and therefore when a new user needs access to the
system we must create a new Windows user account for him.

This is a 3-year old application and at the time it was decided to let the
OLAP Server handle the filtering of information returned to the client based
on his supplied Windows user account (I wasnīt there at the time). Now Iīm
trying to figure out how we can allow users from other sites enter ours
without explicitly logging in. That is, I need to make it possible for our
clients to come from a web site A, where they have been authenticated, and
enter ours by sending us the userīs credentials for authentication,
effectively making the dialog box redundant.

This puts the burden on our site to have an API of sorts (most likely just
another .aspx page) that can receive a username and password and use that to
authenticate the incoming user. What I need here is to take the credentials,
authenticate them somehow (most likely with the LogonUser API) and then do
something with the result so that after this, all calls from the user will
have the resulting Windows user credentials associated with it.

Does this call for impersonation or do I need to replace the Principal for
the entire context for this user somehow?

Any suggestions or comments truly appreciated.

Regards,
Dadi.


Reply With Quote

Responses to "Forms authentication with Windows authentication"

Joe Camp
Guest
Posts: n/a
 
Re: Forms authentication with Windows authentication
Posted: 09-12-2003, 05:05 PM
Any response about this? I have a similar situation and was wonder how to
best resolve it.

Thanks,
Joe

"Dadi" <dadi@hugur.is> wrote in message
news:eFSMR87dDHA.3260@TK2MSFTNGP09.phx.gbl...
> Hi,
>
> I have an ASP.NET web site that uses IIS Basic Authentication and accesses
> an OLAP Server at various stages. The OLAP Server authentication mechanism
> relies on Windows accounts and therefore when a new user needs access to
the
> system we must create a new Windows user account for him.
>
> This is a 3-year old application and at the time it was decided to let the
> OLAP Server handle the filtering of information returned to the client
based
> on his supplied Windows user account (I wasnīt there at the time). Now Iīm
> trying to figure out how we can allow users from other sites enter ours
> without explicitly logging in. That is, I need to make it possible for our
> clients to come from a web site A, where they have been authenticated, and
> enter ours by sending us the userīs credentials for authentication,
> effectively making the dialog box redundant.
>
> This puts the burden on our site to have an API of sorts (most likely just
> another .aspx page) that can receive a username and password and use that
to
> authenticate the incoming user. What I need here is to take the
credentials,
> authenticate them somehow (most likely with the LogonUser API) and then do
> something with the result so that after this, all calls from the user will
> have the resulting Windows user credentials associated with it.
>
> Does this call for impersonation or do I need to replace the Principal for
> the entire context for this user somehow?
>
> Any suggestions or comments truly appreciated.
>
> Regards,
> Dadi.
>
>

Reply With Quote
Scott Scott
Guest
Posts: n/a
 
Re: Forms authentication with Windows authentication
Posted: 09-16-2003, 05:47 AM
have you thought about protecting the content by originating IP address
(from the partner).

then you can assign them a cookie, or perhaps log them in via basic
authentication with a random username and password.

or you can always protect the rest of your content by referrer.

you can contact me offline if you want further clarification.


scott@flicks.com







*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Reply With Quote
 
LinkBack Thread Tools Search this Thread Display Modes
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Forms Authentication Gustavo Mateus ASP.NET Security 24 01-11-2005 01:09 PM
Forms Authentication and SSL Marco Roello ASP.NET Security 4 10-23-2003 12:05 PM
Should I trust on Forms authentication? Gustavo Mateus ASP.NET Security 0 08-22-2003 03:09 AM
Forms / Windows Authentication Mike Hacker ASP.NET Security 1 08-21-2003 08:44 AM
Problem with Forms Authentication David C. Taylor ASP.NET Security 0 08-11-2003 06:37 PM