Re: TeraScript-Talk: Echo

2020-05-01 Thread Wayne Irvine
Cheers Robert. Wayne > On 2 May 2020, at 12:11 am, Robert Shubert wrote: > > Thanks Wayne, > > I'll see if I can get this addressed. > > Robert > > From: Wayne Irvine [mailto:wa...@byteserve.com.au] > Sent: Friday, May 01, 2020 6:58 AM > To: TeraScript-Talk@terascript.com > Subject: Re: TeraScri

RE: TeraScript-Talk: Echo

2020-05-01 Thread Robert Shubert
Thanks Wayne, I'll see if I can get this addressed. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Friday, May 01, 2020 6:58 AM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: Echo I have to use the external script as Web Call is giving an SSL Handshake

Re: TeraScript-Talk: Echo

2020-05-01 Thread Wayne Irvine
I have to use the external script as Web Call is giving an SSL Handshake error: Error An error occurred while processing your request: File: tdtest.taf Position: WebCall2 Class: Internal Main Error Number: -1001 Unable to send data when processing URL request. wrong when connecting with SSL SSL

RE: TeraScript-Talk: Echo

2020-05-01 Thread Robert Shubert
As of 6.2, the @URL tag and the Web Call action both utilize cURL under the hood. It's better to use the native implementation than an external bash script. Is there some reason you need to do the external script? Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Friday, May 0

Re: TeraScript-Talk: Echo

2020-05-01 Thread Wayne Irvine
Cheers! Makes for a much simpler workflow. Wayne > On 1 May 2020, at 5:18 pm, ubs...@uw.edu wrote: > > If using MacOS bash, the Command Line external call action in TS outputs > results into @@resultset as an array. > > A bash script file ( /usr/local/var/www/website/scripts/get_google.sh ) can

Re: TeraScript-Talk: Echo

2020-05-01 Thread ubs...@uw.edu
If using MacOS bash, the Command Line external call action in TS outputs results into @@resultset as an array. A bash script file ( /usr/local/var/www/website/scripts/get_google.sh ) can be called in the external action's "command" field: #!/bin/bash curl "https://www.google.com/"; echo is not