I am working on an application using .Net MVC3. I have it all working OK using Windows authentication and Active Directory for the logins. It's an intranet based application.

The problem is we have a login which is used by multiple people in one department.

I would like to be able to have that account redirected to a login page so that I can prompt for a different username and password but can't seem to find a way to make that happen with Windows authentication. If there is I just can't see where in MVC to make that take place.

I've tried using Forms authentication with AD instead but we don't want everyone to have to login, just that one account. It's a business decision that I don't see changing unfortunately!

Using authorize attributes on the controllers isn't suitable in this case either as all the controllers can be accessed by any user or group.

The suggestions I've seen seem to revolve around mixing Windows and Forms authentication for internal and external accounts but all our accounts are in AD in this case.

Is there any way to pull this off?

Mark

link|improve this question
feedback

1 Answer

That sounds tough, cos if all users and groups can access all areas, then the people could just use an individual URL, so you'd have to cover any URL being entered.

Can you add another group for that specific user?

And when you want to redirect them to another login page, do you mean a page into which they are going to enter more AD credentials?

And do you meant hat multiple people in one department are logged in to multiple machines using one AD account between them? Cos that sounds very bad!

link|improve this answer
Yeah, it's to enter logon credentials for different AD accounts. Basically it's a system for submitting forms so that emails are returned to the correct person on approval so we want them to be able to logon for their own details to show. It's a general account used for helpdesk access with a few different people using it. Unfortunately it's always been that way and the department head doesn't want it changed. It's not a great way to operate I agree. – Mark Hossack Apr 15 '11 at 13:20
And is there no way to get them to log on to the PC using their own credentials in the first place? – Dommer Apr 15 '11 at 13:22
We'd certainly prefer them to do it that way but there are more users than PCs in the department and they're all in and out all day. – Mark Hossack Apr 15 '11 at 13:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.