当前位置:  开发笔记 > 后端 > 正文

HttpRequest.ServerVariables在带有IIS7的WCF中抛出ArgumentException

如何解决《HttpRequest.ServerVariables在带有IIS7的WCF中抛出ArgumentException》经验,为你挑选了1个好方法。

我们在IIS7中运行了一个WCF(.NET 3.5 SP1)服务,该服务被标记为允许ASP.NET兼容模式,因此我们可以访问HttpContext.Current:

[AspNetCompatibilityRequirements(
    RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]

但是,当尝试访问任何服务器变量时,它会抛出ArgumentException:

System.ArgumentException: Value does not fall within the expected range. 
    at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) 
    at System.Web.Hosting.IIS7WorkerRequest.GetServerVariableInternal(String name) 
    at System.Web.Hosting.IIS7WorkerRequest.GetServerVariable(String name) 
    at System.Web.Hosting.IIS7WorkerRequest.GetRemoteAddress() 
    at System.Web.HttpRequest.get_UserHostAddress() 

例如,以下任何行都会抛出此异常:

ha = HttpContext.Current.Request.UserHostAddress;
ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
us = HttpContext.Current.Request.UserAgent;

这似乎是内部框架调用的结果,这意味着调用代码没有错.

据推测,我们的配置中有一些东西导致了这个问题,但我不知道是什么.有任何想法吗?或者任何想法我如何能够检索这三位数据(遗憾的是,它们似乎没有被WCF本身暴露).



1> Greg Beech..:

原来问题是操作标有...

[OperationContract(IsOneWay = true)]

...并且单向操作中的服务器变量不可用.

羞耻的例外并没有说出那种效果......

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有