Question
dan276 on Tue, 09 Aug 2016 05:10:13
I'm calling a c# .net webapi call. Just a regular https post making a call to myWebsite.azurewebsites.net/api/...
There's no traffic on the server and it's standard1 medium. I do the call every 5 minutes, but I'm getting a 404 about 5% of the time, but it works on the re-try.
How would I go about debugging, I don't see any errors with the web app, c# web api.
The response looks like:
'NotFound' Response Headers: Date: Tue, 09 Aug 2016 04:26:14 GMT Server: Microsoft-IIS/8.0 Body: <!DOCTYPE html> <html> <head> <title>Microsoft Azure Web App - Error 404</title>
The call is like:
[HttpPost][Route("MyRoute")]
[ApiExplorerSettings(IgnoreApi = true)]
/// <summary>
/// Check if Sonali Oracle DB is available
/// </summary>
/// <returns></returns>
public async Task<bool> CheckTheStatus()
Replies
dan276 on Thu, 11 Aug 2016 02:11:05
Is it possible it's going my deployment slot, the one I swapped. The old slot didn't have that call. The slot I was using is at 100% though