Re: [Long] Moving a REST request from Desktop to Server

2017-03-09 Thread Phil Davis via use-livecode
+1 Andre - curl is definitely your friend for simple LC-server to other server communication. I maintain a server app that uses it to interact with the Vimeo server. https://curl.haxx.se/docs/ Phil Davis On 3/9/17 9:11 AM, Andre Garzia via use-livecode wrote: Hi, I would shell() to curl

Re: [Long] Moving a REST request from Desktop to Server

2017-03-09 Thread Andre Garzia via use-livecode
Hi, I would shell() to curl or a shell script and parse the result. om om On Tue, Mar 7, 2017 at 8:56 PM, Malte Brill via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi all, > > I am trying to move a request I do from a desktop app to a liveCode server > script and am facing the

Re: [Long] Moving a REST request from Desktop to Server

2017-03-08 Thread Richard Gaskin via use-livecode
Malte Brill wrote: > no, I did not considder using a standalone as a CGI engine. I am > in a rather difficult environment with the project (government > servers that have ridiculous tests and approval times for changed > solutions). On top of that, I would not want to lose the benefit > of using

Re: [Long] Moving a REST request from Desktop to Server

2017-03-08 Thread Dan Brown via use-livecode
A how-to for using standalones as CGI's is a fantastic idea! I've spent hours trawling through the mailing list archives for a definitive set of instructions on how to set this up but could never string together enough fragments of information to get it working. On Wed, Mar 8, 2017 at 12:28 AM,

Re: [Long] Moving a REST request from Desktop to Server

2017-03-08 Thread Malte Brill via use-livecode
Hi Richard, no, I did not considder using a standalone as a CGI engine. I am in a rather difficult environment with the project (government servers that have ridiculous tests and approval times for changed solutions). On top of that, I would not want to lose the benefit of using liveCode PHP

Re: [Long] Moving a REST request from Desktop to Server

2017-03-07 Thread Richard Gaskin via use-livecode
Malte Brill wrote: > I am trying to move a request I do from a desktop app to a liveCode > server script and am facing the problem that some of the stuff I use > (most of it libURL stuff) is not available on the server. Now I > wonder how I could translate it… Have you considered running a

[Long] Moving a REST request from Desktop to Server

2017-03-07 Thread Malte Brill via use-livecode
Hi all, I am trying to move a request I do from a desktop app to a liveCode server script and am facing the problem that some of the stuff I use (most of it libURL stuff) is not available on the server. Now I wonder how I could translate it… Scenario is the following: Problem is