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

Monday, 28 December 2015

Install SSL Certificate

You can see the link to creation of SSL certificate



You have the icon like below for creation of certificate.


Create New SSL Certificate using IIS 8.1

Create New SSL Certificate

  1. Open IIS; open the run window by window + R, than type inetmgr like below. Then click on Ok.

  1. Internet Information service will open than select the server from left and you will get the list of option as like below screen. On it select the server certificate.

Friday, 5 September 2014

Handler "ExtensionlessUrlHandler-Integrated-4.0" has a bad module "ManagedPipelineHandler" in its module list

you have to register asp.net with iis,

this is problem happening because you install IIS after installing the visual studio

aspnet_regiis -i

This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false

This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with 
overrideMode="Deny" or the legacy allowOverride="false




1. Click "Start button"
2. search box, enter "Turn windows features on or off"
3. features window, Click: "Internet Information Services"
4. "World Wide Web Services"
5. "Application Development Features"
6. Check (enable) the features. I checked all but CGI.

Saturday, 22 March 2014

How HTTPrequests work in IIS ?

There are Step by Step processes to know how HTTP request works.

1.      If want to be able to interact with the low level processes, such as how the web server processes incoming & outgoing HTTP Request.

2.       Before coming of HTTP Modules and Handlers to work with Web server & to control IIS operation uses forced to create ISAPI Extreme or Filter. Which is not easy due to creating it user need to know about c/c++ knowledge in low level.

3.       IIS is the basic end point for incoming HTTP Request its job is to listen for & validate incoming HTTP Request. Than it routes them to appropriate modules for processing & return any results to the original requestor.