最先我需要在IIS下创建虚拟目录,用的是DirecotryEntry这个类,怎么也不能,总会报![System.Runtime.InteropServices.COMException]{"未知错误(0x80005000)"}
这个错误。
private static void TestDirectoryEntry() { try { string path = "IIsWebService://" + System.Environment.MachineName + "/W3SVC"; System.Collections.ArrayList webSite = new System.Collections.ArrayList(); DirectoryEntry iis = new DirectoryEntry("IIS://localhost/W3SVC"); if (iis != null) { foreach (DirectoryEntry entry in iis.Children) { if (string.Compare(entry.SchemaClassName, "IIsWebServer") == 0) { Console.WriteLine(entry.Name); Console.WriteLine(entry.Properties["ServerComment"].Value.ToString()); Console.WriteLine(entry.Path); } Console.WriteLine(); } } } catch (Exception ex) { Console.WriteLine(ex.Message); Console.WriteLine(ex.StackTrace); } }
后来疯狂地找原因
第一步,找机子上安全方面的问题。我IIS7是装在Windows server2008上的。我取消了系统的UAC。并用“以管理员身份”运行的该程序。结果还是不行。
第二步,在网上找有没有人跟我碰到相同的问题。果然!很多人都有,网上给的解决方案是:
The IIS Metabase and IIS6 Configuration Compatibility is not automatically installed when you enable the Web Server role in Windows 2008 Server. If you enable this feature, your old DirectoryServices code in .NET should work like it used to.
需要安装 IIS6 Metabase 兼容性组件
用了这种方案果然成功了!但事情并没有结束。
第三步:找原因,为什么IIS7 不能用这种方法!
功夫不负有心人!
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索虚拟目录
, collections
, system
, entry
, console
, COMException
WriteLine
c、在、在c语言中是什么意思、在coreldraw、在c语言,以便于您获取更多的相关知识。