An API gateway is a frontend server for APIs, handling incoming API requests and routing them to the appropriate backend services. It plays a crucial role in microservice architecture by offering a single entry point to the system. Some main functionalities of an API gateway are: Routing Authentication Authorization Request composition Caching Load balancing Fault tolerance ServiceContinueContinue reading “How to Use Ocelot as an API Gateway in ASP.NET Core”
Tag Archives: .NET
Reading Request Headers Across Multiple .NET Core API Controllers
I was working on creating a .NET Core-based API and came across a requirement to read a particular request header across the API controllers. To understand it better, let us say there are two API controllers, InvoiceController ProductController We need to read the value of a particular Request Header in both controllers. To do that,ContinueContinue reading “Reading Request Headers Across Multiple .NET Core API Controllers”
Simplifying Angular Data Binding to .NET Developers
Read full article on the Infragistics blog At my job, I get the opportunity to talk to many .NET developers who want to learn Angular. Often, I’ve seen that they bring their .NET skills and work to map that in the learning of Angular. While the effort and drive to learn is there Angular isContinueContinue reading “Simplifying Angular Data Binding to .NET Developers”