Hello,
I have an application which of course is working locally, but when I deploy it it fails
The issue is that I am requesting an operation via a SSE through NotifySubscription
which results in a call to my Named Receiver handler:
public void RequestData(RequestDataCmd request)
However it is taking approx 60-120 seconds for this handler to process (it collects data from a service then posts a large JSON request to a service stack endpoint for processing).
After 30 seconds this named receiver is aborting with the error: โRemote task did not report back.โ
I cannot see where to specify the timeouts, this error is definitely coming from the client, not the server, but on ServerEventsClient
I can see nowhere to specify the timeout. I have already modified the Heartbeat and Idle timeout on the server to an excessive degree but this does not change the client timeout.
I would really appreciate some help with this one.
Thanks,
James