0 votes
by (1.9k points)

Hello.

I want to know the default value of Timeout of HttpRequest in Https(R5.5).
The documentation doesn't have information about default values.

Thank you.

Applies to: Rebex HTTPS
by (1.9k points)
I would also like to know the min and max if possible.

1 Answer

+1 vote
by (70.2k points)
selected by
 
Best answer

The default timeout value for HttpRequest is 60000 milliseconds (60 seconds).

  • Min value is 1, but we strongly discourage to use such a small value, which can lead to often timeout exceptions.
  • Max value is int.MaxValue.
  • Values -1 and 0 means infinity (the request does not timeout).

Thank you for pointing to this. We will add it to the documentation.

...