Questions tagged [webjob]

Used in cloud hosting services like Microsoft Azure

164 questions
1
vote
1 answer

Call same queuetrigger function for multiple queues in parallel

I am creating multiple queues dynamically like workbook1, workbook2...workbook100. I have written one queuetrigger function which needs to be trigger for all the queues created dynamically once any message arrive I want to trigger same trigger…
Sandip
  • 31
  • 2
  • 11
1
vote
1 answer

How to trigger a ServiceBusTrigger?

I have an Azure WebJob which has a similar code inside: public class Functions { public static void GenerateImagesForViewer( [QueueTrigger("resize-images-queue")] BlobInformation blobInfo, …
IvanD
  • 157
  • 4
  • 12
1
vote
0 answers

Azure Triggered Webjob and Oauth - aborting webjob

i'm having continual trouble keeping a triggered webjob up and running on Azure, after digging around in some logs i located one for the 'start' webjob it looks to me there is an authorisation on the service which is specifically scoped for the…
TunedBy
  • 11
  • 1
1
vote
1 answer

How to use builtin functionality of webjob sdk to send service bus message

I want to push service bus message using inbuilt functionality provided by the azure web job sdk. https://github.com/Azure/azure-webjobs-sdk/wiki/Service-Bus this link is mentioned how to do but not clear yet
smith
  • 73
  • 1
  • 8
1
vote
2 answers

Scale out azure continuous webjob

I am trying to scale out a continuous webjob. My service plan is set on standard so i am able to scale out 10 instances. The problem is that the webjob does not scale out and at any time, only one is running. Number of…
apa47
  • 45
  • 4
1
vote
1 answer

Azure WebJob Application Insight

We have some web jobs deployed in an azure web api site. We believe one of these has a memory leak, but we have not details of what is causing it. I therefore wanted to see if I could add the nuget package to application insights.…
Andrew
  • 2,571
  • 2
  • 31
  • 56
1
vote
2 answers

Azure WebJob wrong platform target

I have an Azure WebJob that I am publishing to an App Service. The problem I am having is that I want to target the x86 platform but when I publish the WebJob and attach to the App Service, it's always listed as x64. I set the platform target to…
James B. Nall
  • 1,398
  • 3
  • 16
  • 27
1
vote
1 answer

LocalReport rendering in an Azure Web Job

I have an MVC web application running in Azure. We are using instances of Microsoft.Reporting.WebForms.LocalReport to run reports against the database that the web application is using. Some of the data sets are very large and rendering can take a…
Moreau
  • 13
  • 3
1
vote
3 answers

How to configure azure webjob to run every 15 minute

Good afternoon, my friends, I would like to inform you that I am Brazilian so I would like to apologize for my English. I have an azure webjob and want to set it to run every 15 minutes. I'm deploying my webjob using Visual Studio and I already have…
1
vote
1 answer

Azure Webjob: An attempt was made to access a socket in a way forbidden by its access permissions x.x.x.x:80

I know there's a couple questions so far involving this error - but nobody has generated this error yet due to a webjob on Azure. My code is in the form of a C# Console Application. The main part of my code: HttpClient client = new HttpClient(); var…
LatentDenis
  • 2,839
  • 12
  • 48
  • 99
1
vote
1 answer

How to install third party server's ssl certificate in Azure Trusted Root Store for WebApp?

I have hosted Mosquitto broker(MQTT server) on Azure VM. I am trying to connect to MQTT broker through Azure WebJob. When I connect to broker from local machine using self signed server certificate(ssl/tls connection) it works fine but when I host…
1
vote
2 answers

Continuously running webjob is getting aborted after 20 Minutes

I am running a web job under my web app (App Service) in Premium tier. It calls a REST API endpoint, which takes a long time to return response. The web job is getting aborted after 20 minutes, but according to the documentation a web job can run a…
1
vote
1 answer

Azure documentdb firewall blocked access from web job

I'm trying to enable Azure DocumentDB firewall by enabling the "Enable IP Access Control". I managed to allow connections from my App Service. However the webjobs that reside on the app service does not have access to the Azure DocumentDB. Is there…
Ismi Ammar
  • 166
  • 1
  • 11
1
vote
1 answer

Azure C# Webjob TimeTrigger not firing

I'm attempting to create an Azure WebJob that will execute Functions.Methods on a set timer. I have setup a simple WebJob Project in VS2017 and added Microsoft.Azure.Webjobs.Extensions to allow me to reference Timers. As a learning process, i'm…
1
vote
1 answer

Azure app service not using new/changed files

I have an PHP app running as an azure app service. On the app service have a webjob that runs every 15 min and puts new images in a public folder. The problem is that these new images isn't being found when i try to view them in a browser. If I…