|
Rank: Newbie Groups: Member
Joined: 11/17/2015 Posts: 2
|
I had remote debugging working fine for a while but I can no longer get the page to load. I get ERR_CONNECTION_REFUSED. I did update to v3.16.2 recently. Could that be the cause? Any troubleshooting advice? Thank you!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
Make sure you use our TabbedBrowser sample instead of the regular Google Chrome browser as remote debug client. Both Google Chrome and EO.WebBrowser use the same engine, but they are different version. So that might cause some issues.
Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 11/17/2015 Posts: 2
|
I was able to resolve the problem by moving the "EO.WebBrowser.Runtime.RemoteDebugPort = 1234" line to the application startup event. It was previously in the load event of the form. Not sure why it worked before but happy to have it fixed now. Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,229
|
Hi,
That makes perfect sense. EO.WebBrowser.Runtime values are used before the first WebView is created. Setting it afterwards would have no effect. So application start up event is the best place for it.
Thanks!
|
|