srajeshnkl
srajeshnkl

Reputation: 913

API Gateway with multiple instances of a same Web API

I am creating an ASP.NET Web API gateway which needs to communicate to legacy COM component business logic written in C++. So I am creating another Web API which internally gets data from COM component through C# CLI layer.

Hence C++ COM component is not thread safe, I am considering to span multiple instances of WEB API per user request. The outer Web API Gateway can be instantiate the inner Web API per user and request to it.

Do any API gateways like Ocelot have any feature to achieve spanning multiple instance of same Web API? Or how to achieve spanning multiple instances and make request?

Upvotes: 0

Views: 34

Answers (0)

Related Questions