I am working with a demo Visual Studio solution, which has two WebApi projects.
Going through the client code, I can see it calls the two WebApi's on separate endpoints, as below:
public const string WebHostName = "web.local";
public const string WebHostv1Path = "/rs/api/";
public const string WebHostv2Path = "/rs2/api/";
public const string WebHostv1BaseAddress = "https://" + WebHostName + WebHostv1Path;
public const string WebHostv2BaseAddress = "https://" + WebHostName + WebHostv2Path;
So what I need to do is setup of two WebApi apps under same host name in sub folders/paths, but as far as I can tell each 'site' can only run one application.
Any points on how I can achieve the above with IIS8?