• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/20

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

20 Cards in this Set

  • Front
  • Back
Internet Information Services (IIS)
the built-in web server to Windows servers
that enables you to share information with users on the Internet, an intranet, or
an extranet.
Although IIS provides the commonly used HTTP/HTTPS, FTP,
and SMTP services, it also integrates ASP.NET, Windows Communication
Foundation, and Windows SharePoint Services.
TRUE
The successor to ASP is ASP.NET, which is a Microsoft web application framework used to build dynamic websites, web applications, and XML web services.
TRUE
This Configuration Store file contains the .NET settings for the
entire server. In Windows Vista and Windows Server 2008 this file contains all the global settings for .NET-related components and features on IIS Manager 7.0
that server. The settings in this file are inherited by all other .NET con-figuration files, including IIS 7.0 configuration files.
Machine.config
Each application on the server has its own web.configfile
TRUE
It is the root file of the IIS 7.0 configuration system. When a website is created, a site entry is created in this file
ApplicationHost.config
The application-level web.config file applies configuration settings to the
directory in which it resides, as well as to all child folders.
TRUE
Settings in child folders can override or modify settings specified in the
web.configfile in the parent directory, unless the settings are locked at the par-ent web.configlevel. For example, a web.configfile may set a particular set-ting to be true at the site level but then in application number three the setting is set to false.
TRUE
What services must be halted to stop a web server
1. Windows Process Activation
Service (WAS)
2. World Wide Web Publishing Service (W3SVC).
When
you stop WAS and W3SVC, all sessions connected to your web server are
dropped and any in-memory session state is lost. All sites are unavailable until
these services are restarted.
TRUE
If you want the server to host multiple websites, you can assign multiple IP
addresses to the network card and then specify individual IP addresses to each
website.
TRUE
This specify the IP addresses, ports, and host headers assigned to a website.
Bindings
You can assign multiple IP addresses, ports, and host headers to a website.
TRUE
A directory name used in a website that corresponds to a
physical directory on the server.
virtual directory
Virtual Directory enables you to include directory content
in a site or an application without having to move the content physically into
that site or application directory. It also enables you to reuse the same folder for
multiple sites
TRUE
defines a set of resources (a worker process or a set of work-er processes) used by a website or application that sets boundaries for the applications contained and prevents applications in one application pool from affecting applications running in other application pools.
Application Pool
If a website or application crashes or has a memory leak
that consumes all the available memory, it doesn’t affect the other sites and applications in other application pools
TRUE
In IIS 7.0, application pools run in one of two modes What are these modes
integrated mode and classic mode
State the benefits of running in applications in an application pool environment
Improved server and application performance. You can assign resource-intensive applications to their own application pools so that the performance of other applications does not decrease.

Improved application availability. If an application in one application pool fails, applications in other application pools are not affected.

Improved security. By isolating applications, you reduce the chance that one application will access the resources of another application.
Most managed applications should run successfully in application pools with integrated mode, but you may have to run in classic mode for compatibility reasons.
TRUE