Introduction This is a small series of articles about how to work with Azure Service Bus. The code is written in .net core and .net standard. No fancy Python in place here! Part 1: (this one) Talk about the basics Part 2: Show the code Part 3: Has everything been recognized? Straighten out requirements I […]
Category: Dependency Injection
IoT architectures – automation stunts with .net framework, part 4
Part 4: Going on with alternative deployment options This is the fourth of at six articles about how an IoT project with certain constraints and prerequisites was implemented. In recent article I described why it was not possible to create the docker container for OSISoft AKSDK lib and that is was not possible to leverage […]
IoT architectures – automation stunts with .net framework, part 3
Part 3: What about alternative deployment options? This is the third of six articles about how an IoT project with certain constraints and prerequisites was implemented. In recent article I described why it was not possible to create the docker container for OSISoft AKSDK lib. This article is about possible options to deploy old-school .net […]
AutofacOnFunctions: version 1 released with .net framework support
Finally version 1 of AutofacOnFunctions is available! Find the code on github. Have a look onto newest nuget package. Have a look onto the archive to support former versions. Lots of changes Due to the ongoing development of Azure Functions, there had been a lot of changes to the code. Additionally, the first version of AutofacOnFunctions […]
AutofacOnFunctions: Named services support, fixes for breaking changes
A new version of Azure Functions was just released, called 1.0.19. While there are quite some changes in this release, like the fact that Function Apps must have exactly one single language and WebJobs had been updated to 3.0.0-beta8, there are some breaking changes. For complete information about the changes see the announcement. Breaking Changes Azure Functions Version […]
Azure Functions Dependency Injection: Autofac On Functions nuget Package
When starting to play around with Azure Functions, the lack of dependency injection support was pretty annoying. To overcome that issue I created a small library, Autofac On Functions, based on Azure Functions 1.x. Unfortunately it is not possible to generate a nuget package from these sources. Azure On Function with nuget package available Yesterday I started to […]
Azure Function Dependency Injection with AutoFac: Autofac on Functions
Autofac on Azure Functions. Azure still keeps evoling a lot. The next new and hot thing is Azure Functions. What makes Azure Function attractive? In the past six months I did have a look onto Azure Functions more often, but was on one hand pretty busy with a move to a different company and on the […]
Do you start with the data or with the test?
I recently had some discussions about TDD. I personally never tried to accomplish the procedure seriously. So I wanted to invest a little time to understand if it does fit to my needs, especially if it is more effective in short and long term perspective. I wanted to use a simple example. Not too complex and […]
Logging with log4net and Windsor Castle in c#
Quite a while ago I had a good talk with an colleague about “to log or not to log – that is the question”. 😉 That was a longer discussion, and a lot of questions had been raised: Shall we do logging? What shall be logged out? Should we create a log library by ourselves to […]