Extracting Text from Images with Azure Cognitive Services

In this Azure article, we will discuss How to Extract Text from an Image Using Azure Cognitive Services, we will also see a few other topics like Azure Cognitive Services Read Text from Images with Hand-written text and Create Azure Cognitive Service using Azure Portal. We will perform the below steps to demonstrate the functionality. … Read more

Level Up API Authentication with JWT Refresh Tokens in ASP.NET CORE and Angular

In this article, will see how can we refresh JWT Token in Asp.Net Core Web API, once the access token is expired.We will see how the token works and how the refresh token re-authenticates the user. Let’s start with JWT Token Definition What is JWT Token? In the world of web applications, a JWT (JSON … Read more

How to implement JWT Token Authentication in Angular with .NET Core?

In this article, we will demonstrate JWT Token Authentication in Angular with .NET Core. To implement the JWT Token authentication mechanism, we will use the – What is JWT Token? JWT stands for JSON Web Tokens. It is a Token-based authentication to communicate with the REST endpoints in a secure way. It is a JSON-based token so … Read more

Data Protection in ASP.NET Core

In this article, we will learn about Data Protection in ASP.NET Core: what it is, why we need it and how to implement it in .NET Core-based applications. What is Data Protection? The method of applying security to any data is called data protection. Data Protection plays a very vital role especially when we move … Read more

Introduction to gRPC

For the past many years, we have been using Rest Based Communication. As we know that REST is a flexible architectural style where the client communicates with the server through HTTP. Recently, a new framework for client-server communication has been invented in the industry which we know as gRPC. What is gRPC, and how does … Read more

The Key Differences Between Onion Architecture and Clean Architecture

Onion Architecture and Clean Architecture both are used to provide a standard architecture to the software. These architectures play a key role when we build large and complex projects which require regular enhancements.In this article, we will know about Onion architecture and Clean architecture in detail. Also, we will see a basic example of .Net … Read more