Pages
Categories
Archives
- October 2011 (1)
- August 2011 (1)
- July 2011 (1)
- May 2011 (1)
- February 2011 (3)
- January 2011 (2)
- December 2010 (4)
Meta
IronPython Archive
Programmatic IIS configuration with IronPython – Helper Module
The last couple of posts I have made have shown some configurations you can make to IIS programmatically. In this post I want to tie some things together into a module so I have access to this simple helper façade easily and quickly. The functions which I have included in this module...
Read More Programmatic IIS configuration with IronPython – Adding Applications
In a previous post I showed how to remove applications using IronPython and the Microsoft.Web.Administration namespace. In this post I want to show how you add applications to a website. In the previous post also I covered all the necessary import and reference plumbing required to get going so I...
Read More Programmatic IIS configuration with IronPython – Removing Applications
In the place where I work, we often have to change the path to our IIS Applications when switching between branches for example. In IIS 6 there was a useful script called adsutil.vbs which allowed for CRUD methods to configure sites, applications and virtual directories. In IIS7 I have seen...
Read More Understanding imports with folders in Python and IronPython
When you are getting started in Python and IronPython it might not be immediately obvious how you import modules from within folder structures. Namespaces are great as you will also read if you typed the following into the console:
import this
One of the statements is as follows:
Namespaces are one honking great...
Read More