I know there is several projects like grpc-gateway. But these projects generally just proxies the request. So you need to run grpc server on machine as well.
I am trying to find a way run http server that translates http requests into grpc messages and invokes grpc methods without running grpc server. I can map http requests into grpc request messages manually but i think grpc interceptors will not execute in this way.
Is there way to achive these ?
Best regards.