Delphi - Soap timeout have a maximum range? -


im setting timeout 50000, exception throws 42 seconds.

setting 10000, exception throws 9,.. seconds.

setting 120000, exception throws 42 seconds again.

  if ftimeout <> 0   begin     internetsetoption(data, internet_option_connect_timeout, pointer(@ftimeout), sizeof(ftimeout));     internetsetoption(data, internet_option_send_timeout, pointer(@ftimeout), sizeof(ftimeout));     internetsetoption(data, internet_option_receive_timeout, pointer(@ftimeout), sizeof(ftimeout));   end; 

soap timeout have maximum or mininun range?


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -