1

几个月前,我在 Azure 网站上部署了一个应用程序,它按预期工作。昨天,在微软发布了一组新功能后,我注意到有一个选项可以从 32 位更改为 64 位。我将网站配置从 32 位更改为 64 位。除非我尝试使用标准 SMTP .NET 库通过 SendGrid 发送电子邮件,否则所有站点都可以正常工作。

这是我得到的例外:

访问被拒绝" source="System" detail=" System.Net.NetworkInformation.NetworkInformationException (0x80004005):访问在 System.Net.NetworkInformation.SystemIPGlobalProperties.GetFixedInfo() 处被拒绝 System.Net.NetworkInformation.SystemIPGlobalProperties.get_FixedInfo()在 System.Net.NetworkInformation.SystemIPGlobalProperties.get_HostName() 在 System.Net.Mail.SmtpClient.Initialize() 在 System.Net.Mail.SmtpClient..ctor()

这是代码:

var toAddress = new MailAddress(to, username);
using (var smtp = new SmtpClient())
using (var message = new MailMessage() {Subject = subject, IsBodyHtml = true})
{
    message.To.Add(toAddress);
    message.AlternateViews.Add(AlternateView.CreateAlternateViewFromString(body, null, MediaTypeNames.Text.Html));
    smtp.Send(message);
}

网络配置:

<system.net>
  <mailSettings>
    <smtp from="xxx@xxx.com">
      <network host="smtp.sendgrid.net" port="587" userName="xxx@azure.com" password="xxxxx" />
    </smtp>
  </mailSettings>
</system.net>

我的开发环境配置为 64 位,应用程序能够发送电子邮件。知道为什么它在 Azure 64 位模式下会失败吗?

谢谢!

4

1 回答 1

0

我遇到了这个问题,发现 web.config 文件和 Azure 应用设置中的值存在冲突。我不确定这些在 Azure 中是如何工作的,因为它们似乎没有直接映射到 web.config 应用程序设置。删除所有 Azure 应用程序设置(并保留 web.config)后,通过 gmail 发送的电子邮件没有问题。

于 2013-07-29T02:59:11.167 回答