Questions tagged [azure-webjobs-triggered]

81 questions
5
votes
2 answers

Azure WebJob not sending SignalR message to Azure SignalR service

I have an Asp.Net Core Api 3.1 and an Azure WebJob, both running on an Azure App Service. Both of them have a need to send notifications and neither will be receiving messages. To break it down: I have a single instance of the Azure SignalR Service…
5
votes
2 answers

Scheduled .NET WebJob V3 example

I've upgraded my .NET (not .NET Core) WebJob from V2 (which was working fine) to V3. I'm having trouble getting it to run. I just want the webjob to call a function I've written according to this CRON schedule: "0 0 8,10,12,14,16,18,20 * * *". The…
nmit026
  • 3,024
  • 2
  • 27
  • 53
2
votes
2 answers

Dependency injection of EF context in WebJobApp

I'm trying to create my first webjobapp that requires the use of Entity Framework. I am trying to inject my context into the builder of the app, but I'm getting an error: Cannot bind parameter 'db' to type ApplicationDbContext. Make sure the…
2
votes
1 answer

Getting Notification when triggered Azure web jobs Fails

I am new to Azure web jobs, I am creating a console application of .net framework for the webjob(triggered). I have noticed that the sometimes web job is failing because "SCM_COMMAND_IDLE_TIMEOUT". So Is there a way to get alert when these type of…
Krishna089
  • 101
  • 20
2
votes
1 answer

System.Runtime.Serialization.SerializationException while receiving message from Azure Service Bus

I have two separate applications one .Net Core other in .Net Framework. I have created a service bus sender in .Net core console application. It is sending message to service bus using latest Microsoft.Azure.Webjobs and…
2
votes
1 answer

Azure WebJobs not listing in Azure Kudo Portal

I'm trying to edit my configuration app.config from the Azure WebJob. I currently have 2 web jobs that configured to run as on-demand (Cron Scheduled) My Jobs are working perfectly fine. But When I try to view the source code of my web jobs through…
Jayendran
  • 9,638
  • 8
  • 60
  • 103
2
votes
1 answer

Multiple Azure Webjobs

I have this Azure App where I am hosting a Webjob. Whenever I start the app, it runs fine with just 1 Webjob and everything works fine. But as time goes by, out of nowhere, there appears another webjob which is the exact copy of the required…
2
votes
0 answers

Instantiate IAsyncCollectors to manually invoke webjob function

Is it possible to invoke a webjobs function, whose arguments consist of IAsyncCollectors decorated by e.g. [Queue] or [EventHub] attributes, passing in the same type of collectors to the function as the webjobs SDK would? For example, we want to…
2
votes
1 answer

Azure Scheduled Web job is triggering twice sometimes

We have an Azure WebJob which is scheduled to run at 8:00 AM UTC daily(CRON - 0 00 08 * * *).Most of the days it is triggering correctly but on some days it is triggering twice (Second run is occurring ~10 secs after first run ). I can see in the…
2
votes
1 answer

Why does my Time trigger webjob keep running?

I have a Webjob that I want to be time triggered: public class ArchiveFunctions { private readonly IOrderArchiver _orderArchiver; public ArchiveFunctions(IOrderArchiver orderArchiver) { _orderArchiver = orderArchiver; } …
Tom
  • 944
  • 1
  • 14
  • 26
2
votes
1 answer

Is it possible to publish a Webjob as "Triggered" type as well as "Continuous" type

I have a console application that has been converted to a Webjob. There are a lot of functionalities in the webjob that is required to be run once a every night(midnight). However, there is also a specific need that the same Webjob should be…
akd
  • 6,538
  • 16
  • 70
  • 112
1
vote
1 answer

How to start and stop schedule webjob using asp .net c#

I have created a trigger web job for some web application call, but I got a requirement that trigger job customer should be able to start or stop when want, and can also schedule. I have done the schedule part using webjobs rest API but I am not…
Sandy
  • 57
  • 1
  • 17
1
vote
1 answer

If I run the azure WebJob each one hour, I am getting 30 minute late notification in India standard time zone

I am running my azure webjob each one hour in UTc time zone. Due to that in Indian standard Time zone I'm getting notification after 30 minute. Ex : If except notification for 6 PM then I am Getting 6:30 PM , Same Like 7 PM Means 7:30 PM. I Know the…
Prabhat
  • 772
  • 1
  • 8
  • 22
1
vote
2 answers

Supported bindings for Singleton scopeId on HTTP Trigger Azure Function

I am unclear on how the scopeId parameter of the SingletonAttribute works. Specifically does the scopeId parameter work for HTTP Trigger Azure Functions when you bind it to a route parameter? How does the binding work? What variables/values can I…
1
vote
1 answer

Can I have separate settings.job for 2 instances of the same web job

I have multiple instances (one for each of my clients) of the same web job running in different app services. The web jobs all come from the same code base which has one settings.job file in it, so each web job is triggered at the same time. Is it…
David Kethel
  • 2,440
  • 9
  • 29
  • 49
1
2 3 4 5 6