Re: Looping a GOSUB

2021-06-10 Thread Jim Idle
None of your lip Weiser ;) On Thu, Jun 10, 2021 at 11:59 PM Rick Weiser wrote: > WOW, a jIdle sighting!! > > On Thursday, June 10, 2021 at 1:58:16 AM UTC-4 ji...@temporal-wave.com > wrote: > >> On Wed, Jun 9, 2021 at 6:55 PM Johan Liebenberg >> wrote: >> >>> Thanks for the reply. >>> Yes as I

Re: Looping a GOSUB

2021-06-10 Thread Rick Weiser
WOW, a jIdle sighting!! On Thursday, June 10, 2021 at 1:58:16 AM UTC-4 ji...@temporal-wave.com wrote: > On Wed, Jun 9, 2021 at 6:55 PM Johan Liebenberg wrote: > >> Thanks for the reply. >> Yes as I said, it works just fine on Linux. I am trying to send some data >> to another server, just a

Re: Looping a GOSUB

2021-06-10 Thread Johan Liebenberg
On Thursday, June 10, 2021 at 3:58:16 PM UTC+10 ji...@temporal-wave.com wrote: > On Wed, Jun 9, 2021 at 6:55 PM Johan Liebenberg wrote: > >> Thanks for the reply. >> Yes as I said, it works just fine on Linux. I am trying to send some data >> to another server, just a few headers with

Re: Looping a GOSUB

2021-06-09 Thread Jim Idle
On Wed, Jun 9, 2021 at 6:55 PM Johan Liebenberg wrote: > Thanks for the reply. > Yes as I said, it works just fine on Linux. I am trying to send some data > to another server, just a few headers with values. The code does not need > to check status as it should not interrupt the current process

Re: Looping a GOSUB

2021-06-09 Thread Johan Liebenberg
Thanks for the reply. Yes as I said, it works just fine on Linux. I am trying to send some data to another server, just a few headers with values. The code does not need to check status as it should not interrupt the current process if it fails for any reason whatsoever. I will pick it up on

Re: Looping a GOSUB

2021-06-08 Thread Jim Idle
I usually find that it is better to say what you are trying to do first. Maybe your approach is not optimal? As in tell us: "I need to contact an http server at http:// and retrieve xyz" Whereas here you are assuming your approach is the correct one, then saying it isn't working. we should

Re: Looping a GOSUB

2021-06-06 Thread Johan Liebenberg
jBASE 5.2.31 on Windows Server 2012. Yes thanks I saw the jCURL command and I will investigate in future to do a switch over. Anyway, I got the batch file thing to work by not calling the subroutine and instead calling the same code in 3 different places. More cleanup to do later. Thanks :)

Re: Looping a GOSUB

2021-06-04 Thread Peter Falson
What version of jBASE are you using? We support curl natively now https://docs.zumasys.com/jbase/miscellaneous/jcurl/#additional-helper-functions Sent from my iPhone > On Jun 4, 2021, at 5:29 AM, Johan Liebenberg wrote: > >  > Building a small batch file to run on a Window jBase server. >

Looping a GOSUB

2021-06-04 Thread Johan Liebenberg
Building a small batch file to run on a Window jBase server. Batch file executes a curl command build inside the jBase program. I 1st tried to EXECUTE the curl command CAPTURING RESULTS, but the remote server returns an error. I filtered all the illegal character out of the curl command just