Page 1 of 1

Using HTML5, quitting application is not closing browser tab

Posted: Tue Aug 04, 2015 4:38 pm
by cesare
Using TSPlus 08.30.8.1 with HTML5, we have noticed that quitting our published application is not closing browser tab (Application published is only 1).

Tried the same pubblishing only "Notepad.exe" application, the browser tab is closed automatically as expected, on closing "Notepad.exe" on browser.

Any suggestions, if available, will be appreciated.

Thanks.

Re: Using HTML5, quitting application is not closing browser

Posted: Thu Aug 06, 2015 8:28 am
by cesare
If it can be interesting I inform that I solved the issue by publishing one .BAT calling my .EXE application and not publishing directly the .EXE application.

It is not a "fantastic" solution, but now it do exactly what I was expecting: using browser HTML5 user log and got automatically my application open. On closing my application the browser tab is automatically closed.

Re: Using HTML5, quitting application is not closing browser

Posted: Thu Aug 06, 2015 5:21 pm
by johndavies
Hello,

Most probably your application is starting a daughter process. This daughter process is calling an other daughter process.
When the closing of the second daughter process will not close the session.
It is something like that.
In such case you can:

- Use the Floating Panel
OR
- Write a small launcher program that will start your specific application and will wait until it detect that all of your daughter processes are closed.

It is not complicated to develop and this is what we would do ourself to fix such specific case.

Kind regards

John Davies

Re: Using HTML5, quitting application is not closing browser

Posted: Fri Aug 07, 2015 8:12 am
by cesare
Thanks for the support.