Hi,
I am working on a process that requests data from the webservice using GET.
Problem is sometimes the response is longer than the 90- 100 seconds that the Blue Prism object allows before giving a time out error.
Is there any way to extend this time so the robot doesn't time out before receiving the response?
Thanks
I have managed to resolve this, for future reference if anyone has problems in future.
You need to add a line of code on line 2
request.Timeout = 360000
The 360000 is milliseconds , so you can change that to suit your needs.