How to avoid JSON deserialisation issues with .NET 6 Web APIs
A guide on fixing JSON deserialization issues when migrating from Newtonsoft.Json to System.Text.Json in .NET 6 Web APIs.
A guide on fixing JSON deserialization issues when migrating from Newtonsoft.Json to System.Text.Json in .NET 6 Web APIs.
A technical guide for a Global Azure Bootcamp session on deploying .NET Core applications with Docker and Kubernetes on Azure.
A guide on integrating the modern .NET Core Configuration system into legacy ASP.NET Web API projects, covering setup, JSON files, and strongly-typed binding.
A guide on enabling CORS in ASP.NET Web API 2, comparing the Web API package and OWIN middleware approaches with configuration examples.
A guide to testing ASP.NET Web API filters and handlers that use IDependencyScope, with a focus on dependency injection and unit testing patterns.
A guide on using Azure Access Control Services (ACS) to secure an ASP.NET Web API with service identities and Simple Web Tokens.
Explains how to implement rate limiting/throttling in ASP.NET Web API using message handlers for better performance.
A guide to implementing API versioning in ASP.NET Web API using custom media types in the Accept header, with code examples.
Announcement of a temporary takeover of the @msdnbelux Twitter account to share content on ASP.NET, JavaScript, and Azure.
A developer details implementing JWT-based session token authentication for a startup's API using Thinktecture.IdentityModel in ASP.NET Web API.
A guide to implementing custom PATCH request validation in ASP.NET Web API using IValidatableObject for flexible parameter requirements.
A guide on sending extra form data alongside files in multipart uploads using ASP.NET Web API and HttpClient extension methods.
Guide to configuring IIS and ASP.NET Web API to support additional HTTP methods like HEAD, PATCH, or custom verbs by removing WebDAV conflicts.
A guide on implementing API key authentication in ASP.NET Web API using a custom DelegatingHandler to map keys to user identities.
Explains how to configure per-request dependency injection for resources like database sessions in ASP.NET Web API using StructureMap.
Part 3 of a series on implementing AtomPub support in ASP.NET Web API, focusing on adding and exposing categories.
Part 2 of a series on implementing AtomPub support in ASP.NET Web API, focusing on publishing content using clients like Fude and Windows Live Writer.
A technical guide on implementing the Atom Publishing Protocol (AtomPub) for content management using ASP.NET Web API, including creating a custom MediaTypeFormatter.
A guide to implementing RESTful hypermedia links in ASP.NET Web API, including JSON serialization and custom link classes.
Explains how to handle RavenDB's string identifiers in ASP.NET Web API routing by exposing integer IDs to clients and using type converters.