Version 2.0.1 beta Bug ReportVersion 2.0.1 beta Bug Report
Old forum URL: forums.lhotka.net/forums/t/153.aspx
Dawn posted on Friday, May 19, 2006
private static bool AlwaysImpersonate
{
get
{
bool result =
(ConfigurationManager.AppSettings["AlwaysImpersonate"] == "true");
return AlwaysImpersonate;
}
}
cause infinite loop. should be
private static bool AlwaysImpersonate
{
get
{
bool result =
(ConfigurationManager.AppSettings["AlwaysImpersonate"] == "true");
return result;
}
}
it's seem only occur when you use remoting,
if use connect string, the code doen's reach this property.
Dawn
RockfordLhotka replied on Saturday, May 20, 2006
Thanks Dawn,
I've fixed this in cvs now, so it will be correct in the actual 2.0.1.
Dawn replied on Sunday, May 21, 2006
Thanks you for this great Framework.
Copyright (c) Marimer LLC