azure-webjobssdk Questions
24
Solved
First off, I have looked at the other SO posts with the same error message and none seem to resolve my issue. I have tried many permutations and options. My function builds fine but will not run in...
Missi asked 6/12, 2017 at 20:16
4
My WebJob is processing multiple messages from a queue which I don't want it to do. My queue has dependent messages which I want to process one after the other sequentially.
I have tried with confi...
Molech asked 19/1, 2016 at 6:2
6
Solved
When using the IConfigurationBuilder in a .NET Core 2.1 application with a Generic Host I configure 4 sources; but after the scope of ConfigureAppConfiguration there are 6 sources.
At some point ...
Undercut asked 20/12, 2018 at 16:52
4
Missing references upgrading to Webjob V3
Installed the references
'IWebJobsBuilder' does not contain a definition for 'AddTimers' and no accessible extension method 'AddTimers' accepting a first...
Velazquez asked 16/7, 2019 at 15:17
1
I have this function
public class Functions
{
public Functions()
{
}
[FunctionName("httptriggertest")]
public async Task<IActionResult> HttpTriggerTest([HttpTrigger(Author...
Bloodshed asked 23/8, 2021 at 8:47
1
I've got a simple .NET V3 WebJob with a timer trigger up and running in a .NET website as outlined in this answer: Scheduled .NET WebJob V3 example
However, in the output, I get this warning:
war...
Maeganmaelstrom asked 30/7, 2019 at 23:59
5
I had a C# WebJob that was working nicely with the alpha WebJob api. I just updated it to the beta release, and after fixing connection strings and namespaces I get a HTTP 409 (Conflict) error when...
Kamin asked 6/8, 2014 at 20:20
4
Solved
I created a new Azure WebJob project in Visual Studio 2015 using .NET Framework 4.6.
In the app.config, I set three connection strings:
AzureWebJobsDashboard
AzureWebJobsStorage
MyDatabaseConnec...
Chemism asked 7/12, 2015 at 0:50
1
Solved
I have the following small script in a file named fgh.py which I have been attempting to schedule as a webjob
import pandas as pd
df=pd.DataFrame({'a':[1,2,2],'b':[5,6,9]})
df['x']=df.a.sub(df.b)...
Pigling asked 27/10, 2020 at 1:54
2
Solved
I want to rewrite my current webjobs config to the version 3.0 but I can't get it to work with the documentation because I have no idea how to set the dashboardconnectionstring or storageconnection...
Catalan asked 2/5, 2019 at 11:20
6
Solved
I've got an Azure webjob with several queue-triggered functions. The SDK documentation at https://learn.microsoft.com/en-us/azure/app-service-web/websites-dotnet-webjobs-sdk-storage-queues-how-to#c...
Dysprosium asked 15/2, 2017 at 21:7
10
I an trying to publish my website along with few WebJobs but after the website and the jobs are created on the Azure Website, I see an error on the VS.NET 2013 that says:
Error 948 An error occurr...
Purposeless asked 15/1, 2015 at 13:11
4
We have an Azure WebJob (3.x) running under an API App in Azure, all Core 2.1. It publishes fine, and runs, but doesn't show any Functions or list the Function Invocations on the dashboard. Which i...
Cahier asked 17/10, 2018 at 14:44
2
Solved
Is it possible to have Filters (Auth or Exception) for Azure functions? I just want to not duplicate code to validate bearer token in every function. I see that there is a filter concept in webjobs...
Curvaceous asked 11/10, 2017 at 9:43
7
Solved
I'm trying to read a message from an Azure ServiceBus queue using an Azure WebJob but it's throwing and exception:
Unhandled Exception: System.InvalidOperationException: Found 2 DNS claims in aut...
Oteliaotero asked 17/12, 2015 at 7:36
2
Solved
I've upgraded my .NET (not .NET Core) WebJob from V2 (which was working fine) to V3. I'm having trouble getting it to run. I just want the webjob to call a function I've written according to this C...
Eburnation asked 30/7, 2019 at 5:25
2
I know it's possible to recieve messages from a service bus queue like:
public static void ProcessQueueMessage([ServiceBusTrigger("inputqueue")] string message, TextWriter logger)
But is there a...
Frech asked 11/6, 2015 at 6:51
1
Just installed the preview version of Visual Studio 2017 15.3 but I still don't see a way to create WebJobs in .NET Core. Is this available -- even as a preview or beta -- or not?
PS: This is NOT ...
Tramel asked 1/8, 2017 at 23:45
1
Solved
I have azure webjob sdk (v3.0.3) app which has been configured to use serilog for logging.
The log seems to work when I run the app locally in my system. Below is the configuration:
static void M...
Rotherham asked 17/1, 2019 at 23:42
4
Solved
I'm building a job to trigger at some regular interval (say 1 minute). I've successfully used triggered web jobs with time-span hard coded in the functions.
public void foo([TimerTrigger("00:01:00...
Toddy asked 29/8, 2017 at 5:2
1
Solved
Trying to follow @matthoneycutt 's tutorial on Azure IoT Hub it seems like
Microsoft.Azure.WebHosts.JobHostConfiguration vanished between 3.0.0-beta5
and 3.0.0-rc1 releases of Microsoft.Azure.WebH...
Sophiasophie asked 18/9, 2018 at 9:35
3
Solved
I'm trying to work with Azure Webjobs, I understand the way its works but I don't understand why I need to use two connection strings, one is for the queue for holding the messages but
why there...
Centipoise asked 3/2, 2015 at 19:26
1
Solved
I would like to know about JobHostConfiguration on Azure WebJobs SDK.
Where I can find the config ? is it on app.config ?
How can JobHostConfiguration identified this is IsDevelopment or not ?
I c...
Gusman asked 28/2, 2018 at 4:55
2
Solved
Just installed Visual Studio 15.5 Preview so that I can create an Azure Function targeting .NET Core. Without making any changes, I'm seeing a warning -- see below -- that reads:
Package Micros...
Parcae asked 16/11, 2017 at 3:2
2
Solved
I am developing a triggered webjob that use TimerTrigger.
Before the webjob stops, I need to dispose some objects but I don't know how to trigger the "webjob stop".
Having a NoAutomaticTrigger fu...
Level asked 2/2, 2016 at 23:47
1 Next >
© 2022 - 2025 — McMap. All rights reserved.