I'm experimenting with Service fabric in C# . I have Custom App Gateway (stateless ASP.NET CORE service). App Gateway service is one public accessible endpoint and provide user authentication (AAD B2C) in one place. After user login ist JWT Token forwarded to the one Front-end web service to process request (app have many front-end services). I would like call multiple Back-end services from each Front-end web service with JWT Token. I have solution how to achieve this in ASP.NET CORE (stateless and stateful services - using HTTP Client with KESTREL).
But.... I don't know, how to forward JWT or some other header from App Gateway to "only" . NET Core services (for example actor service). Is this please possible with service remoting? Is good approach forward JWT token to all backend services?
Thank you very much