Questions tagged [webjob]

Used in cloud hosting services like Microsoft Azure

150 questions
1
vote
1 answer

PostAsync works in console App - Not working inside SSIS package

I have quite a cumbersome problem. I am trying to Post a Webjob in Azure via SSIS. The following request works in my test-application which is a console application. public static void Main(string[] args) { string ApiUrl = "HTTPS"; …
konkret
  • 43
  • 3
1
vote
2 answers

Azure WebJobs And correct syntax for crone schedule and job trigger

I have uploaded a settings.job file containing {"schedule":"0 0/10 0 ? * * *"} in to my job root folder But that doesn't seems to trigger(app is set to always on). for what I understand this should run EVERY 10 minutes. What is correct crone…
1
vote
1 answer

Error: Cannot bind parameter 'executionContext' to type ExecutionContext

I have a .Net Framework console application that I can successfully publish as a WebJob in Azure and see it running. When I try to add an ExecutionContext parameter to my function, I receive the above error message (regardless of the position of the…
jfoster67
  • 23
  • 4
1
vote
2 answers

Microsoft.WindowsAzure.Storage.StorageException: 'The remote server returned an error: (400) Bad Request

I have created a new project in VS 2017 using Azure Webjobs ( .NET Framework ) template. After that I have included valid values for AzureWebJobsDashboard and AzureWebJobsStorage in App.config file. After running the sample I am getting below error…
1
vote
1 answer

WebJob Python Error ImportError: Missing required dependencies ['numpy']

I'm getting the following error when I try to schedule a Python file that is zipped inside a folder with its libraries. The file uses only the pandas library, but numpy is a dependency of it, so I copied the folder of all the dependencies of pandas,…
Henrique A
  • 11
  • 1
1
vote
1 answer

QueueTrigger is not picking messages- Azure WebJobs SDK 3.0

I'm trying to develop WebJob using SDK 3.0.x, and testing it locally. I've followed the sample in github without any success. When running it locally everything is going ok, it also see the ProcessQueueMessage function but it doesn't pick the…
1
vote
1 answer

Trying to write a file from an Azure WebJob

My plan is to have the WebJob send the newly generated CSV to a blob storage where it's picked up by an Azure Function and emailed out to a group of recipients. I'm using the CsvWriter library to generate the CSV. I'm told that ideally I should…
user928112
  • 314
  • 2
  • 14
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
  • 11
  • 1
  • 8
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
  • 107
  • 2
  • 11
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
  • 33
  • 5
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…
adrian
  • 35
  • 3
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
  • 1,352
  • 1
  • 18
  • 32
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,088
  • 2
  • 16
  • 22
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 2
3
9 10