I have a JSON web service that I want to run on the same domain as my Web page. Both are to be used in Azure. They need to be on the same domain because since Im doing a JSON call, JSONP is not an option atm.
I was thinking that my web would have the address http://example.cloudapp.net/, and my Web Service should have the address http://example.cloudapp.net/webservice/
Edit: How can I create a web service at http://example.cloudapp.net/webservice/ and a MVC 2 Web App at http://example.cloudapp.net/ , I have only figured out how to make them use their separate domain, like http://ws-example.cloudapp.net/ for the web service and http://example.cloudapp.net/ for the web app.