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.
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 […]