Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-03-08 Thread David Bovill via use-livecode
Hi Richard - checking in again :) Yes I worked a lot with decentralised protocols and communities, and was looking to integrate those technologies with Livecode. That work got set back when Livecode pivoted away from FOSS. I believe there are still some approaches that can work but would probably

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-03-08 Thread David Bovill via use-livecode
Hi Mike and Richard, the progress I’ve made is along the lines that Richard speaks to in the thread. I have added a little to the earlier work and bundled socket based servers - mainly by making it easy to add and remove logging with before and after handlers, and layers of back scripts that allow

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-28 Thread Richard Gaskin via use-livecode
FWIW I haven't heard from David, but with the economic numbers off to a good start this year I suspect he's just been as busy as most I know. I know of at least one other LC fan with an interest in decentralized protocols, but I'm not sure how far he's gotten with his implementations. I've

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-28 Thread Mike Kerner via use-livecode
just pinging to see if anything more has happened on this and the how list is really quiet On Tue, Feb 6, 2024 at 11:09 PM ambassador--- via use-livecode < use-livecode@lists.runrev.com> wrote: > David Bovill wrote: > > > I've been working for a while on a native server written in Livecode > >

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-06 Thread ambassador--- via use-livecode
David Bovill wrote: > I've been working for a while on a native server written in Livecode > using sockets. I feel it is definitely something that is sorely needed > - but to do it properly is more work that I initially thought. I need > to add HTTP 206 partial content support - >

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-06 Thread Tom Glod via use-livecode
Hey David, I am quite interested in this. Just last night I was working on setting up a Linux distro with Desktop, and Ubuntu with XFCE desktop. Everything seems to be running OK, except for some permissions issues. I have also beaten reworking my multi-core library, so I'd be super curious to

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-06 Thread Mike Kerner via use-livecode
testing? no, for deployment. our newest app could use http sockets to persist comms with our REST server, instead of using long timeouts or pinging the server every few seconds for updates. On Tue, Feb 6, 2024 at 2:29 AM David Bovill via use-livecode < use-livecode@lists.runrev.com> wrote: > For

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread David Bovill via use-livecode
For testing mobile apps in development? I'm using it for an electron-style app, and may also use it for container based microservices. On Tue, 6 Feb 2024 at 00:48, Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > i don't use lc as a server (but maybe i should think about

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread Mike Kerner via use-livecode
i don't use lc as a server (but maybe i should think about it). i use it to write mobile apps, so i could use http sockets on the client side. On Mon, Feb 5, 2024 at 3:19 PM David Bovill via use-livecode < use-livecode@lists.runrev.com> wrote: > I've been working for a while on a native server

Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread David Bovill via use-livecode
I've been working for a while on a native server written in Livecode using sockets. I feel it is definitely something that is sorely needed - but to do it properly is more work that I initially thought. I need to add HTTP 206 partial content support -