///***********************************************************
///************** IIS控制管理类 1.0 Beta **************
///************** Author: 飞刀 **************
///************** http://www.aspcn.com **************
///************** feidao@aspcn.com **************
///************** 2002.05.25 世界杯前6 天 **************
///***********************************************************
using System;
using System.Data;
using System.DirectoryServices;
using System.Collections;
namespace Aspcn.Management
{
/// <summary>
/// IISManager 的摘要说明。
/// </summary>
public class IISManager
{
//定义需要使用的
private string _server,_website;
private VirtualDirectories _virdirs;
protected System.DirectoryServices.DirectoryEntry rootfolder;
private bool _batchflag;
public IISManager()
{
    //默认情况下使用localhost,即访问本地机
    _server = "localhost";
    _website = "1";
    _batchflag = false;
}
public IISManager(string strServer)
{
    _server = strServer;
    _website = "1"; 
    _batchflag = false;
}
/// <summary>
/// 定义公共属性
/// </summary>

//Server属性定义访问机器的名字,可以是IP与计算名
public string Server
{
    get{ return _server;}
    set{ _server = value;}
}
//WebSite属性定义,为一数字,为方便,使用string 
//一般来说第一台主机为1,第二台主机为2,依次类推
public string WebSite
{
    get{ return _website; }
    set{ _website = value; }
}

//虚拟目录的名字
public VirtualDirectories VirDirs
{
    get{ return _virdirs; }
    set{ _virdirs = value;}
}
///<summary>
///定义公共方法
///</summary>

//连接服务器
public void Connect()
{
    ConnectToServer();
}
//为方便重载
public void Connect(string strServer)
{
    _server = strServer;
    ConnectToServer();
}
//为方便重载
public void Connect(string strServer,string strWebSite)
{
    _server = strServer;
    _website = strWebSite;
    ConnectToServer();
}
//判断是否存这个虚拟目录
public bool Exists(string strVirdir)
{
    return _virdirs.Contains(strVirdir);
}
//添加一个虚拟目录
public void Create(VirtualDirectory newdir)
{
    string strPath = "IIS://" + _server + "/W3SVC/" + _website + "/ROOT/" + newdir.Name;
    if(!_virdirs.Contains(newdir.Name) || _batchflag )
    {
        try
        {
            //加入到ROOT的Children集合中去
            DirectoryEntry newVirDir = rootfolder.Children.Add(newdir.Name,"IIsWebVirtualDir");
            newVirDir.Invoke("AppCreate",true);
            newVirDir.CommitChanges();
            rootfolder.CommitChanges();
            //然后更新数据
            UpdateDirInfo(newVirDir,newdir);
        }
        catch(Exception ee)
        {
            throw new Exception(ee.ToString());
        }
    }
    else
    {
        throw new Exception("This virtual directory is already exist.");
    }
}
//得到一个虚拟目录
public VirtualDirectory GetVirDir(string strVirdir)
{
    VirtualDirectory tmp = null;
    if(_virdirs.Contains(strVirdir))
    {
        tmp = _virdirs.Find(strVirdir);
        ((VirtualDirectory)_virdirs[strVirdir]).flag = 2;
    }
    else
    {
        throw new Exception("This virtual directory is not exists");
    }
    return tmp;
}

//更新一个虚拟目录
public void Update(VirtualDirectory dir)
{
    //判断需要更改的虚拟目录是否存在
    if(_virdirs.Contains(dir.Name))
    {
        DirectoryEntry ode = rootfolder.Children.Find(dir.Name,"IIsWebVirtualDir");
        UpdateDirInfo(ode,dir);
    }
    else
    {
        throw new Exception("This virtual directory is not exists.");
    }
}
 

//删除一个虚拟目录
public void Delete(string strVirdir)
{
    if(_virdirs.Contains(strVirdir))
    {
        object[] paras = new object[2];
        paras[0] = "IIsWebVirtualDir"; //表示操作的是虚拟目录
        paras[1] = strVirdir;
        rootfolder.Invoke("Delete",paras);
        rootfolder.CommitChanges();
    }
    else
    {
        throw new Exception("Can't delete " + strVirdir + ",because it isn't exists.");
    }
}
//批量更新
public void UpdateBatch()
{
    BatchUpdate(_virdirs);
}
//重载一个:-)
public void UpdateBatch(VirtualDirectories vds)
{
    BatchUpdate(vds);
}
 
///<summary>
///私有方法
///</summary>

//连接服务器
private void ConnectToServer()
{
    string strPath = "IIS://" + _server + "/W3SVC/" + _website +"/ROOT";
    try
    {
        this.rootfolder = new DirectoryEntry(strPath);
        _virdirs = GetVirDirs(this.rootfolder.Children);
    } 
    catch(Exception e)
    {
        throw new Exception("Can't connect to the server ["+ _server +"] ...",e);
    }
}
//执行批量更新
private void BatchUpdate(VirtualDirectories vds)
{
    _batchflag = true;
    foreach(object item in vds.Values)
    {
        VirtualDirectory vd = (VirtualDirectory)item;
        switch(vd.flag)
        {
            case 0:
                break;
            case 1:
                Create(vd);
                break;
            case 2:
                Update(vd);
                break;
        }
    }
    _batchflag = false;
}
//更新东东
private void UpdateDirInfo(DirectoryEntry de,VirtualDirectory vd)
{
    de.Properties["AnonymousUserName"][0] = vd.AnonymousUserName;
    de.Properties["AnonymousUserPass"][0] = vd.AnonymousUserPass;
    de.Properties["AccessRead"][0] = vd.AccessRead;
    de.Properties["AccessExecute"][0] = vd.AccessExecute;
    de.Properties["AccessWrite"][0] = vd.AccessWrite;
    de.Properties["AuthBasic"][0] = vd.AuthBasic;
    de.Properties["AuthNTLM"][0] = vd.AuthNTLM;
    de.Properties["ContentIndexed"][0] = vd.ContentIndexed;
    de.Properties["EnableDefaultDoc"][0] = vd.EnableDefaultDoc;
    de.Properties["EnableDirBrowsing"][0] = vd.EnableDirBrowsing;
    de.Properties["AccessSSL"][0] = vd.AccessSSL;
    de.Properties["AccessScript"][0] = vd.AccessScript;
    de.Properties["DefaultDoc"][0] = vd.DefaultDoc;
    de.Properties["Path"][0] = vd.Path;
    de.CommitChanges();
}

//获取虚拟目录集合
private VirtualDirectories GetVirDirs(DirectoryEntries des)
{
    VirtualDirectories tmpdirs = new VirtualDirectories();
    foreach(DirectoryEntry de in des)
    {
        if(de.SchemaClassName == "IIsWebVirtualDir")
        {
            VirtualDirectory vd = new VirtualDirectory();
            vd.Name = de.Name;
            vd.AccessRead = (bool)de.Properties["AccessRead"][0];
            vd.AccessExecute = (bool)de.Properties["AccessExecute"][0];
            vd.AccessWrite = (bool)de.Properties["AccessWrite"][0];
            vd.AnonymousUserName = (string)de.Properties["AnonymousUserName"][0];
            vd.AnonymousUserPass = (string)de.Properties["AnonymousUserName"][0];
            vd.AuthBasic = (bool)de.Properties["AuthBasic"][0];
            vd.AuthNTLM = (bool)de.Properties["AuthNTLM"][0];
            vd.ContentIndexed = (bool)de.Properties["ContentIndexed"][0];
            vd.EnableDefaultDoc = (bool)de.Properties["EnableDefaultDoc"][0];
            vd.EnableDirBrowsing = (bool)de.Properties["EnableDirBrowsing"][0];
            vd.AccessSSL = (bool)de.Properties["AccessSSL"][0];
            vd.AccessScript = (bool)de.Properties["AccessScript"][0];
            vd.Path = (string)de.Properties["Path"][0];
            vd.flag = 0;
            vd.DefaultDoc = (string)de.Properties["DefaultDoc"][0];
            tmpdirs.Add(vd.Name,vd);
         }
    }
    return tmpdirs;
}

}
/// <summary>
/// VirtualDirectory类
/// </summary>
public class VirtualDirectory
{
    private bool _read,_execute,_script,_ssl,_write,_authbasic,_authntlm,_indexed,_endirbrow,_endefaultdoc;
    private string _ausername,_auserpass,_name,_path;
    private int _flag;
    private string _defaultdoc;
    /// <summary>
    /// 构造函数
    /// </summary>
    public VirtualDirectory()
    {
        SetValue();
    }
    public VirtualDirectory(string strVirDirName)
    {
        _name = strVirDirName;
        SetValue();
    }
    private void SetValue()
    {
        _read = true;_execute = false;_script = false;_ssl= false;_write=false;_authbasic=false;_authntlm=false;
        _indexed = false;_endirbrow=false;_endefaultdoc = false;
        _flag = 1;
        _defaultdoc = "default.htm,default.aspx,default.asp,index.htm";
        _path = "C:\\";
        _ausername = "";_auserpass ="";_name="";
    }
    ///<summary>
    ///定义属性,IISVirtualDir太多属性了
    ///我只搞了比较重要的一些,其它的大伙需要的自个加吧。
    ///</summary>

public int flag
    {
        get{ return _flag;}
        set{ _flag = value;}
    }
    public bool AccessRead
    {
        get{ return _read;}
        set{ _read = value;}
    }
    public bool AccessWrite
    {
        get{ return _write;}
        set{ _write = value;}
    }
    public bool AccessExecute
    {
        get{ return _execute;}
        set{ _execute = value;}
    }
    public bool AccessSSL
    {
        get{ return _ssl;}
        set{ _ssl = value;}
    }
    public bool AccessScript
    {
        get{ return _script;}
        set{ _script = value;}
    }
    public bool AuthBasic
    {
        get{ return _authbasic;}
        set{ _authbasic = value;}
    }
    public bool AuthNTLM
    {
        get{ return _authntlm;}
        set{ _authntlm = value;}
    }
    public bool ContentIndexed
    {
        get{ return _indexed;}
        set{ _indexed = value;}
    }
    public bool EnableDirBrowsing
    {
        get{ return _endirbrow;}
        set{ _endirbrow = value;}
    }
    public bool EnableDefaultDoc
    {
        get{ return _endefaultdoc;}
        set{ _endefaultdoc = value;}
    }
    public string Name
    {
        get{ return _name;}
        set{ _name = value;}
    }
    public string Path
    {
        get{ return _path;}
        set{ _path = value;}
    }
    public string DefaultDoc
    {
        get{ return _defaultdoc;}
        set{ _defaultdoc = value;}
    }
    public string AnonymousUserName
    {
        get{ return _ausername;}
        set{ _ausername = value;}
    }
    public string AnonymousUserPass
    {
        get{ return _auserpass;}
        set{ _auserpass = value;}
    }
}
/// <summary>
/// 集合VirtualDirectories
/// </summary>

public class VirtualDirectories : System.Collections.Hashtable
{
    public VirtualDirectories()
    {
    }
    //添加新的方法 
    public VirtualDirectory Find(string strName)
    {
        return (VirtualDirectory)this[strName];
    }
}
}

