[SOLVED] Network is down, retry? appears while debugging

Answered
0
0

If I take too long debugging, the dialog always appears and I can’t use my app. Hitting Retry reloads the app.

In default.json the values are

“sessionTimeout”: 900,
“responseTimeout”: 360,

That should give me at least 5 minutes to debug at a time. But it seems to trigger some kind of timeout before then.

WiseJ 1.5.49

Opera 58.0.3135.131

Windows 10 Pro IIS 8.5

 

What’s going wrong?

Thanks

  • You must to post comments
Best Answer
0
0

Hi Andrew,

it could be that you also have to increase the KeepAliveIntervall.

You can change it in default.json, too:

Snippet

"keepAliveInterval"

Background:

When you are in Debug mode on server you block the other incoming requests, each request is handled by an own thread.

When the client sends the keepAliveEvent and the server does not respond, because you block the execution pipeline, the client will show up this network is down dialog.

It’s my idea of how this works, hope this is correct :).

Best,

Jens

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.