Difference between revisions of "Windows Authentication In A Web Application"

From PresenceWiki
Jump to: navigation, search
Line 8: Line 8:
 
The advantages of this are that:-
 
The advantages of this are that:-
  
The user can use their windows username and password.
+
The user can use their windows username and password.
The username is stored against the ip address, so that it will only need to be entered once for a machine.
+
The username is stored against the ip address, so that it will only need to be entered once for a machine.
The httpsession variable is used so that the user only needs to login once.
+
The httpsession variable is used so that the user only needs to login once.
A session will automatically expire when no new requests have been made for a set time.
+
A session will automatically expire when no new requests have been made for a set time.
  
  
 
You can download the tasks for this example from:-
 
You can download the tasks for this example from:-

Revision as of 15:15, 19 August 2010

Tutorial Pages > Windows Authentication In A Web Application

This document describes the processes needed to Autenticate a user accessing your pages using their windows username and password.

This will then also enable you to track users through the site, so for instance, if they press a button on the site to action an event, you'll be able to log who actioned the event.

The advantages of this are that:-

The user can use their windows username and password.
The username is stored against the ip address, so that it will only need to be entered once for a machine.
The httpsession variable is used so that the user only needs to login once.
A session will automatically expire when no new requests have been made for a set time.


You can download the tasks for this example from:-