We are prototyping an architecture in Azure Service Fabric, where we have a number of partitioned stateful services. These services implement a Rest API. We are implementing an API gateway approach as a public interface into our application.
Microsoft have provided and example of this approach in the Service Fabric Wordcount sample code. This sample code only demonstrates forwarding GET requests and a PUT request with no body.
Does anyone have any sample code that demonstrates the best approach to forward POST and PUT requests (with body data) from the gateway to the stateful services?
Thanks in advance.