Questions tagged [azure-webjobssdk]

Azure WebJobs SDK is a framework that simplifies the task of adding background processing to Windows Azure Web Sites.

The Azure WebJobs SDK is a framework that simplifies the task of writing background processing code that runs in Azure. The Azure WebJobs SDK includes a declarative binding and trigger system that works with Azure Storage Blobs, Queues and Tables as well as Service Bus. The binding system makes it incredibly easy to write code that reads or writes Azure Storage objects. The trigger system automatically invokes a function in your code whenever any new data is received in a queue or blob. See the azure-webjobs-sdk repo for more information.

480 questions
0
votes
1 answer

WebJob Message submittion always goes to poison queue rather than actual Queue

We are using Webjob latest SDK for our web job, we see weird behavior that some time our queue messages goes to poison queue rather than actual queue. I don't find any error in webjob dashboard also. Has any one faced this kind of issue. public…
user145610
  • 2,949
  • 4
  • 43
  • 75
0
votes
1 answer

Getting error calling a method on a separate dll from azure webjob

I have a webjob running in my azure environment. I am invoking a method on a class in a separate dll. But getting the following eror: Could not load file or assembly 'Microsoft.WindowsAzure.ServiceRuntime, Version=2.4.0.0, Culture=neutral,…
Mukil Deepthi
  • 6,072
  • 13
  • 71
  • 156
0
votes
1 answer

Why Azure webjob unable to execute ProcessQueueMessage when queue message is added in queue?

I wonder why my webjob is not able to execute method ProcessQueueMessage in Functions.cs after find message in queue? Functions.cs public class Functions { public static void ProcessQueueMessage([QueueTrigger("testqueue")] string…
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
1 answer

WebApp and supported WebJob SDK

My contnuous webjob stops after some time. I understand that potential reason for this could be because the WebJob SDK used to create webjob may not be supported by webapp. See details here I am using Microsoft.Azure.WebJobs (Version:…
0
votes
1 answer

JobHost.CallAsync() and disposed TextWriter

Playing with Azure WebJobs SDK, when I trigger my function with CallAsync() on JobHost instance, the TextWriter and CancellationToken instances passed into my function get disposed in a second, which makes it useless for logging and monitoring of…
eXavier
  • 4,821
  • 4
  • 35
  • 57
0
votes
1 answer

Azure Storage Queue WebJob never stops

I have an WebApp running on Azure, the purpose of the WebApp is to process jobs from an Azure Storage Queue. It is set to Always On. The problem is that when I stop the WebApp in the Azure management portal the job doesn't actually stop. I…
0
votes
1 answer

Get BrokeredMessage from within custom IJobActivator

Is it possible to get at the underlying BrokeredMessage in a web job with a service bus trigger from within the IJobActivator? This would be very useful in a multi-tenant scenario. I'm using a custom IJobActivator with Unity to instantiate my jobs.…
Brian Vallelunga
  • 9,869
  • 15
  • 60
  • 87
0
votes
1 answer

Azure WebJobs for Aggregation

I'm trying to figure out a solution for recurring data aggregation of several thousand remote XML and JSON data files, by using Azure queues and WebJobs to fetch the data. Basically, an input endpoint URL of some sort would be called (with a data…
Nick
  • 1,365
  • 2
  • 18
  • 37
0
votes
1 answer

Update storage tables when webjob is shutting down

My question is similar to the below one. Notification of when continuous Azure WebJob is stopping for NoAutomaticTrigger type jobs I have used the idea from Amit's Blog but then hit a little roadblock I have a file watcher set in the webjob which…
Sandesh
  • 2,966
  • 1
  • 20
  • 34
0
votes
1 answer

Configure Windows Azure webjobs sdk for visual studio 2012

I have an existing application developed in Visual Studio 2012 with .Net framework 4. And my project is hosted on cloud Azure. I want to add a Windows Azure WebJob project in it but cannot find extension to configure this. I find an extension given…
0
votes
1 answer

How to set visibility (time) option for azure queue using azure sdk (using azure webjobs)?

My function in my azure webjobs (console app) is doing its job correct and grabbing messages from my queue, but I need a way to control the "time visible" option or the ability to delete the message from the queue once it gets picked up.…
Sherman Szeto
  • 2,325
  • 4
  • 18
  • 26
0
votes
1 answer

Azure Webjob supports Async execution if yes how?

I want to execute my Azure Webjob methods async but I wonder Azure Webjob supports Async Execution or not Can anyone help me in this. to execute webjob methods ProcessSub1Messages and ProcessSub2Messages asynchronously. namespace WebJob1 { public…
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
1 answer

Manual WebJob SDK function binding

I have a Service Bus queue that I want to consume off of. All of the samples I have found recommend writing something like this: class Program { private static String ServiceBusConnectionString =…
Micah Zoltu
  • 6,764
  • 5
  • 44
  • 72
0
votes
1 answer

Ninject scope when running Azure Webjob in parallel

I have a console application as my webjob to process notifications inside my application. The processes are triggered using a queue. The application interacts with a SQL Azure database using entity framework 6. The Process() method that's being…
lopezbertoni
  • 3,551
  • 3
  • 37
  • 53
0
votes
2 answers

In WebJobs SDK, How to bind additional CloudStorageAccount for Blob output?

WebJobs SDK is doing wonderful job simplifying amount of code one need to write to save blobs to storage, but all within ONE storage account that is the default AzureJobsStorage. Having everything (Queues,Blobs,Tables, and Heartbeats) in one storage…
Hossam
  • 1,037
  • 2
  • 13
  • 17
1 2 3
31
32