Re: [Jprogramming] GET POST http utilities.

2016-09-12 Thread John Baker
Ahh, A good reason to move to win10 On Mon, Sep 12, 2016 at 3:43 PM, greg heil wrote: > On 12 September 2016 at 14:26, John Baker wrote: > > Things like https 64 bit curl are so fundamental that the irritants > should be crushed on common OSs by now. > > i just used curl under W10 64b, native

Re: [Jprogramming] GET POST http utilities.

2016-09-12 Thread greg heil
On 12 September 2016 at 14:26, John Baker wrote: > Things like https 64 bit curl are so fundamental that the irritants should be > crushed on common OSs by now. i just used curl under W10 64b, natively in powershell, and it worked on a https url... ~greg krsnadas.org ---

Re: [Jprogramming] GET POST http utilities.

2016-09-12 Thread John Baker
Just after I sent this message I remembered that the mac supports curl from it's bash terminal. I fired up a mac, went to the terminal, and tried https curl commands. It worked. From inside J's JHS this works shell 'curl -v https//' The payload JSON is returned which is what I was look

Re: [Jprogramming] GET POST http utilities.

2016-09-12 Thread Gilles Kirouac
John You don't say much about the problem (error type...). Curl supports https. If it has to do with a rejected SSL certificate, google (curl https) proposes the following url: http://stackoverflow.com/questions/10079707/https-connection-using-curl-from-command-line The discussion t

Re: [Jprogramming] GET POST http utilities.

2016-09-12 Thread Raul Miller
I use the curl which is bundled in cygwin. So far, it has worked fine with https. That said, I am trying to remember if I had to install some certificates on my machine for that to work. You might try adding --insecure to your curl command line options and seeing if that makes it work. Thanks,

[Jprogramming] GET POST http utilities.

2016-09-12 Thread John Baker
I am hacking together a simple REST interface in JHS that makes use of https GET and POST. All the documented example calls use CURL but unfortunately, I cannot get a CURL to work with HTTPS on my win64 machine. Are there any handle GET POST utilities in the J library? Or do any of you have advi