嗨我的asp.net应用程序有问题。
问题是我可以在我的localhost上执行我的应用程序而没有问题,但如果我在服务器上的IIS7中安装它我会收到错误。我试图找到错误,我在一个区域中选择了错误。
以下是错误消息:
Object reference not set to an instance of an object.
bei linde_wiemann_gastzugang.linde_wiemann_daten.IsGroupMember(String dc, String user, String group) in D:\Programmierung\Visual_Studio_2010\Projekte\lw_gastzugang\lw_gastzugang\lw_daten.cs:Zeile 30.
以下是代码:
public static bool IsGroupMember(string dc, string user, string group)
{
try
{
using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain, dc))
{
bool found = false;
GroupPrincipal p = GroupPrincipal.FindByIdentity(ctx, group);
UserPrincipal u = UserPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, user);
found = p.GetMembers(true).Contains(u); //I think the error is here :(
p.Dispose();
u.Dispose();
return found; // <-- Zeile 30
}
}
catch (Exception ex)
{
EventLogManager.CreateEventLog("Gastzugang",ex.Message + " : " + dc + " - " + user + " - " + group);
return false;
}
我尝试使用硬编码值,它是如何真实的并且与它们一起使用:/ 什么使我不能使用此代码的IIS?
答案 0 :(得分:1)
尝试将p和u放入using子句:
using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain, dc))
{
using (GroupPrincipal p = GroupPrincipal.FindByIdentity(ctx, group))
{
using (UserPrincipal u = UserPrincipal.FindByIdentity(ctx, IdentityType.SamAccountName, user))
{
return p.GetMembers(true).Contains(u);
}
}
}
我认为您所处的区域正处于处置问题。