I have two projects: an ASP.NET web application and a WebAPI application. Web application uses the WebAPI application via AJAX. To avoid cross domain problem, I want to the two projects deployed under one domain on Azure. For example:
http://www.mycompany.com/api/products is a web api.
http://www.mycompany.com/index.html is the home page of the site, which calls the web api via AJAX.
Is it possible?