I have created a web api, with asp.net "Inidividual User Accounts" authentication. It is working fine on my local host and I am able register with the registration endpoint.
http://localhost/api/Account/Register
But the same web-api when deployed to azure(as cloud service) is timing out, and I get the below response.
Abort / timeout
The request has been aborted manually or because of the connection timeout. There were no response from the server but the connection wasn't closed.
You can adjust timeout in settings.
Try to:
add "Connection: close" header which should be used by the server to close the connection after it finish generating response
What could be the issue, and how can I increase the timeout.