2

MVC5 サイトで Postal を使用しようとしています。Web ページをサブサイト、つまりhttp://localhost/Subsiteでホストすると、エラーが発生します

  • 仮想パス「/」は許可されていない別のアプリケーションにマップされています

ControllerContext が作成されているときまでデバッグしましたが、HttpContext が正しく設定されていません。私は Hangfire から Postal を実行しているので、HttpContext.Current は常に null です。Postal は、以下のコードを使用して ContollerContext を作成します。

        ControllerContext CreateControllerContext()
    {
        // A dummy HttpContextBase that is enough to allow the view to be rendered.
        var httpContext = new HttpContextWrapper(
            new HttpContext(
                new HttpRequest("", UrlRoot(), ""),
                new HttpResponse(TextWriter.Null)
            )
        );
        var routeData = new RouteData();
        routeData.Values["controller"] = EmailViewDirectoryName;
        var requestContext = new RequestContext(httpContext, routeData);
        var stubController = new StubController();
        var controllerContext = new ControllerContext(requestContext, stubController);
        stubController.ControllerContext = controllerContext;
        return controllerContext;
    }

    string UrlRoot()
    {
        var httpContext = HttpContext.Current;
        if (httpContext == null)
        {
            return "http://localhost";
        }

        return httpContext.Request.Url.GetLeftPart(UriPartial.Authority) +
               httpContext.Request.ApplicationPath;
    }

サブサイトに基づいてデフォルトの localhost をプルする代わりに、UrlRoot を指定するにはどうすればよいですか?

4

2 に答える 2

1

http://docs.hangfire.io/en/latest/tutorials/send-email.htmlの指示に従ってメールを送信しました。チュートリアルの方法は次のとおりです

    public static void NotifyNewComment(int commentId)
{
// Prepare Postal classes to work outside of ASP.NET request
var viewsPath = Path.GetFullPath(HostingEnvironment.MapPath(@"~/Views/Emails"));
var engines = new ViewEngineCollection();
engines.Add(new FileSystemRazorViewEngine(viewsPath));

var emailService = new EmailService(engines);

// Get comment and send a notification.
using (var db = new MailerDbContext())
{
    var comment = db.Comments.Find(commentId);

    var email = new NewCommentEmail
    {
        To = "yourmail@example.com",
        UserName = comment.UserName,
        Comment = comment.Text
    };

    emailService.Send(email);
}
}

問題は、FileSystemRazorViewEngine が郵便で使用されていないことでした。これを機能させるには、FileSystemRazorViewEngine が利用可能な最初のエンジンであることを確認する必要がありました。それをデフォルトのエンジンにしたくないので、それを削除しました。以下は私の更新された方法です。

    public static void NotifyNewComment(int commentId)
{
// Prepare Postal classes to work outside of ASP.NET request
var viewsPath = Path.GetFullPath(HostingEnvironment.MapPath(@"~/Views/Emails"));
var eng = new FileSystemRazorViewEngine(viewsPath));
ViewEngines.Engines.Insert(0, eng);

var emailService = new EmailService(engines);

// Get comment and send a notification.
using (var db = new MailerDbContext())
{
    var comment = db.Comments.Find(commentId);

    var email = new NewCommentEmail
    {
        To = "yourmail@example.com",
        UserName = comment.UserName,
        Comment = comment.Text
    };

    emailService.Send(email);
    ViewEngines.Engines.RemoveAt(0)
}
}
于 2016-02-15T22:36:42.803 に答える
0

以下は、上記よりもエレガントだと思う別の解決策です。また、バックグラウンド プロセスの実行中に MVC アプリケーションにアクセスすると発生する問題も解決されます。

public static void SendTypedEmailBackground()
{
    try
    {
        var engines = new ViewEngineCollection();
        var viewsPath = Path.GetFullPath(HostingEnvironment.MapPath(@"~/Views/Emails"));

        var eng = new FileSystemRazorViewEngine(viewsPath);
        engines.Add(eng);

        var email = new WebApplication1.Controllers.EmailController.TypedEmail();
        email.Date = DateTime.UtcNow.ToString();
        IEmailService service = new Postal.EmailService(engines);
        service.Send(email);

    }
    catch(Exception ex)
    {
        throw ex;
    }
}
于 2016-04-08T23:15:11.330 に答える