嗨,我的 asp.net 应用程序有问题。
问题是我可以毫无问题地在我的本地主机上执行我的应用程序,但是如果我将它安装在服务器上的 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?