- Authored web api service hosted in service fabric.
- Navigated successfully to the service endpoint (on my machine) with following url: http://localhost:2500/days/v1.0/ (i.e. I can see the response).
- Next created a UNSECURED service fabric cluster in the azure.
- Published my local fabric app to azure through visual studio.
- Successfully navigated to fabric explorer in the azure with url: http://xyz1234fake.westus.cloudapp.azure.com:19080/Explorer
- When looked at my service instance in explorer, it shows the url as http://10.0.0.5:2500/days/v1.0/
- In the browser, replaced the above local azure ip address with azure service cluster. For example: changed the url from http://10.0.0.5:2500/days/v1.0/ to http://xyz1234fake.westus.cloudapp.azure.com:2500/days/v1.0/
- Was not able to navigate to above url.
What am I doing wrong? Where should I look for troubleshooting?