Micro Services – is this the right architecture for me? Part One – The Problem
Micro services – have you heard the buzzword? Does this describe you? You are responsible for the architecture or product management of an enterprise sized
Micro services – have you heard the buzzword? Does this describe you? You are responsible for the architecture or product management of an enterprise sized
Modern aspnetcore Web APIs are relatively easy to protect using Bearer Tokens issued by Duende IdentityServer. But there is a lot of legacy .NET framework
Scenario: Your API needs to call another REST API – or your Console App or Web Job needs to call some other REST API. You
I was recently working on a project where a fillable PDF form was populated with data and a QR code needed to be placed on
To get authenticated SignalR hubs to work, you need to allow credentials in CORS, so your aspnetcore code might look like this: services.AddCors(action => action.AddPolicy(policyName,
In two recent posts, I blogged about SignalR in .AspNet Core 2.1, and automating boilerplate multitenancy code in Entity Framework Core 2.1. Both these blogs
In any real world enterprise application, you end up writing a lot of similar, tedious boilerplate code for bookkeeping . This logic results in a
In a previous post, I wrote about using SignalR in AspNetCore. Today, I tried the next step up – SignalR as a service! You will
We’ve all been waiting for the first production release of SignalR for AspNetCore, and supposedly it’s going to be out there any day now. Impatient
I recently needed to write a routine that exports a query to an Excel file, and came up with a generic solution I thought might