使用 HttpContext 的 Web 方法返回空引用异常
这是一个通过 .asmx 页面运行的 Web 方法:
快速摘要:
[WebMethod]
Method Name
{
string Port=HttpContext.Current.Request.ServerVariables["SERVER_PORT"];
if (Port == null || Port == "80" || Port == "443")
{
Port = "";
}
else
{
Port = ":" + Port;
}
}
当我测试此方法时,我收到异常
HttpContext.Current.Request.ServerVariables["SERVER_PORT"] 'System.Web.HttpContext.Current' is null.
什么条件 httpcontext 将为 null?
为什么由于空引用异常导致方法失败?
这些和IIS有什么关系吗?
It is a web method running via .asmx page:
Quick summary:
[WebMethod]
Method Name
{
string Port=HttpContext.Current.Request.ServerVariables["SERVER_PORT"];
if (Port == null || Port == "80" || Port == "443")
{
Port = "";
}
else
{
Port = ":" + Port;
}
}
When i test this method, i get an exception
HttpContext.Current.Request.ServerVariables["SERVER_PORT"] 'System.Web.HttpContext.Current' is null.
What conditions httpcontext will be null?
Why is it failing the method due to null reference exception?
Does these have anything to do with IIS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论