XDataWebConnection timeout

Hi there is anyway to set a timeout for "try to connect" . its useful on android where default timeout is very long !

Use OnRequest event to set the timeout of the requests:

procedure TForm7.XDataWebConnection1Request(Args: TXDataWebConnectionRequest);
begin
  Args.Request.Timeout := 10000;
end;