Showing posts with label IIS. Show all posts
Showing posts with label IIS. Show all posts

What are different IIS isolation levels?

Monday, May 17, 2010


IIS has three level of isolation:

* Low (IIS process) In this main IIS process and ASP.NET application run in same process. So if any one crashes the other is also affected. So all application and the IIS process runs on the same process. In case any website crashes it affects everyone.
* Medium (Pooled) In Medium pooled scenario the IIS and web application run in different processes. So in this case there are two processes process1 and process2. In process1 the IIS process is running and in process2 we have all Web applications running.
* High (Isolated) In high isolated scenario every process is running is there own process. This consumes heavy memory but has highest reliability.


www.codecollege.NET

What is the file used to create a metabse backup of IIS 6.0 programatically?

Friday, October 9, 2009


IISback.vbs



www.codecollege.NET

What are the IIS backup files?


The backup files are the copies of the
1. MetaBase.xml , the metabase configuration file and
2. MSSchema.xml , the matching metabase schema file.



www.codecollege.NET

What are MMC tools or snap-ins ?

Thursday, October 8, 2009


MMC tools (called snap-ins) can be used to administer networks, computers, services,
applications and other system components. MMC does not perform administrative functions, but hosts a variety of Windows and non-Microsoft snap-ins that do.



www.codecollege.NET

What is MMC ?


Microsoft Management Console is a framework that unifies and simplifies day-to-day system management tasks on Windows by providing common navigation, menus, toolbars, and workflow across diverse tools.



www.codecollege.NET

How will you register IIS in your computer?


regsvr32 %systemroot%\system32\inetsrv\inetmgr.dll



www.codecollege.NET

What is the expansion of MMC?


Microsoft Management Console



www.codecollege.NET

What is the extension of WCF services hosted in IIS?

Tuesday, September 22, 2009


.svc


www.codecollege.NET

What is the expansion of IIS?

Friday, August 7, 2009


Internet Information Server.


www.codecollege.NET

How will you programmatically read the identity of the impersonated user ?

Wednesday, August 5, 2009


VB
==
Dim curUser As String = _
System.Security.Principal.WindowsIdentity.GetCurrent().Name

C#
==
String curUser =
System.Security.Principal.WindowsIdentity.GetCurrent().Name;


www.codecollege.NET

What is URL authorization in ASP.NET ?


It is an authorization which maps users and roles to URLs in ASP.NET applications.


www.codecollege.NET

What is File authorization in ASP.NET ?


It is an Authorization which checks the access control list (ACL) of the .aspx or .asmx handler file to determine whether a user has access to the file.


www.codecollege.NET

What are the Types of Authorization ?


There are two types of Authorizations, they are:
1. File authorization
2. URL authorization


www.codecollege.NET

Among Windows Authentication and SQL Server Authentication, which one is the most trusted ?


Windows Authentication as the checking is done with the Active Directory.


www.codecollege.NET

On What situations Windows uses Kerberos in Integrated Windows Authentication ?

Monday, August 3, 2009


1. When the server and client are running over Windows 2000 or higher.
2. When an AD with Domain Controller which automatically acts as a key distribution center.


www.codecollege.NET

What are the two protocols used for trasmitting Authentication information in Integrated Windows Authentication ?


1. NTLM NT (LAN Manager).
2. Kerberos 5.


www.codecollege.NET

What are the disadvantages of Digest Authentication ?


1. It works only with IE5.0 or later.
2. Works only when the virtual directory under IIS is controlled by or authenticated by Windows Active Directory domain controller.


www.codecollege.NET

How will you check whether a user is Authenticated or not ?

Friday, July 31, 2009


You can do that by the following method,
Request.IsAuthenticated();


www.codecollege.NET

Which Authentication strategy of Windows Authentication does not require user intervention ?


Integrated Windows Authentication does not require user intervention.


www.codecollege.NET

What Authentication strategy of Windows Authentication is supported by all browsers ?


Basic Authenticaion is supported by almost all browsers.


www.codecollege.NET
Blog Widget by LinkWithin