![]() |
iw 14.2.7 sessions dont release - Printable Version +- Atozed Forums (https://www.atozed.com/forums) +-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html) +--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html) +---- Forum: English (https://www.atozed.com/forums/forum-16.html) +----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html) +----- Thread: iw 14.2.7 sessions dont release (/thread-92.html) |
iw 14.2.7 sessions dont release - hsbelli - 04-10-2018 hi, i use iw 14.2.7 and have a problems with sessions. for any reasson hang up my app and try from the button of server SA "Reset Sessions". but when try open the browser again and run my app in the server SA appear the sessions connections where i suppose reset with the button "Reset Sessions". any solution please? regards hernan RE: iw 14.2.7 sessions dont release - DanielFields - 04-10-2018 That would indicate your application is hung. The only option at that point would be to kill the application using Task Manager. Have you tried deploying as a service instead? How much memory do you have? What does the application look like in task manager when it hangs? CPU? Memory? RE: iw 14.2.7 sessions dont release - kudzu - 04-11-2018 Most likely you have code that is causing threads to hang, or preventing their proper shut down. Try using the debugger and tracing the shutdown. RE: iw 14.2.7 sessions dont release - hsbelli - 04-11-2018 hi, the error that obtaing is "Session ID is invalid". i need know, is problem of lan conection or whats?.. in other lan the same application run ok. regards hernan RE: iw 14.2.7 sessions dont release - DanielFields - 04-11-2018 I believe that means the session has expired. Have you checked your SessionTimeout value? What URL are you using to start the application? It should be something like http://mydomain.com:8888/$/start RE: iw 14.2.7 sessions dont release - fduenas - 04-11-2018 Hi does your users some time connect from cellphones or any cellular Data connection?. If it so, some time cell connections often change of IP dynamically, an one of IW server security is not allow a sessionID to connect from a different IP than the one originally was when it was created. Check IW server controller security options and set 'SecurityOptions.CheckSameIP' to false. RE: iw 14.2.7 sessions dont release - DanBarclay - 04-12-2018 (04-11-2018, 04:21 PM)fduenas Wrote: Hi does your users some time connect from cellphones or any cellular Data connection?. If it so, some time cell connections often change of IP dynamically, an one of IW server security is not allow a sessionID to connect from a different IP than the one originally was when it was created. Check IW server controller security options and set 'SecurityOptions.CheckSameIP' to false. Adding to this, you will find that on mobile they sometimes do not respect IWForm.KeepAlive if the form is not active on the device (ex: user goes to another app). Holding out AJAX processing when inactive is going to be a "feature" <cough> of the device so not likely easy to work around. If you guys know of a way around it, let me know. Dan |