【发布时间】:2012-08-13 03:19:08
【问题描述】:
这是“在本地工作,不能在服务器上工作”的帖子之一。
我有一个发送电子邮件的简单联系表。在服务器上,我得到以下异常:
Security Exception
Description: The application attempted to perform an operation not allowed
by the security policy. To grant this application the required permission
please contact your system administrator or change the application's trust
level in the configuration file.
Exception Details: System.Security.SecurityException: Request for the
permission of type 'System.Net.Mail.SmtpPermission, System, Version=4.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
Source Error:
[No relevant source lines]
主机无法为我提供代码或 SMTP 客户端,用于从 Web 服务器发送 SMTP 消息。所以我需要找到一种替代方式来发送它们,这将使我的网络服务器对严格的安全策略感到满意。
这里是源代码:
private void SendMessage (string returnAddress, string textSubject, string messageText)
{
config config = new config();
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add(config.toEmailAddress);
message.Subject = "Website Contact Form Message: " + textSubject;
message.From = new System.Net.Mail.MailAddress(returnAddress);
message.Body = messageText;
message.IsBodyHtml = false;
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("smtp.naturalcarpetcompany.com");
smtp.Credentials = new System.Net.NetworkCredential(config.fromEmailAddress, config.fromEmailPassword);
smtp.Port = 587;
try
{
smtp.Send(message);
}
catch (Exception ex)
{
Exception ex2 = ex;
string errorMessage = string.Empty;
while (ex2 != null)
{
errorMessage += ex2.ToString();
ex2 = ex2.InnerException;
}
HttpContext.Current.Response.Write(errorMessage);
}
}
【问题讨论】:
-
这是一个代码访问问题。看来您的主机已专门剥夺了您访问 SMTP 所需的权限。
-
@vcsjones 是的,有没有办法发送不需要高权限级别的 smtp?
-
很难说不知道该主机还限制了您做什么。这故意删除了该访问权限,因此他们可能也删除了这样做的权限。这是您可能需要与托管服务一起使用的东西。
-
他们将信任级别设置为低或中。不确定是哪个。他们不能给我更高的级别,因为它是共享服务器。