Sign In
Kanwaljeet Singla's Weblog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
AdvancedLogging
Appcmd
Configuration
Custom Errors
FastCGI
IIS 7.5
IIS7
MSDeploy
PHP
Tracing
WinCache
Archive
Archives
October 2009
(1)
September 2009
(2)
April 2009
(3)
March 2009
(1)
February 2009
(1)
January 2009
(2)
December 2008
(2)
June 2008
(3)
February 2008
(2)
December 2007
(2)
July 2007
(2)
June 2007
(1)
May 2007
(2)
April 2007
(1)
February 2007
(2)
December 2006
(2)
November 2006
(2)
August 2006
(3)
June 2006
(3)
MSDN Blogs
>
Kanwaljeet Singla's Weblog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Kanwaljeet Singla's Weblog
Feature additions and bug fixes coming up in WinCache
Posted
over 3 years ago
by
Kanwaljeet Singla
0
Comments
We are seeing huge momentum behind adoption of WinCache . In the month of September, WinCache v1 Beta was downloaded more than 13,000 time making it one of the most downloaded IIS extensions in the first month following its release. Many happy customers...
Kanwaljeet Singla's Weblog
Migrating FastCGI configuration from IIS 5.1/6.0 to IIS 7.0/7.5
Posted
over 3 years ago
by
Kanwaljeet Singla
0
Comments
Problem As you know FastCGI functionality on IIS 5.1 and IIS 6.0 is provided by FastCGI ISAPI extension which is available as an independent download. On IIS 7.0 and beyond, FastCGI functionality is provided by IIS FastCGI module which comes with the...
Kanwaljeet Singla's Weblog
How WinCache make PHP run faster
Posted
over 3 years ago
by
Kanwaljeet Singla
1
Comments
Why WinCache? Use of PHP accelerators is very common to make PHP run faster. Most of the existing PHP accelerators which are in use today are designed keeping *nix architecture in mind and mostly doesn’t work well on Windows. For example, APC which is...
Kanwaljeet Singla's Weblog
FastCGI ISAPI 1.5 Beta for WinXP and Win2K3
Posted
over 3 years ago
by
Kanwaljeet Singla
1
Comments
IIS team today released FastCGI ISAPI 1.5 Beta for WinXP and Win2K3 which has some very nice additions to existing FastCGI ISAPI functionality. Following additions have been made to FastCGI ISAPI 1.0 . 1. Few features we added to FastCGI module in IIS...
Kanwaljeet Singla's Weblog
Using advanced logging to log custom module data
Posted
over 3 years ago
by
Kanwaljeet Singla
0
Comments
Advanced logging module which media team released few days ago uses IIS tracing subsystem and allow module developers to log custom data in W3C compatible format using familiar IHttpTraceContext interface. If you are a module developer and want to generate...
Kanwaljeet Singla's Weblog
Implementing IAppHostPathMapper in C
Posted
over 3 years ago
by
Kanwaljeet Singla
1
Comments
Few days ago I was required to implement IAppHostPathMapper interface in native C to map configuration path MACHINE/WEBROOT/APPHOST to DefaultAppPool.config and struggled with finding good documentation. With help of some incomplete, hard to find documentation...
Kanwaljeet Singla's Weblog
New features in configuration system and appcmd in IIS 7.5
Posted
over 3 years ago
by
Kanwaljeet Singla
0
Comments
Following new features have been added to IIS configuration system and appcmd command line tool in IIS 7.5. Configuration System 1. Configuration system tracing and logging In IIS 7.5, IIS native configuration system can generate trace events capturing...
Kanwaljeet Singla's Weblog
IIS 7.5 updates to custom errors and compression
Posted
over 3 years ago
by
Kanwaljeet Singla
1
Comments
Looking at number of people reaching my first blog post while searching for information on IIS 7.5, I figured I should do few more posts on changes which are coming in IIS 7.5. In this blog post I am covering new features which have been added to compression...
Kanwaljeet Singla's Weblog
Improvements to FastCGI in IIS 7.5
Posted
over 3 years ago
by
Kanwaljeet Singla
3
Comments
Following improvements have been made to FastCGI module in Win7 (and Win2K8 R2). 1. Monitor changes to a file We have added ability to monitor changes to a file for each FastCGI process pool. Module will recycle FastCGI processes for the process pool...
Kanwaljeet Singla's Weblog
Generating trace information in IIS native modules
Posted
over 3 years ago
by
Kanwaljeet Singla
1
Comments
IIS7 has really nice tracing capabilities which are available to all module developers. If you want to make it easy for you and your customers to debug problems in your modules, you should definitely be using them. You can use IHttpTraceContext::RaiseTraceEvent...
Kanwaljeet Singla's Weblog
Using IMetadataInfo::GetModuleContextContainer to store configuration data
Posted
over 4 years ago
by
Kanwaljeet Singla
0
Comments
If you write an IIS7 module, you would typically want to control its behavior based on some configuration data. IIS7 makes it really easy for developers to extend configuration schema so that their customers can put configuration data for their modules...
Kanwaljeet Singla's Weblog
Generating configuration to allow/deny access to countries
Posted
over 4 years ago
by
Kanwaljeet Singla
0
Comments
There have been few requests on forums where people wanted to control access to sites based on country from where request originated. We recommended people to use IP restriction module functionality which required people to add IP address ranges of the...
Kanwaljeet Singla's Weblog
Enabling intellisense for AhAdmin code in scripts
Posted
over 4 years ago
by
Kanwaljeet Singla
0
Comments
MWA (Microsoft.Web.Administration) is pretty popular among developers who wish to read/write IIS configuration because of ease of writing managed code (which enables its use in powershell as well) and also because it provides a more intuitive wrapper...
Kanwaljeet Singla's Weblog
Tool to generate AhAdmin code for actions in IIS7 UI
Posted
over 4 years ago
by
Kanwaljeet Singla
0
Comments
If you ever write AhAdmin code, this is for you.I have written a tool which generates equivalent JavaScript/C#/VB.Net AhAdmin code for actions done in IIS7 UI. IIS7 configuration system gives access to IIS config files via a set of COM APIs. You can read...
Kanwaljeet Singla's Weblog
Exposing runtime data from IIS worker processes
Posted
over 4 years ago
by
Kanwaljeet Singla
0
Comments
Dynamic properties feature in IIS7 configurtion system lets you expose dynamic data as configuration system properties. RscaExt.xml which is part of IIS7 has all the RSCA (runtime status and control APIs) functionality exposed as dynamic properties through...
Kanwaljeet Singla's Weblog
What to expect from IIS7 custom error module
Posted
over 4 years ago
by
Kanwaljeet Singla
1
Comments
IIS7 custom error module work in SendResponse stage with priority high (priority high in send response actually means lowest priority) which makes it one of the last modules to run in the pipeline. It produces custom errors only if current statusCode...
Kanwaljeet Singla's Weblog
How configuration system merges sections
Posted
over 4 years ago
by
Kanwaljeet Singla
1
Comments
One of the things which was not clear to me when IIS7 configuration system was written was how configuration system merges all the configuration data available and then decide what values are effective for the current request. One of confusions came from...
Kanwaljeet Singla's Weblog
List of registry keys affecting IIS7 behavior
Posted
over 5 years ago
by
Kanwaljeet Singla
1
Comments
Few months ago, I fired procmon and collected all the registry keys IIS7 processes read. I then gathered the information about these registry keys from different people in the team and also collected available information on the internet. I have been...
Kanwaljeet Singla's Weblog
Ins & Outs of hostable web core
Posted
over 5 years ago
by
Kanwaljeet Singla
2
Comments
I started writing an application which uses hostable web core (HWC) functionality of IIS7 and before making it available for download I thought it will be useful to write about HWC in detail. Hostable web core enables processes other than w3wp.exe to...
Kanwaljeet Singla's Weblog
How to read/write administration.config
Posted
over 5 years ago
by
Kanwaljeet Singla
0
Comments
IIS7 configuration system understands machine.config, web.config and applicationHost.config but does not handle administration.config natively. This means reading and writing administration.config is little difficult. If you use AhAdmin directly and call...
Kanwaljeet Singla's Weblog
Working with RSCA using configuration APIs
Posted
over 5 years ago
by
Kanwaljeet Singla
0
Comments
One of the new features in IIS7 in longhorn server enable people to extend existing IIS configuration sections. If you have a schema file in schema folder which defines section already defined in IIS_Schema.xml, IIS configuration system will merge the...
Kanwaljeet Singla's Weblog
Things you can do by piping appcmd commands
Posted
over 5 years ago
by
Kanwaljeet Singla
0
Comments
Check out some of the cool things you can do by piping appcmd commands together in IIS7 at http://blogs.iis.net/ksingla/archive/2007/06/17/things-you-can-do-by-piping-appcmd-commands.aspx . -Kanwal
Kanwaljeet Singla's Weblog
Steps to enable tracing using appcmd
Posted
over 5 years ago
by
Kanwaljeet Singla
0
Comments
See the steps to enable tracing for a site using appcmd at http://blogs.iis.net/ksingla/archive/2007/05/17/steps-to-enable-tracing-using-appcmd.aspx . -Kanwal
Kanwaljeet Singla's Weblog
Client-side redirection using HttpRedirection module
Posted
over 5 years ago
by
Kanwaljeet Singla
0
Comments
HttpRedirection module allows you to set client side redirection using configuration rules. There are not many changes from what IIS6 had but I thought it will be good to revisit its configuration and behavior in IIS7. Read full post at http://blogs...
Kanwaljeet Singla's Weblog
AppcmdUI - appcmd command autocompletion tool
Posted
over 5 years ago
by
Kanwaljeet Singla
0
Comments
Do you always find yourself always using “/?” in appcmd to find what switches you need? Do you always run “appcmd list” commands to see the list of apppools/sites/apps/traces etc before actually running the command? Do you always end up opening schema...
Page 1 of 2 (37 items)
1
2