Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-13 Thread Sannyasin Brahmanathaswami via use-livecode
Aloha, Charles: This connection speed feedback looks awesome. Does TSnet handle/monitor speed on all all the port 80/443 calls? set the url of widget "browser" to "https://www.himalayanacademy.com"; I created a "horrible hack" to ping our server every few milliseconds ala Apple's own web p

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-13 Thread Charles Warwick via use-livecode
Hi Dan, The resetAll command is very destructive, in that it closes all currently open connections. In certain circumstances it has been required when using the traditional libUrl library to work around network errors and in order to maintain feature parity, it does also work with tsNet. H

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-12 Thread Dan Friedman via use-livecode
Charles, Yes, I do have resetAll in my scripts. I use it when a communications error has occurred as a way to reset and try again. If tsNet is in play, I gather I should not call resetAll? If not, is there something else I should be doing? Also, is there a way (via a property) to determine

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-12 Thread Matthias Rebbe via use-livecode
You mean, you want to call that in the standalone? I am not sure. I would say this is a question either for Charles Warwick or the people at Livecode. > Am 12.07.2017 um 17:13 schrieb Dan Friedman via use-livecode > : > > Matthias, > > If I build the standalone with tsNet selected, could I c

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-12 Thread Dan Friedman via use-livecode
Matthias, If I build the standalone with tsNet selected, could I call: dispatch "revUnloadLibrary" to stack "tsNetLibUrl" at runtime to switch back to libURL? If so, this would give me the option to use either one. Thanks! -Dan On 7/11/17, 6:13 PM, "use-livecode on behalf of use-li

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-12 Thread Charles Warwick via use-livecode
Hi Dan, The error message "Not initialised" (the spelling is correct depending on where you live ;-) ) indicates that the tsNet external isn't running. If you are using libUrl which I am guessing you are, tsNet is initialised on startup, so this would indicate that it has either been shut do

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-11 Thread Matthias Rebbe via use-livecode
Hi Dan, reading my comment makes me think that it is confusing. What i wanted to say was, To use the “old” libURL unload tsNET as described, then create the standalone. The standalone then will use the old libURL. One little caveat. The created standalone still contains the tsNET external, alth

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-11 Thread Matthias Rebbe via use-livecode
Dan, before creating the standalone you can disable the tsNet external To unload: dispatch "revUnloadLibrary" to stack "tsNetLibUrl" To load again: dispatch "revLoadLibrary" to stack “tsNetLibUrl" Regards, Matthias Matthias Rebbe +49 5741 31 ‌matthiasrebbe.eu

Re: [ANN] Release 8.1.5 -- tsneterr

2017-07-11 Thread Dan Friedman via use-livecode
I am porting a large project from LC 7 to 8.1.5. Occasionally, I get this error when accessing the internet: “tsneterr: Not initialised” (misspelled, by the way). It works fine for a while, then it just fails. And, once it fails you have to completely restart. Sometimes LC even crashes! I