I've a .net client application through which I'm making a REST API(written in Java) on click of a button.
The REST API internally calls a long running task(which takes more than one hour to complete) on the server. On invoking this from .net client, the http request gets timed out.
Just wondering how to prevent this issue? Do I need to increase the timeout value or would a KEEP-ALIVE setting suffice?
Thanks for the help.