Top "Azure-webjobs" questions

Provides an easy way for you to run programs such as services or background tasks in an Azure Web App (previously known as Websites).

Azure Webjobs vs Azure Functions : How to choose

I've created some Azure Webjobs that use triggers and I've just learnt about Azure Functions. From what I understand Azure …

azure azure-webjobs azure-functions
Where do I get the AzureWebJobsDashboard connection string information?

Trying to update my Service Bus apps to use the new RTM and I need this information. <add name="…

azure azure-webjobs
How do I write to the logs in Azure WebJobs from a C# console app?

I'm testing out Azure Webjobs. I wrote a console application which polls a SQL database for new work and processes …

azure-webjobs
AcquireTokenSilent always Failed to acquire token silently

Using ADAL I have two AuthenticationContext using a Token Cache persisted in SQL. Using AcquireTokenByAuthorizationCode it writes the Token in …

azure oauth azure-active-directory azure-webjobs adal
Azure WebJob timeout configuration settings

We have an Azure web site with a daily scheduled job. In our case, the scheduled job runs a stored …

asp.net azure azure-web-app-service azure-webjobs
The 'DefaultConnection-Web.config Connection String' argument cannot be null or empty. VS2013

When I deploy my project with "Publish as Azure WebJob" using Visual Studio 2013/update 4, I get the error in the …

visual-studio-2013 azure-webjobs
Azure Function logging using TraceWriter in external library

How can I reuse the TraceWriter object available in an Azure Function to log information in an externally referenced library? …

c# logging azure-webjobs azure-functions
Azure Service Bus Emulator

I am developing a WebJob, which uses service bus queue, but I don't have an Azure account. Does there exist …

azure emulation azure-webjobs azure-servicebus-queues
How to make azure webjob run continuously and call the public static function without automatic trigger

I am developing a azure webjob which should run continuously. I have a public static function. I want this function …

c# azure azure-webjobs
Dependency injection using Azure WebJobs SDK?

The problem is that the Azure WebJobs SDK supports only public static methods as job entry-points which means there is …

c# azure dependency-injection azure-webjobs