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

时间:2018-03-29 11:12:34

标签: c# iis model-view-controller hangfire postal

我已经尝试过将其他解决方案发布到stackoverflow并且发现没有可行的,这是我的问题。

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

    NSAttributedString *attribute = [[NSAttributedString alloc] initWithData:[self.message dataUsingEncoding:NSUTF8StringEncoding] options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: [NSNumber numberWithInt:NSUTF8StringEncoding]} documentAttributes:nil error:nil];
lbl.attributedText = attribute;

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

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

当我使用'ViewName'方法时,它会在我的本地机器上返回'〜/ Views / Emails'。

Send()方法内部:

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();
        }

IIS中的应用程序结构:

服务器>网站>默认>所有MyApplication

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

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

enter image description here

解决方案:

在“StructureMapDependencyScope”类中编辑以下代码:

在:

StructureMapDependencyScope.get_CurrentNestedContainer() 

后:

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);
            }
        }

3 个答案:

答案 0 :(得分:1)

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

有关如何实现此目的的详细信息,请参阅此问题的答案。 Using Postal and Hangfire in Subsite

答案 1 :(得分:0)

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

而不是使用

'~/Views/Emails'

试试这个

'./Views/Emails'

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

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

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

希望这会有所帮助......

答案 2 :(得分:0)

请尝试使用MapPath,如下所示:

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