gRPC C++ and Self Signed Certificates
Jared Rhodes, Microsoft MVP and Pluralsight Author, explains the different values available for C++ gRPC and hosting it with self-signed certificates
Jared Rhodes
Jared Rhodes, Microsoft MVP and Pluralsight Author, explains the different values available for C++ gRPC and hosting it with self-signed certificates
Jared Rhodes, Microsoft MVP and Pluralsight Author, showcases how to create Protocol Buffer definitions from existing classes. This post focuses on EFCore but can be generalized to any different type definitions you would like to use.
Jared Rhodes, Microsoft MVP and Pluralsight Author, showcases how to use shared memory to communicate between .net core and python
If you are looking for a guide on creating an Open CV module in Python, check out a guide here. This guide will focus on creating an Azure IoT Edge module in C++. To accomplish this we need to take the following steps: Create the Azure IoT Edge Module Create a working Open CV Build […]
Google’s Protocol Buffers are a perfect fit with the multilingual approach of Azure IoT Edge. Using ProtoBuf, a message format can be written once and used across multiple frameworks and languages while benefiting from the speed and message size intrinsic to ProtoBuf. For this Azure IoT Edge use case, we will generate a message in C++ and […]
Just to see if it was possible on my current project, I tried to generate C++ code files from their .proto definitions whenever CMake ran. To do this, I added a few lines to the CMakeLists.txt file of the project. The idea is to use execute_process to call protoc and generate the files in the […]