Re: LibURL and TSNet in LC Indy

2020-08-19 Thread Dan Brown via use-livecode
Hi Tom, Word of caution on using Fiber, it only uses a subset of the http/1.1 standard (i.e. it's not standards compliant) and doesn't support http2 Have used the below libs in production and can recommend their usage if the above is an issue Echo - https://echo.labstack.com/guide Chi -

Re: LibURL and TSNet in LC Indy

2020-08-19 Thread Tom Glod via use-livecode
Yes!! that is an important distinction. It explains some of the results of my testsEven though I can send them out asynchronously, they can only come back in sequence. Basically I have a core binary component that must be fast and efficient in serving and digesting api requests...I couldn't

Re: LibURL and TSNet in LC Indy

2020-08-19 Thread Mark Wieder via use-livecode
On 8/19/20 8:08 AM, Bob Sneidar via use-livecode wrote: I get a 404 error on the download. Change the directory to "tsnet" instead of "tsNet" Bob S On Aug 18, 2020, at 9:52 PM, Charles Warwick via use-livecode

Re: LibURL and TSNet in LC Indy

2020-08-19 Thread Bob Sneidar via use-livecode
I get a 404 error on the download. Bob S On Aug 18, 2020, at 9:52 PM, Charles Warwick via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Tom, Using unique URLs for multiple load URL requests against the same server with the standard libUrl library allows you to *initiate*

Re: LibURL and TSNet in LC Indy

2020-08-18 Thread Charles Warwick via use-livecode
t;> >>>> Your problem with tsNet could be a timeouts. See tsNetSetTimeouts >>>> >>>> Disable tsNet: >>>> dispatch "revunloadlibrary" to stack tsnetliburl >>>> >>>> Enable tsNet: >>>> dispatch "revloadlib

Re: LibURL and TSNet in LC Indy

2020-08-18 Thread Tom Glod via use-livecode
Information Services > >> rdim...@evergreeninfo.net > >> > >> > >> -Original Message- > >> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On > >> Behalf > >> Of Tom Glod via use-livecode > >> Se

Re: LibURL and TSNet in LC Indy

2020-08-17 Thread Charles Warwick via use-livecode
>> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On >> Behalf >> Of Tom Glod via use-livecode >> Sent: Monday, August 17, 2020 4:32 PM >> To: How to use LiveCode >> Cc: Tom Glod >> Subject: LibURL and TSNet in LC Indy >> >>

Re: LibURL and TSNet in LC Indy

2020-08-17 Thread Bob Sneidar via use-livecode
;> IT Director >> Evergreen Information Services >> rdim...@evergreeninfo.net >> >> >> -Original Message- >> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On >> Behalf >> Of Tom Glod via use-livecode >> Sent:

Re: LibURL and TSNet in LC Indy

2020-08-17 Thread Tom Glod via use-livecode
iMola > IT Director > Evergreen Information Services > rdim...@evergreeninfo.net > > > -Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On > Behalf > Of Tom Glod via use-livecode > Sent: Monday, August 17, 2020 4:32 PM > To: How

RE: LibURL and TSNet in LC Indy

2020-08-17 Thread Ralph DiMola via use-livecode
..@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Tom Glod via use-livecode Sent: Monday, August 17, 2020 4:32 PM To: How to use LiveCode Cc: Tom Glod Subject: LibURL and TSNet in LC Indy Hi Folks, I am stress testing a rest

LibURL and TSNet in LC Indy

2020-08-17 Thread Tom Glod via use-livecode
Hi Folks, I am stress testing a rest api using liburl, I will also do TSNET But when I open my stack in Livecode Indy, the load URL command uses TSNET Whats funny is that half the requests are failing when it tries to use TSNET. With liburl, 100% success rate using LC Community. I am also