Post by: syed hussain in All Application Design Patterns C#
This tutorial walks you through creating a microservices-based architecture using Dapr and C#. We'll build 5 microservices that work together to process a customer form submission. Dapr will handle service…
Post by: syed hussain in All C# Integration Design Patterns
Some legacy applications often communicate messages in proprietary formats, or messages the Receiver application needs to translate to make sense of. EDIFACT, X12 are common formats that often require translation/transformation.…
The Observer design pattern is a useful pattern when combined with Event-driven architectures to create reactive systems. A source system emits a state change; this change is observed by methods…
Post by: syed hussain in All C# Tips
Here is a quick tip for anyone trying to get an OAuth2 JWT token from an Azure AD 2.0 endpoint.
Post by: syed hussain in All Application Design Patterns C#
This post demonstrated a simplified Client-Server Architecture using Azure B2C and Containers. The frontend application consists of a single page demonstrating three stages: Front-end request for a JWT from the…
Post by: syed hussain in All Azure Cognitive Services C#
The code below uses Azure Cognitive Services Vision to classify images accordingly. The images are classified with a confidence score.
Post by: syed hussain in All C# Dynamics 365 CE
Here is a quick method for creating a templating engine for Microsoft Power Platform. Let’s say you have the following text that you want to turn into a letter:
Post by: syed hussain in All Application Design Patterns C# Microsoft Azure
In Azure Functions 1.0, it was never possible to use Dependency Injection (DI). DI is a technique to achieve Inversion of Control (IoC) between classess and their methods. In Azure…
Post by: syed hussain in All C# Tips
You might come across an error which prevents you uploading a file greater than 4MB to Azure Storage.