Questions tagged [webjob]

Used in cloud hosting services like Microsoft Azure

164 questions
1
vote
1 answer

How do I fix the "Error MSB4236: The SDK 'Microsoft.NET.Sdk' specified could not be found."?

We have searched for a solution to this problem and have had no success...there are plenty of similar errors reported here on around the web and none of the suggestions have worked. We have a web job project in tfs that compiles fine locally but…
DevilDog
  • 413
  • 2
  • 7
  • 16
1
vote
1 answer

Simultaneous uploading of a file to Azure File share using portal and downloading it using ShareClient libraries as WebJob

I have a scheduled WebJob which is triggered every 5 minutes. It checks if there are any files in Azure File Share using ShareClient libraries. If files are available then the WebJob downloads the file and deletes the original file. So when there…
baalu
  • 73
  • 5
1
vote
1 answer

Azure WebJob deployment issue

I have a basic Azure WebJob, when i'm running through VS it runs and print the desired output as belown But when i deploy and run from portal, I'm getting below error. [07/15/2020 07:23:03 > 8f28d2: SYS INFO] Status changed to…
thejustv
  • 2,009
  • 26
  • 42
1
vote
1 answer

In an Azure WebJob using the message bus extension can we tell it to stop picking up messages

Is there a way to tell the host to stop picking up messages from the queue? Or is there a hook in the service bus extension we can use to stop messages from being picked up? There are two use cases I can think of. Graceful shutdown and also if we…
1
vote
1 answer

Disable test webjob

I'm testing webjob on the local machine, I create multiple sample type trigger wejob. Like in a project there are multiple queue trigger webjob, however, all of them point to the same queue, so I want to disable others to do a test. Like the image…
PAWN
  • 13
  • 2
1
vote
1 answer

Azure Web Job Code looking for idyunnoo.f2h folder

I have a continuous web job and we have a certificates which are included as part of build. Build contains certificates inside a certificates but I got a below error Could not find file…
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…
Jacob Zielinski
  • 218
  • 2
  • 14
1
vote
2 answers

Change webjob name during Azure Release deployment

I have one solution in Visual Studio which is being deployed as a webjob onto the Azure AppService. This is done manually and the same solution is deployed multiple times with different names for the webjob. The webjob is a trigerred one and…
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
1 answer

What azure background process should I use?

So I am getting confused with what is the right approach to implementing code that fires on a scheduled bases within azure. Originally we were using a standard console app that would be put in the webjob folder on deployment. I found this a bit…
Andrew
  • 2,571
  • 2
  • 31
  • 56
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
  • 483
  • 1
  • 6
  • 24
1 2
3
10 11