原文地址:http://www.cnblogs.com/wayfarer/articles/25572.html

[转载].Net中如何操作IIS(源代码)的更多相关文章

  1. 转载:C# Word操作实现代码

    转载自:http://www.jb51.net/article/17770.htm 在VS2008平台下,引用.net-Microsoft.Office.Interop.Word.12,这样就可以在程 ...

  2. 使用Jquery+EasyUI项目开发情况的框架是中评---员工管理源代码共享

    使用Jquery+EasyUI 进行框架项目开发案例解说之中的一个 员工管理源代码分享 在開始解说之前,我们先来看一下什么是Jquery EasyUI?jQuery EasyUI是一组基于jQuery ...

  3. C#操作IIS服务

    进入正题:先从使用角度来讲解IIS操作,然后再深入到具体的IIS服务底层原理. [1]前提掌握要点: (1).IIS到目前经历了四个版本分别为 IIS4.0 IIS5.0 IIS6.0 IIS7.0, ...

  4. VS·调试过程中某个操作导致调试突然退出之解决方案

    阅文时长 | 0.11分钟 字数统计 | 232字符 主要内容 | 1.引言&背景 2.声明与参考资料 『VS·调试过程中某个操作导致调试突然退出之解决方案』 编写人 | SCscHero 编 ...

  5. C#操作IIS程序池及站点的创建配置

    最近在做一个WEB程序的安装包:对一些操作IIS进行一个简单的总结:主要包括对IIS进行站点的新建以及新建站点的NET版本的选择,还有针对IIS7程序池的托管模式以及版本的操作:首先要对Microso ...

  6. Global.asax中的操作数据库代码无法执行

    本人最近在做一个基于Access数据库的Web应用程序,为了实现一个定时更新数据库的需求,我在Global.asax中的Application_Start函数里写了个计时器, void Applica ...

  7. ACCESS中类型操作(限制、转换)

    ACCESS如何保留两位小数 1.可以通过修改表结构中字段的“小数位数”即可. 2.可以通过“更新查询”,将所有该字段的值更新为round(字段名,2) ACCESS如何转换类型 每个函数都可以强制将 ...

  8. C#操作IIS完整解析

    原文:C#操作IIS完整解析 最近在为公司实施做了一个工具,Silverlight部署早已是轻车熟路, 但对于非技术人员来说却很是头疼的一件事,当到现场实施碰到客户情况也各不相同, 急需一个类似系统备 ...

  9. vue 中 直接操作 cookie 及 如何使用工具 js-cookie

    转载:https://www.cnblogs.com/xiangsj/p/9030648.html vue 中直接操作 cookie 以下3种操作方式 set: function (name, val ...

