vote up 0 vote down star

Is there a way to auto-log a user in who is logged into active-directory without propmting them to use the login dialog.

I cannot set the Auth method to windows as there are 5 differant login methods.

Thanks

flag

as you have 5 login methods, how do you know you should log in some user without prompting? Domain authenticated users should never get a login dialog? – Rubens Farias Oct 21 at 10:54
Pretty much, if they are on AD then log them in, if not ship them to the login page. – Pino Oct 21 at 11:26
beensoft.blogspot.com/2008/06/… – Pino Oct 21 at 11:32
Pino, the problem with the scenario you're describing (bypassing the login page), is that you're assuming the user at the keyboard is the user that is logged onto the machine. That's a fairly risky assumption. In my mind, if an application requires a login, it should always require a login. I don't want a legitimate user to walk away from the keyboard, and have the janitor walk up to the machine, fire the application up, and start using it. – Mike Hofer Oct 21 at 12:48
1  
If the user left his machine unlocked then he acted against common rules... at least in germany this is part of the "common-working-evironment-agreement"... – David Oct 21 at 14:00
show 1 more comment

1 Answer

vote up 1 vote down check

I could automatic login only get to work with IE and cookies..

this is a snippet from the web.config that might help:

<!-- roles -->
<roleManager
  enabled="true"
  defaultProvider="AuthCookieRoleManager">
  <providers>
    <clear/>
    <add name="AuthCookieRoleManager" type="CustomWeb.CustomAuthCookieRoleManager"/>
  </providers>
</roleManager>

<authentication mode="Forms">
  <forms loginUrl="Logon.aspx" name="ADAuth" timeout="10" path="/">
  </forms>
</authentication>
<authorization>
  <deny users="?"/>
  <allow users="*"/>
</authorization>
<identity impersonate="true"/>

<!-- roles -->
<location path="Allocation">
  <system.web>
    <authorization>
      <allow roles="CustomRoleX"/>
      <deny users="*"/>
    </authorization>
  </system.web>
</location>

If this does not meet your requirements, i guess you have to customize the provider..

link|flag

Your Answer

Get an OpenID
or

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