虚拟路径“/”映射到另一个应用程序,这是不允许的。 MVC 和 Hangfire

The virtual path '/' maps to another application, which is not allowed. MVC and Hangfire

我尝试了发布到 Whosebug 的其他解决方案,发现 none 可行,这是我的问题。

所以我想通过我的 MVC 应用程序使用 hangfire 发送电子邮件,这在我的本地计算机上有效,但是当我将它上传到远程服务器时,我在 hangfire 上收到以下错误:

The virtual path '/' maps to another application, which is not allowed

这是我用来发送电子邮件的代码:

foreach (var EmailEntry in EmailEntries)
        {
            var email = new EmailTemplateModel
            {
                ViewName = "EmailTemplateModel",
                FromAddress = "donotreply@emailservice.com",
                EmailAddress = EmailEntry,
                Subject = "Task Report",
                Date = Dates,
                Task = DatesAndTasks,
            };
            email.Send();
        }

当我使用 'ViewName' 方法时,它 returns '~/Views/Emails' 在我的本地机器上。

Send() 方法内部:

// Summary:
        //     Convenience method that sends this email via a default EmailService.
        public void Send();

IIS 中的应用程序结构:

服务器 > 站点 > 默认 > MyApplication

JodyL 的以下解决方案提出的问题:

StructureMapDependencyScope.get_CurrentNestedContainer() 

解法:

在 'StructureMapDependencyScope' class 中编辑了以下代码:

之前:

public IContainer CurrentNestedContainer {
            get {
                return (IContainer)HttpContext.Items[NestedContainerKey];
            }
            set {
                HttpContext.Items[NestedContainerKey] = value;
            }
        }

之后:

public IContainer CurrentNestedContainer {
            get {
                IContainer container = null;
                if (HttpContext != null)
                    container = (IContainer)HttpContext.Items[NestedContainerKey];
                return container;
            }
            set {
                HttpContext.Items[NestedContainerKey] = value;
            }
        } 

之前:

private HttpContextBase HttpContext {
            get {
                var ctx = Container.TryGetInstance<HttpContextBase>();
                return ctx ?? new HttpContextWrapper(System.Web.HttpContext.Current);
            }
        }

之后:

private HttpContextBase HttpContext {
            get {
                var ctx = Container.TryGetInstance<HttpContextBase>();
                if (ctx == null && System.Web.HttpContext.Current == null)
                    return null;

                return ctx ?? new HttpContextWrapper(System.Web.HttpContext.Current);
            }
        } 

很可能问题与IIS有关,而不是Hangfire等问题。所以,请您尝试使用with dot (.),如下所示:

而不是使用

'~/Views/Emails'

试试这个

'./Views/Emails'

同样,您在显示图片时也可能会遇到一些问题,此时您应该进行以下更改:

~/../Content/images/image.png

./../Content/images/image.png

希望这对您有所帮助...

请尝试使用MapPath如下:

var path = HostingEnvironment.MapPath(@"~/Views/Emails");

这个问题可能是因为在使用Hangfire 时HTTPContext 对Postal 不可用。如果 HTTPContext.Current 为空,Postal 使用 http://localhost 作为 URL,它不会映射到您的应用程序位置。为了解决这个问题,您可以在发送电子邮件时使用 FileSystemRazorViewEngine 并将其传递给您的电子邮件模板的路径。

有关如何实现此目的的详细信息,请参阅此问题的答案。