1

我正在尝试使用 C# 和目录服务进行一些简单的数据检索,但由于某种原因,它不适用于任何 XP 机器。如果我在 Server 2003 机器上运行我的代码,则没有问题。我花了相当多的时间试图找出我在 XP 上是否需要一些可再分发的东西,或者该功能是否根本不存在,但我找到了对在 XP 下具有类似代码的其他开发人员的参考。如果有人有任何经验或建议可以分享,我将不胜感激。

一个让我崩溃的简单代码片段:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.DirectoryServices;

namespace IIS_Site_Query_Tool
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();

            DirectoryEntry W3SVC = new DirectoryEntry("IIS://localhost/w3svc");
            foreach (DirectoryEntry Site in W3SVC.Children)
            {
                //Do some data processing
            }
        }
    }
}

在 XP 下运行它会给我以下错误,HRESULT 为 -2147463168:

System.Runtime.InteropServices.COMException was unhandled
  Message="Unknown error (0x80005000)"
  Source="System.DirectoryServices"
  ErrorCode=-2147463168
  StackTrace:
       at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_IsContainer()
       at System.DirectoryServices.DirectoryEntries.ChildEnumerator..ctor(DirectoryEntry container)
       at System.DirectoryServices.DirectoryEntries.GetEnumerator()
       ...

谷歌搜索错误中的各种信息让我认为这是一个非常通用的 COM 互操作错误,我现在没有想法。任何帮助表示赞赏!

4

2 回答 2

1

根据堆栈跟踪和反射器,看起来对ADsOpenObject的调用正在返回E_ADS_BAD_PATHNAME。此错误表明您提供给 DirectoryEntry 类的路径在当前机器上无效。

如果安装了 IIS,则可能是 IIS 提供程序未正确安装在您的计算机上。

有关详细信息,请参阅此 SO 问题:ADSI will not connect to IIS from XP Workstation

于 2009-02-03T15:37:25.180 回答
0

安装 IIS 修复了它。在编写这个小实用程序之前我没有遇到过 ADSI,所以我没有意识到软件可以安装它们自己的 ADSI 功能块。谢谢您的帮助!

于 2009-02-03T16:34:55.110 回答