Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Can you explain in brief how the ASP.NET authentication process works
Can you explain in brief how the ASP.NET authentication process works?
✍: Guest
ASP.NET does not run by itself, it runs inside the process of IIS. So there are two
authentication layers which exist in ASP.NET system. First authentication happens at
the IIS level and then at the ASP.NET level depending on the WEB.CONFIG file.
Below is how the whole process works:-
¡Ì IIS first checks to make sure the incoming request comes from an IP address
that is allowed access to the domain. If not it denies the request.
¡Ì Next IIS performs its own user authentication if it is configured to do so. By
default IIS allows anonymous access, so requests are automatically
authenticated, but you can change this default on a per ¨C application basis
with in IIS.
¡Ì If the request is passed to ASP.net with an authenticated user, ASP.net checks
to see whether impersonation is enabled. If impersonation is enabled, ASP.net
acts as though it were the authenticated user. If not ASP.net acts with its own
configured account.
¡Ì Finally the identity from step 3 is used to request resources from the operating
system. If ASP.net authentication can obtain all the necessary resources it
grants the users request otherwise it is denied. Resources can include much
more than just the ASP.net page itself you can also use .Net¡¯s code accesssecurity
features to extend this authorization step to disk files, Registry keys
and other resources.
2007-10-24, 7152👍, 0💬
Popular Posts:
What are the two kinds of comments in JSP and what's the difference between them? <%-- JSP Co...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
How To Control Vertical Alignment? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells By d...
How is normally a project management plan document organized ? PMP document forms the bible of a pro...