使用 LDAP 绑定到 Moniker 无法在 Windows XP 32 位上运行
我有以下代码:
<appSettings>
<add key="rootDN" value="LDAP://[The rest of the path]"/>
</appSettings>
string rootDN = System.Configuration.ConfigurationManager.AppSettings["rootDN"];
object ou = Marshal.BindToMoniker(rootDN);
这会产生错误:
未处理的异常: System.Runtime.InteropServices.COMException (0x80072020): n 操作错误 发生。 (HRESULT 的异常: 0x80072020)在 System.Runtime.InteropServices.Marshal.MkParseDisplayName(IBindCtx pbc, String szUserName, UInt32& pchEaten,IMoniker& ppmk)在 System.Runtime.InteropServices.Marshal.BindToMoniker(字符串 昵称)位于 LDAP_CreateGroup.Program.Main(字符串[] 参数)
在 Windows Server 2008 上工作正常,但在 XP 上不工作。不幸的是需要它在 XP 上运行。
I have the following code:
<appSettings>
<add key="rootDN" value="LDAP://[The rest of the path]"/>
</appSettings>
string rootDN = System.Configuration.ConfigurationManager.AppSettings["rootDN"];
object ou = Marshal.BindToMoniker(rootDN);
This is producing an error:
Unhandled Exception:
System.Runtime.InteropServices.COMException
(0x80072020): A n operations error
occurred. (Exception from HRESULT:
0x80072020) at
System.Runtime.InteropServices.Marshal.MkParseDisplayName(IBindCtx
pbc, St ring szUserName, UInt32&
pchEaten, IMoniker& ppmk) at
System.Runtime.InteropServices.Marshal.BindToMoniker(String
monikerName) at
LDAP_CreateGroup.Program.Main(String[]
args)
Works fine on Windows Server 2008, not working on XP. Unfortunately need this to run on XP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必须以域用户身份登录,以用户身份运行不起作用。
Must be logged on as domain user, run as user didn't work.