使用 HttpContext 的 Web 方法返回空引用异常

发布于 2024-10-04 00:48:03 字数 592 浏览 3 评论 0原文

这是一个通过 .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.
  1. 什么条件 httpcontext 将为 null?

  2. 为什么由于空引用异常导致方法失败?

这些和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.
  1. What conditions httpcontext will be null?

  2. Why is it failing the method due to null reference exception?

Does these have anything to do with IIS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文