ASP.NET

Efficient File Bundling in ASP NET: A Guide to Streaming ZIP Archives Members Public

Bundling files into a zip archive for downloading via an API endpoint is a common requirement for many applications. Let's learn how to stream zip archive files from ASP NET API Endpoint to the end user.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
ASP.NET

.http Files Explained: Boost Your ASP NET Core API Development Workflow Members Public

.http files provide an easy way to invoke API endpoints without leaving your IDE. Learn how to create and update .http files, send HTTP requests, and manage different configuration support for your API development.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
ASP.NET

5 Ways To Query Data From Amazon DynamoDB using .NET Members Public

Querying is an essential operation in DynamoDB. It allows you to filter and select items in your database based on your application and user needs. When moving over to DynamoDB from more traditional relational databases like SQL Server, you must understand the different ways you can retrieve data in DynamoDB.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

NServiceBus on AWS SQS: Learn How to Quickly Get Started Members Public

NServiceBus is a messaging framework provided by Particular Software, which makes it quick and easy to build message-driven applications. Learn how to quickly get started by building a sender/receiver using NServiceBus on AWS.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
ASP.NET
ASP NET Core & AWS Lambda Functions

How To Build and Host ASP NET Core Applications on AWS Lambda Functions Members Public

This article is sponsored by AWS and is part of my AWS Series. AWS Lambda is a compute service that lets you run code without provisioning or managing servers. You can build application APIs on Lambda Function with API Gateways (REST or HTTP API) or Function URL’s. But what

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Understand CORS and Learn How to Enable it for Your ASP NET API Members Public

Cross Origin Resource Sharing or CORS in short is a W3C standard that allows a server to relax the same-origin policy. Learn more about CORS, how to enable it for an ASP NET Web API, Preflight requests and more.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
ASP.NET

Are You Using HttpClient in The Right Way? Members Public

If not used correctly it's easy to run into socket exhaustion and DNS related issues with HttpClient in .NET Core. Learn how to identify these issues and how to use HttpClient class in the right way.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
ASP.NET

How To Easily Generate Data For SpecFlow Tests Members Public

Automatically generate data using AutoFixture when writing SpecFlow tests.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Testing