gpt4 book ai didi

c# - Request.ServerVariables 抛出 NullReferenceException

转载 作者:太空狗 更新时间:2023-10-29 20:31:07 27 4
gpt4 key购买 nike

我有一个 MVC3 应用程序,它突然给我一些奇怪的行为。首先是一些背景知识(尽管我会尽量简短)。

在我的 Controller 操作中,我有这段代码:

public ActionResult Grid(ApplicationViewModel search = null)
{
return this.ListView(
this.Find<Entity>(),
this.CreateViewModel,
mixins: new Dictionary<string, Func<EntityViewModel, object>>()
{
{ "Icon", vm => Url.Content("~\Images\entityType.png") },
{ "Link", vm => Url.Action("Details", vm.ControllerId) }
});
}

EntityViewModel CreateViewModel(Entity entity);

// Inherited base class methods
protected IQueryable<T> Find<T>(); // Find T entities in DB

protected ListViewResult<TModel, TViewModel> ListView<TModel, TViewModel>(
IQueriable<TModel> entityQuery,
Func<TModel, TViewModel> materializeViewModel,
IDictionary<string, Func<TViewModel, object>> mixins);

此 Controller 操作隐藏了相当多的复杂逻辑,因为 ListViewResult 是一个自定义结果 ActionResult,专为格式化 JSON 列表而设计。

public class ListViewResult<TModel, TViewModel> :
ActionResult
{
public IQueryable<TModel> ViewData { get; set; }
public Func<TModel, TViewModel> Materialize { get; set; }
public Dictionary<string, Func<TViewModel, object>> Mixins { get; private set; }

...

public override void ExecuteResult(ControllerContext context)
{
// Perform sorting / paging / formatting on IQueryable

...

var viewModels = this.ViewData.Select(this.Materialize);
try
{
// another custom ActionResult for formatting JSON responses
new JsonNetResult()
{
Data = viewModels.ToArray(),
SerializerSettings = new JsonSerializerSettings()
{
ContractResolver = new MixinContractResolver()
{
Mixins = this.Mixins
}
}
}.ExecuteResult(context);
}
catch (Exception e)
{
context.HttpContext.Response.StatusCode = 500;
context.HttpContext.Response.StatusDescription = e.Message;
}
}

private class MixinContractResolver :
CamelCasePropertyNamesContractResolver
{
public Dictionary<string, Func<TViewModel, object>> Mixins { get; set; }

private List<JsonProperty> CreateProperties(Type type, MemberSerialization memberSerialization)
{
List<JsonProperty> props = // get base properties
foreach (var pair in this.Mixins)
{
props.Add(new JsonProperty()
{
Ignored = false,
NullValueHandling = NullValueHandling.Include,
Readable = true,
PropertyName = Inflector.Camelize(pair.Key),
PropertyType = typeof(object),
ValueProvider = new DelegateValueProvider<TViewModel, object>(pair.Value),
Writable = false,
});
}
}
}

private class DelegateValueProvider<T, R> :
Newtonsoft.Json.Serialization.IValueProvider
{
private readonly Func<T, R> func;

public DelegateValueProvider(Func<T, R> func)
{
this.func = func;
}

public object GetValue(object target)
{
return (R)this.func((T)target);
}

public void SetValue(object target, object value)
{
throw new NotSupportedException();
}
}
}

现在,似乎偶尔会在 vm => Url.Content(...)vm => 行抛出一个 NullReferenceException网址.Action(...)。这不会总是发生,但如果我刷新几次,我可以可靠地重现它。

更新

在对源代码进行了一段时间的挖掘之后,我相信我已经发现了有问题的代码。问题似乎与调用 ServerVariables.Get("IIS_WasUrlRewritten")UrlRewriterHelper.WasThisRequestRewritten 方法有关。似乎该方法使用了一个名为 _request 的私有(private)字段,该字段此时在代码中为 null(出于某种原因)。我最好的猜测是,在操作返回和结果执行之间的某个时间,ServerVariables 集合要么丢失它对 _request 的内部引用 - OR -正在重新创建 ServerVariables 集合,但没有对 _request 的有效引用。

我还意识到这可能是 IIS Express 的问题。在 Visual Studio Development Server 下运行时,我无法重现该问题。我更新了标签以反射(reflect)最可能的原因。

最佳答案

我刚刚遇到了与 IIS Express 相同的问题,我发现这是因为我已将 URL 重写扩展安装到 IIS,然后将其卸载,但它在 IIS Express 的 applicationhost.config 文件中留下了一些配置。 (C:\Users\Documents\IISExpress\config\applicationhost.config)

我只是注释掉了该文件中的相关行,终止了 IIS Express 并重新运行,但我没有再看到该问题。

我注释掉的两行在下面的代码段中进行了注释。

<configuration>
...
<system.webServer>
...
<globalModules>

<!--<add name="RewriteModule" image="%IIS_BIN%\rewrite.dll" />-->
...
</globalModules>
</system.webServer>
<location path="" overrideMode="Allow">
<system.webServer>
<modules>
<!--<add name="RewriteModule" />-->
...
</modules>
</system.webServer>
</location>
</configuration>

关于c# - Request.ServerVariables 抛出 NullReferenceException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15147093/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com