Background I have recently speaking to a customer about the following scenario. Customer has an API that supposed to be consumed by some **trusted** daemon applications built and managed by their partners. It's not the interactive users (no signed in users via an web application) who will be using the API, rather some background process … Continue reading Multi-Tenant Daemons with Microsoft Identity platform
ASP.net
OpenSSL as Service
OpenSSL is awesome! Though, requires little manual work to remember all the commands, executing them in a machine that has OpenSSL installed. In this post, I'm about to build an HTTP API over OpenSSL, with the most commonly used commands (and the possibility to extend it further - as required). This will help folks who … Continue reading OpenSSL as Service
CQRS and ES on Azure Table Storage
Lately I was playing with Event Sourcing and command query responsibility segregation (aka CQRS) pattern on Azure Table storage. Thought of creating a lightweight library that facilitates writing such applications. I ended up with a Nuget package to do this. here is the GitHub Repository. A lightweight CQRS supporting library with Event Store based on … Continue reading CQRS and ES on Azure Table Storage
ASP.net 4.5 applications on Docker Container
Docker makes application deployment easier than ever before. However, most of the Docker articles are often written how to containerized application that runs on Linux boxes. But since Microsoft now released windows containers, the legacy (yes, we can consider .net 4.5 as legacy apps) .net web apps are not left out anymore. I was playing … Continue reading ASP.net 4.5 applications on Docker Container
Quick and easy self-hosted WCF services
I realized that I am not writing blogs for a long time. I feel bad about that, this post is an attempt to get out of the laziness. I often find myself writing console applications that have a simple WCF service and a client that invokes that to check different stuffs. Most of the time, … Continue reading Quick and easy self-hosted WCF services