Dashboard http://localhost:9000/hangfire works fine, but http://localhost:9000/hangfire/jobs/enqueued (= click on “Jobs”) returns HTTP 500 - Internal Server Error. Other tabs (“Retries”, “Recurring jobs”, “Servers”) work fine.
I use HangFire.Core version 1.5.6 in a self-hosted exe application.
Program.cs, Main:
GlobalConfiguration.Configuration .UseSqlServerStorage("Server=(local);Database=hangfire;user id=...;password=...") .UseMsmqQueues(@".\private$\hangfire-{0}"); using (WebApp.Start<OwinStartup>("http://localhost:9000/")) // for dashboard { Console.ReadLine(); }
OwinStartup.cs:
public class OwinStartup { public void Configuration(IAppBuilder app) { app.UseHangfireDashboard(); } }