Retrieving Trip Data With Azure Functions and Cosmos DB

In my previous post I setup a simple Azure function to update data in Cosmos DB. This post will review the simple code to retrieve trip entries by id using an Azure function. The next version of the project adds another Azure function for handling GET requests with the tripId on the end of the …

Updating Trip Data With Azure Functions and Cosmos DB

In my previous post I reviewed the simple code used to create new trip entries in Cosmos DB from an POST to an Azure Function. For this post I will be reviewing the code needed for a PUT request to an Azure Function that will update trip data in Cosmos DB. The next version of …

ASP.NET Core 3.1 API : Adding SCIM Media Type to JSON Formatter

On a recent project I worked on creating a SCIM (rfc 7642, 7643, 7644) provider using ASP.NET Core. The SCIM standard uses its own media type of application/scim+json by default. So I had to figure out how to add the scim media type to the existing json formatter. In the process I ran into several …

Creating Trip Data With Azure Functions and Cosmos DB

In my previous post I reviewed the bindings that are setup for an Azure function that handles POST requests for the trip logger service. For this post I will be reviewing the simple code that translates the posted data to a trip entry to be saved in Cosmos DB. The initial setup only contains one …

Exploring Azure Functions

Awhile ago I was asked to write some demo service code. Two of the suggested technologies were Azure Functions and Azure Cosmos DB. The experience prompted me to finally setup a blog and commit to exploring technologies that interest me. So my plan is to start exploring Azure Functions using a demo project that I …