Rank: Advanced Member Groups: Member
Joined: 10/4/2016 Posts: 104
|
Hi,
We are experiencing a weird error. When using EO browser, one of our page experiences ErrorCode = TimedOut. Unfortunately at the moment my code is then closing the page, so I may try it again without closing the page but in the meantime I wanted to know: 1/ Is there a way to change the timedout value? 2/ Is there a way to force programmatically the browser to continue trying if it runs into that error? My only guess now is to ignore the error but I feel if I do that it will not necessarily try to keep rendering the page. 3/ What is the difference between TimedOut and ConnectionTimeout?
Could you please shed some light on this subject and provide me with some directions?
Thank you for your inputs.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
There is no way to change the timeout value. There are various different time out value deep buried inside the browser engine. Some of those values are fine tuned by the Chromium team over the years. So it's not something you would want to change.
The difference between a TimeOut and a ConnectionTimeOut is the later only occurs when the browser engine tries to establish a connection to the server. Once a connection is established, there are various stage it can time out. For example, if the browser engine sends a HTTP request to the server but didn't receive any response after a certain period of time, you would get a TimedOut error instead of a ConnectionTimeOut error.
Obviously the best way for you to get to the bottom of this issue is to find out how to reproduce it and then back trace from there. Most likely it's a network issue somewhere.
|