随机推荐

  1. 让无线网卡同时工作在 AP 和 STA 模式

    这个帖子里的方法有点过时了,不推荐继续使用. 有的时候会碰到这么一种情况,带着电脑和手机出去蹭网,无奈只有一个账号,手机上了电脑就没得用了,电脑用了手机就上不了网.如果能用电脑连接 Wifi 然后再开 ...

  2. github果然强大

    github果然强大,在idea里写好,可以直接提交到github,在哪台电脑都可以看源码了,手机也可以看 https://github.com/gaojinhua

  3. sqlsever 关于索引

    索引: 在sqlserver中,存储的单位最小是页,页是不可再分的B树:初衷是减少对磁盘的扫描次数,如果一个表或者索引没有使用B树(对于没有聚集索引的表是使用 Heap 堆进行存储的),那么查找一个数 ...

  4. php 中cookie和session的用法比较

    1.cookie数据存放在客户的浏览器上,session数据放在服务器上. 2.cookie不是很安全,别人可以分析存放在本地的COOKIE并进行COOKIE欺骗,考虑到安全应当使用session. ...

  5. Linux 最常用命令小结

    1. 文件共享 1).将windows 系统下的文件夹共享到linux的方法: 安装filezilla,设置连接linux 服务器.将文件上传. 2).mRemote 机器连接管理 2. 文件管理命令 ...

  6. 前端面试题和setTimeout异步

    var len=4; while(len--){ setTimeout(function(){ alert(len); },0); alert(len); } 这个题目的答案我先说出来,读者请仔细考虑 ...

  7. less使用001

    官网: http://lesscss.org/ . 中文文档直接百度搜索less,能找到N多网站提供的支持. less-gui,使用国产的koala, 其中文帮助文档地址. 拖拽一个目录到考拉就新建了 ...

  8. spring3.2以后的cglib的jar包问题

    关于cglib的jar包官方的文档上有这么一段话 Note For this dynamic subclassing to work, the class that the Spring contai ...

  9. 韩顺平细说Servlet视频系列之tom相关内容

    韩顺平细说Servlet视频系列之tom相关内容 tomcat部署项目操作(注意:6.0版本以后的支持该操作,5.x版本需要另外配置?待验证!) 项目发布到tomcat的webapps文件下,然后启动 ...

  10. centos mail 不能发邮件

    http://alfred-long.iteye.com/blog/1836488 (参考) 最近centos 6.4突然不能发邮件了, 直接用 mail命令测试也不收不到邮件 以下参考大侠们的经验后 ...