Hi
I have ASP.NET Core 2.1 APP and configured one recurring job to run every 5 min.
It is working fine when I run the application from inside Visual Studio 2017.
But when I deployed the APP to IIS v10 , it keeps going to Procesing Job then failed and scheduled for a Retry attempts 10 times. I tried to find out the error and it says:
Failed
An exception occurred during performance of the job.
System.AggregateException
One or more errors occurred. (An error occurred while sending the request.)
System.AggregateException: One or more errors occurred. (An error occurred while sending the request.) —> System.ServiceModel.CommunicationException: An error occurred while sending the request. —> System.Net.Http.HttpRequestException: An error occurred while sending the request. —> System.Net.Http.WinHttpException: The operation timed out
at System.Threading.Tasks.RendezvousAwaitable`1.GetResult()
at System.Net.Http.WinHttpHandler.StartRequest(WinHttpRequestState state)
— End of inner exception stack trace —
Please advise