Category "hangfire"

Can't access Hangfire Dashboard using Authorization boilerplate code

I can access the Hangfire dashboard from my local environment, but can't access it from a deployed server. Initial searches showed that I needed to enable autho

How to create a cron like job using HangFire at startup?

I have a service class that has a method like public void BackgroundJob(string cronrule) { RecurringJob.AddOrUpdate("somejob", () => FetchCallHistoryAsyn

DotNet5 Hangfire microservice running on multiple servers

We have a microservice having hangfire scheduler deployed in multiple server environment. Currently the hangfire gets triggers from all 3 servers simultaneously

Hangfire RecurringJob "does not contain a method with signature"

I am using Hangfire configured in my WebAPI .NET Framework 4.7.2 application. I am configuring it inside the Global.asax.cs My dependency injection chain is con

Hangfire Not Getting Configurations when I try to run Test Case for the method containing hangfire activation .net Core REST Web API

public async Task<IActionResult> SendOrders() { try { RecurringJob.AddOrUpdate("powerfuljob", () => _lab.SendOrders("

HangFire dashboard not displaying in PROD

I am using HangFire to schedule jobs but when I deployed to PROD, the website/hangfire url is not working. I am getting The system cannot find the file specifie

hangfire Could not load file or assembly 'DynamicProxyGenAssembly2

I have setup Hangfire as below: var t = IocManager.Resolve<TestJob>(); RecurringJob.AddOrUpdate("sendDailyEmail",() => t.sendEmail(), Cron.Daily);