RE: TeraScript-Talk: The effect of ANSI99SQL=true

2023-10-22 Thread Robert Shubert
Check the QuoteValue setting in the Insert/Update actions. If that is true an empty string should insert/update as '' not NULL. From: Andrej Popovic [mailto:and...@workflowengine.co.uk] Sent: Tuesday, October 03, 2023 6:25 AM To: terascript-talk@terascript.com Subject: TeraScript-Talk: The

RE: TeraScript-Talk: JSON post to API endpoint

2023-07-23 Thread Robert Shubert
You have access to the HTTP header using the <@HTTPATTRIBUTE> tag. Note that <@HTTPATTRIBUTE Full_Header> will return everything in an array, which you can then parse to get custom headers. The payload of the request is available in <@HTTPATTRIBUTE post_args> TS7 can't parse json and

RE: TeraScript-Talk: Help Desk App

2023-07-23 Thread Robert Shubert
The image (binary) data needs to be captured and sent to TS using multipart form encoding (same as the kind of form you need when there's a file input present) There are JS tools that can do this for you. In TS you can access the binary data of the image just like any other argument (with

RE: TeraScript-Talk: client.ini

2022-10-23 Thread Robert Shubert
Clients.ini is read by the WISP module in the IIS or Apache server. It is verified to be the latest file on each new incoming request, which is to say that changes take effect immediately. That said, some aspects of the server affinity functionality, which is driven by codes in the cookie,

RE: TeraScript-Talk: Automatic tag execution

2021-07-03 Thread Robert Shubert
TeraScript has built in CRONTAB functionality that can do this. In the Programmer's Reference, review the configuration variable named crontabFile. Robert -Original Message- From: Rich [mailto:r...@ogdengroup.com] Sent: Saturday, July 03, 2021 1:18 PM To: TeraScript-Talk@terascript.com

RE: TeraScript-Talk: 30 day license

2021-06-30 Thread Robert Shubert
That banner is present when you have the configuration license loaded. Double check that both the LICENSE= line and the license.ini file have the new license data, restart the service and then check events.log to see which license it's loading. Robert From: Rich

RE: TeraScript-Talk: Braintree payment system - Java

2020-05-06 Thread Robert Shubert
Steve, The Braintree site only offers pre-built SDKs. None of which will work with TS7, unfortunately. The best option, I believe (I haven't dug into it) is to download one of the SDKs (I would do PHP) and then rewrite it in TS Robert From: Fogelson, Steve [mailto:foge...@askics.net]

RE: TeraScript-Talk: Echo

2020-05-01 Thread Robert Shubert
May 2020, at 11:52 pm, Robert Shubert mailto:rshub...@tronics.com> > wrote: 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

RE: TeraScript-Talk: Finding a file

2020-04-13 Thread Robert Shubert
Steve, Just write your file with the overwrite setting to error. Then catch the error (place erroring handling code and @CLEARERRORS) in the error pane of the file write action. This will push the file name duplication check to the OS where it'll be as fast as possible. The other

RE: TeraScript-Talk: FedEx return label

2020-02-19 Thread Robert Shubert
@CIPHER has base64 decoding. The result is binary so just place the tag in the data body of a Write File Action. From: Fogelson, Steve [mailto:foge...@askics.net] Sent: Wednesday, February 19, 2020 12:02 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: FedEx return label I am

RE: TeraScript-Talk: API no longer working. SSL error

2019-12-11 Thread Robert Shubert
eaders and data. But different results. Can anyone see what I am overlooking? Wayne On 6 Dec 2019, at 2:39 am, Robert Shubert mailto:rshub...@tronics.com> > wrote: It's hard to say if updating cURL on the OS will break TS. When we build TS we do so against the prevailing

RE: TeraScript-Talk: Writing array back into MySQL DB

2019-10-16 Thread Robert Shubert
SQL only provides for updating a row or rows with one set of values. Assuming that you're revising your array with different values per row, there's no way to do this except to iterate the array and do an Update action per row. Inserting is a different situation, since INSERT's VALUES clause

RE: TeraScript-Talk: How to reduce parse call count in Oracle fromWitango

2019-10-08 Thread Robert Shubert
Witango won't give you any options automatically. One option you have is to manually create a cached query. I'm not sure how to do this on Oracle, but in SQL Server it would be sp_prepare() followed by multiple sp_execute(). That's probably a tricky implementation, and so I may suggest

RE: [External] RE: TeraScript-Talk: Will Witango 5.5 support forOracle 12.x

2019-08-17 Thread Robert Shubert
cript-Talk: Will Witango 5.5 support forOracle 12.x Hi Robert, Thanks for your reply :) Currently our application is running in Windows 2003 server and connecting the Oracle 10g using ODBC. So how about using ODBC instead of JDBC ? Thanks & Regards Prabakaran _ From:

RE: TeraScript-Talk: Will Witango 5.5 support for Oracle 12.x

2019-08-16 Thread Robert Shubert
Considering the age of Witango 5.5 (15 years now) I can't be sure, you'll have to test the configuration yourself. I would suggest, however, that if you have a problem with OCI, try switching to JDBC. Oracle works well with JDBC, but you may need to run an older JVM. Note that newer versions

RE: TeraScript-Talk: 7.1.5 pre-release

2019-07-26 Thread Robert Shubert
newer JVMs in a future release. The installer is signed, but I'd like to know if you have complaints about signing when you install it. Thanks, Robert From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Friday, July 26, 2019 10:58 AM To: TeraScript-Talk@terascript.com Subject

RE: TeraScript-Talk: First time doing Direct_DBMS

2019-07-26 Thread Robert Shubert
Direct_DBMS Ok, so in theory should this work? What am I missing? Wayne On 26 Jul 2019, at 1:40 am, Robert Shubert mailto:rshub...@tronics.com> > wrote: The alias t1 is set in the query by having it follow the table name, so yes, "FROM test t1" is creating the alias t1 @

TeraScript-Talk: 7.1.5 pre-release

2019-07-26 Thread Robert Shubert
OSX Users, Please consider downloading the latest build of 7.1.5 from this link. I believe this is the release build, but I'd like to know if anyone hits any problems with it. https://www.terascript.com/_downloads/TeraScriptServer715_OSX.zip Thanks, Robert

RE: TeraScript-Talk: First time doing Direct_DBMS

2019-07-26 Thread Robert Shubert
? Wayne On 26 Jul 2019, at 1:40 am, Robert Shubert mailto:rshub...@tronics.com> > wrote: The alias t1 is set in the query by having it follow the table name, so yes, "FROM test t1" is creating the alias t1 @BOUNDVALS should work normally, in the query below there are

RE: TeraScript-Talk: First time doing Direct_DBMS

2019-07-25 Thread Robert Shubert
one). Either way, this statement used in the Direct_DBMS action results in an error still. <@BOUNDVALS> is pink in Terascribe and ignored by Terascript. Wayne On 24 Jul 2019, at 12:01 am, Robert Shubert mailto:rshub...@tronics.com> > wrote: You can see generated SQL with @SQL

RE: TeraScript-Talk: 7.1.5 pre-release

2019-07-23 Thread Robert Shubert
Steve Fogelson From: Robert Shubert mailto:rshub...@tronics.com> > Sent: Sunday, July 21, 2019 6:49 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: TeraScript-Talk: 7.1.5 pre-release Windows Users, Please consider downloading the l

RE: TeraScript-Talk: Web Service

2019-07-23 Thread Robert Shubert
ng: mypostargnames: PostArg mypostargsarray: <@__REF name=OrderSummary userref=__184A07DC9AA3E1895D363564> mypostargstext: <@__REF name=OrderSummary userref=__184A07DC9AA3E1895D363564> PostArgArray: <@__REF name=OrderSummary userref=__184A07DC9AA3E1895D363564> PostA

RE: TeraScript-Talk: First time doing Direct_DBMS

2019-07-23 Thread Robert Shubert
>>> - Steve K >>> >>> >>> On 7/10/19 7:06 PM, ubslab wrote: >>>> Wayne, >>>> >>>> Are you able to connect to FM table.columns in the Terascribe >>>> editor JDBC/ODBC panel? >>>> >>>> - Steve K

RE: TeraScript-Talk: Web Service

2019-07-12 Thread Robert Shubert
correct format to be used in that field be the following? <@var request$OrderSummary[<@var request$OrderRow>,*]> <@var request$OrderDetail> <@var request$SaleCredit> <@var request$Activity> <@var request$SalesReceipt> <@var request$ToDoItem> Al

RE: TeraScript-Talk: Web Service

2019-07-11 Thread Robert Shubert
I think you're going about it the right way. A web service is nothing more than a regular TAF, but one that a computer is going to send a request to, rather than a browser. I wouldn't use the "web service" technology which is soap based, think along the lines of other http APIs you've used

RE: TeraScript-Talk: First time doing Direct_DBMS

2019-07-10 Thread Robert Shubert
Wayne, First do a simple query like "SELECT 1" just to double check the DBMS. Then try grabbing just one row "SELECT packagename FROM Packages WHERE packagename = '{known name}'" If that works, then we may be looking for a bug dealing with non-value. Try "SELECT packagename FROM Packages

RE: TeraScript-Talk: ELEMENTATTRIBUTE deprecated?

2019-07-08 Thread Robert Shubert
Wayne, It's a bug in 7.0.1 that the highlighting for that tag (and a couple of others) didn't work correctly. It was addressed in 7.0.3 Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Sunday, July 07, 2019 7:36 PM To: TeraScript-Talk@terascript.com Subject:

RE: TeraScript-Talk: Email functionality

2019-06-11 Thread Robert Shubert
The Programmer's Reference online (6.2.3) has current documentation for the @EMAIL and @EMAILSESSION tags. These tags work a little differently than typical. You will call @EMAILSESSION is succession issuing commands: Open > list > retrieve > delete > close You pass the same sessionid

RE: TeraScript-Talk: Web Call action question

2018-12-21 Thread Robert Shubert
Easiest way to do what you need is to use the Argument Array option at the top of the Post Data pane. Create an array beforehand with each row being an argument pair. Column 1 is the Name and Column 2 is the Value. The structure is identical to the Arguments block you're using now. Only

RE: TeraScript-Talk: File Upload

2018-10-29 Thread Robert Shubert
In 7.1.1 I added the tag @POSTARGFILENAME to obtain the posted file name from a type=file argument. From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Monday, October 29, 2018 3:28 AM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: File Upload I’ve used basic

TeraScript-Talk: macOS and Homebrew

2018-10-12 Thread Robert Shubert
macOS users: Since Apple tends to change things around with each release of macOS, we're considering changing TeraScript to depend on software installed by Homebrew (https://brew.sh/) Therefore we'd like to ask our macOS users if they have experience with Homebrew, and if they would be

TeraScript-Talk: Version 7 support question

2018-09-13 Thread Robert Shubert
Users of TeraScript, With nearly 6 years of development now spent on version 8, we're looking at how best to schedule version 7's end-of-life. To help us understand our customers' expectations, I'd like to ask a couple questions. Please reply to supp...@terascript.com

RE: TeraScript-Talk: Webcalls and HTTPS

2018-09-12 Thread Robert Shubert
Looks like you just reported a bug. From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Tuesday, September 11, 2018 5:07 PM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: Webcalls and HTTPS 7.1.3.1 On 12 Sep 2018, at 4:53 am, Robert Shubert mailto:rshub

RE: TeraScript-Talk: Webcalls and HTTPS

2018-09-11 Thread Robert Shubert
Version of TS? From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Tuesday, September 11, 2018 12:42 AM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: Webcalls and HTTPS I have this and get the error: On 11 Sep 2018, at 1:12 pm, Robert Shubert mailto:rshub

RE: TeraScript-Talk: Webcalls and HTTPS

2018-09-10 Thread Robert Shubert
You just need to use an https:// url and the server will switch to SSL. From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Monday, September 10, 2018 5:15 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Webcalls and HTTPS Hi all, I have a platform that gets it’s

TeraScript-Talk: httpOnly and Secure cookies

2018-07-31 Thread Robert Shubert
I've come up with a way for older servers (Witango/TeraScript < 7.0.3) to return a header with httpOnly and Secure cookies. First, make sure that you witango.ini/server.ini has a proper path for DEFAULTHEADER= Next, edit the file pointed to (should be /MiscFiles/header.tml) to contain:

RE: TeraScript-Talk: Insert action results

2018-07-20 Thread Robert Shubert
nt: Friday, July 20, 2018 9:17 AM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: Insert action results <@NUMAFFECTED> returns 1 > On 21 Jul 2018, at 1:52 am, Robert Shubert wrote: > > It may now. Check @NUMAFFECTED afterwards. > > This is something we're loo

RE: TeraScript-Talk: maxlength="0"

2018-07-20 Thread Robert Shubert
0 Jul 2018, at 6:50 am, Robert Shubert mailto:rshub...@tronics.com> > wrote: This should work as expected, meaning, it should set the maxlength attribute on the form to the length of the field in the database. Can you tell me what kind of column it is? When you click on the column in t

RE: TeraScript-Talk: Insert action results

2018-07-20 Thread Robert Shubert
It may now. Check @NUMAFFECTED afterwards. This is something we're looking at supporting better in v8 with an explicit flag to obtain the identity after insert. JDBC supports a mechanism for doing so, but we need to explicitly invoke it. Robert -Original Message- From: Wayne Irvine

RE: TeraScript-Talk: Remove non-alphanumeric characters

2018-07-19 Thread Robert Shubert
Before we get into the regex, @KEEP might be an option: <@! "remove everything but letters and numbers"> <@KEEP <@ARG input> abcdefghijklmnopqrstuvwxyz1234567890> Regex in @REPLACE works a little differently than what the SO article says. I adapted one of the answers to this: <@REPLACE <@ARG

RE: TeraScript-Talk: maxlength="0"

2018-07-19 Thread Robert Shubert
This should work as expected, meaning, it should set the maxlength attribute on the form to the length of the field in the database. Can you tell me what kind of column it is? When you click on the column in the database tab, what does the size: property say? (at the bottom of the tab)

RE: TeraScript-Talk: upgrading to High Sierra

2018-07-17 Thread Robert Shubert
This issue was addressed in 7.0.3 From: Muro, Matthew [mailto:matt_m...@harvard.edu] Sent: Tuesday, July 17, 2018 10:12 AM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: upgrading to High Sierra Does anyone know of a flag that can be set in server.ini, header.htx or

RE: TeraScript-Talk: external action failing

2018-07-14 Thread Robert Shubert
a workaround without having to upgrade the entire system at this time. Thanks Robert, Peter Peter Dobbs President | ENGINESS | P: 416.901.6151 | F: 416.901.6150 | www.enginess.io From: Robert Shubert mailto:rshub...@tronics.com> > on behalf of Robert Shubert mailto

RE: TeraScript-Talk: external action failing

2018-07-12 Thread Robert Shubert
I have had a suspicion that the external action can lock against itself under load. Years ago I was using a multi instance setup and found that the servers locked up in a way that you are describing. I went to a virtualized configuration with one instance per virtual and the problem went away.

RE: TeraScript-Talk: An SSL Connection could not be established

2018-07-10 Thread Robert Shubert
immediately. On Jul 10, 2018, at 11:22 AM, Robert Shubert mailto:rshub...@tronics.com> > wrote: Yes and no. No, because we dropped the WISP protocol. V8s primary entry point is via HTTP through Jetty. Users can opt to use Jetty as the only HTTP/S solution for their sites, or can reverse prox

RE: TeraScript-Talk: An SSL Connection could not be established

2018-07-10 Thread Robert Shubert
Yes and no. No, because we dropped the WISP protocol. V8s primary entry point is via HTTP through Jetty. Users can opt to use Jetty as the only HTTP/S solution for their sites, or can reverse proxy from Apache/IIS/etc to gain benefits of those servers. V8 does however also have a CLI

RE: TeraScript-Talk: An SSL Connection could not be established

2018-07-10 Thread Robert Shubert
and they all seem to lock up the service. Any help would be appreciated. Thanks Steve From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Monday, June 25, 2018 7:19 AM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk:

RE: TeraScript-Talk: Terascribe 7.0.3

2018-06-25 Thread Robert Shubert
No issues like this have been submitted previously. You may want to consider trying v8. -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Sunday, June 24, 2018 11:00 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Terascribe 7.0.3 Just found

RE: TeraScript-Talk: An SSL Connection could not be established

2018-06-25 Thread Robert Shubert
Verify that URL works from the server that TS is running on. Robert From: Fogelson, Steve [mailto:foge...@askics.net] Sent: Sunday, June 24, 2018 12:39 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: An SSL Connection could not be established I am converting sites to SSL

RE: TeraScript-Talk: Ports

2018-06-21 Thread Robert Shubert
Each Hyper-V virtual server will have its own IP – which is enough to distinguish the TS servers in the pool. So: [Web Server] Clients.ini TERASCRIPT_SERVER=192.168.100.101:18170:192.168.100.102:18170 [HYPERV TS SERVER 1] Server.ini LISTENERADDRESS=192.168.100.101 LISTENERPORT=18170

RE: TeraScript-Talk: Numeric display default

2018-06-21 Thread Robert Shubert
TS won’t process numbers unless you pass them through a number formatter using format= or @FORMAT or @CALC I suspect the default precision on your database is different now, what was 0 is now 6. Might also be a quirk of a new ODBC connector (maintaining more precision). If the column type

RE: TeraScript-Talk: Mail relaying

2018-06-12 Thread Robert Shubert
The Relay Access Denied error should be simple to address – do a search for that and postfix. There should be a setting to allow local relay without credentials. Looks like something along the lines of: smtpd_recipient_restrictions = permit_mynetworks You can try using

RE: TeraScript-Talk: Problems after TS 7 Server update ...

2018-05-24 Thread Robert Shubert
First thing to check is that the plugin/module is loading. This usually happens on OSX, especially with the "Server" package installed because the paths to the Apache configuration changes. The install scripts with the word "server" in them are meant to address this. Robert -Original

RE: TeraScript-Talk: longbinary

2018-05-08 Thread Robert Shubert
Yes, this is the header you’ll need to set. Note that usually web servers will add the Content-Length for you. I would also like to mention that @LENGTH actually counts the bytes of the value. If you have your value in a variable already, it’s better to do <@VARINFO varName size> Robert

RE: TeraScript-Talk: Handling VARBINARY(MAX)

2018-05-03 Thread Robert Shubert
: Re: TeraScript-Talk: Handling VARBINARY(MAX) On 3 May 2018, at 6:09 am, Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> > wrote: TS 7.1.1 added @POSTARGFILENAME which is a convenient way to get the original filename from a . Is there a TS7^ Developers G

RE: TeraScript-Talk: Handling VARBINARY(MAX)

2018-05-02 Thread Robert Shubert
Andrej, This should work – but be sure to not handle the data at all and use a directDBMS with the @BIND tag. So: <@ASSIGN binaryData <@ARG file>> Then in a DirectDBMS: INSERT INTO files (data) VALUES (<@BIND binaryData>) notes about TS6: It’s a 32-bit app, so you’re limited

RE: TeraScript-Talk: <@ELEMENTATTRIBUTE> is pink!

2018-04-09 Thread Robert Shubert
I think both the singular and plural forms of that tag will work. Sometimes TeraScribe doesn't know about tags that were added at certain times. -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Monday, April 09, 2018 1:38 AM To: TeraScript-Talk@terascript.com

RE: TeraScript-Talk: Facebook social login

2018-03-20 Thread Robert Shubert
The suggestion was made to check out Amazon Cognito. -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Monday, March 19, 2018 5:36 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Facebook social login Years ago I wrote some Terascript to do

RE: TeraScript-Talk: Facebook social login

2018-03-20 Thread Robert Shubert
I haven't worked with the current API version. But let me know if you any help, it's fairly straight forward. Robert -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Monday, March 19, 2018 5:36 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk:

RE: TeraScript-Talk: Accessing tafs in other folders

2018-02-23 Thread Robert Shubert
Yes, it does. Note that on my servers, I have @WEBROOT set in the absolutepathprefix, so all paths are automatically prefixed to your webroot. Therefore, typing: /file.txt is as if you typed: <@WEBROOT>file.txt -Original Message- From: D Mark Weiss [mailto:dadwe...@mac.com] Sent:

RE: TeraScript-Talk: Distinct IPs

2018-02-22 Thread Robert Shubert
Wayne, Look for something simple because that should work. If you’re stuck forward the TAF or a reproduction of the problem to me at support. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Wednesday, February 21, 2018 3:42 PM To: TeraScript-Talk@terascript.com

RE: TeraScript-Talk: Return a directory listing

2018-02-21 Thread Robert Shubert
As of version 6 there's a Directory Listing action. -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Tuesday, February 20, 2018 5:30 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Return a directory listing As usual, 5 seconds after I press

RE: TeraScript-Talk: TeraScript 6.2.7 [Advanced Edition] 30 seconds freeze when timing out variables, on Windows Server platform

2017-07-21 Thread Robert Shubert
There may be a connection there. The VTT uses an internal http web client that broke over the years with changes to SSL/TLS. I believe that you’ll find that forcing non-SSL protocol will correct the issue. The same goes for startup/shutdown URLs and cron URLs. It’s best to avoid HTTPS.

RE: TeraScript-Talk: Windows error 2 occured while loading the Java VM

2017-07-18 Thread Robert Shubert
Also try running the installer as administrator. From: Fogelson, Steve [mailto:foge...@askics.net] Sent: Monday, July 17, 2017 3:02 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Windows error 2 occured while loading the Java VM I am trying to load TeraScribe 7.03 on a new

TeraScript-Talk: new password hashing tags

2017-05-30 Thread Robert Shubert
All- We are adding a pair of tags to help you store passwords. These tags will be available in the upcoming 7.1.5 and 8.0.6 releases. @HASHPASSWORD password This tag creates a hash of the given password. You store this hash in your database for later verification. This tag

TeraScript-Talk: 8.0.5

2017-05-24 Thread Robert Shubert
All- I just released 8.0.5 Robert To unsubscribe from this list, please send an email to lists...@terascript.com with "unsubscribe terascript-talk" in the body.

TeraScript-Talk: 8.0.4 released

2017-05-16 Thread Robert Shubert
All, We've released 8.0.4 for Windows and OSX. The problem with the 8.0.3 installer should be corrected. Robert To unsubscribe from this list, please send an email to lists...@terascript.com with "unsubscribe terascript-talk" in the body.

RE: TeraScript-Talk: WiTango 5.5 @URL to consume api

2017-04-28 Thread Robert Shubert
It’s likely that the API you are connecting to has disabled SSL (in favor of TLS). Witango 5.5 won’t use TLS due to the calls it makes to the OS. You have a few options: Don’t use SSL (if the API supports it) Use a COM object like the WinHttpRequest 5.1 (This may not work on older OSes)

RE: TeraScript-Talk: XML File header

2017-04-14 Thread Robert Shubert
4 kevin.boyds...@nasa.gov <mailto:kevin.boyds...@nasa.gov%3c/field> NNA1234567 comment From: Robert Shubert <rshub...@tronics.com <mailto:rsh

TeraScript-Talk: TeraScript 8.0.3 released

2017-03-20 Thread Robert Shubert
TeraScript 8.0.3 has been released. Robert To unsubscribe from this list, please send an email to lists...@terascript.com with "unsubscribe terascript-talk" in the body.

RE: TeraScript-Talk: Off Topic - MySQL

2017-03-16 Thread Robert Shubert
begin modified with WRITE, INSERT and UPDATEs? Thanks Steve From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Wednesday, March 15, 2017 10:15 AM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: Off Topic - MySQL Schem

RE: TeraScript-Talk: Off Topic - MySQL

2017-03-15 Thread Robert Shubert
Schema name (your db_name) support in TS is a little sketchy. We’re trying to improve it, but it’s something that needed to be done correctly upfront and wasn’t. I might suggest: Starting with db1.inventory and db1.inventory create database “common” and move all inventory into a common

RE: TeraScript-Talk: setting up TS8 - questions, questions

2017-01-26 Thread Robert Shubert
Turns out, you can. Place customTagsDirectoryPath=path/to/tags in server/bootstrap.properties From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Thursday, January 26, 2017 3:03 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: setting up TS8 - questions

RE: TeraScript-Talk: setting up TS8 - questions, questions

2017-01-26 Thread Robert Shubert
om tag xml files and tcfs if these are not to be located in the default locations? How do we set up to view the previous debug display? Sent from my MiniMega iPad �� On Jan 26, 2017, at 11:27 AM, Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> > wrote: All

RE: TeraScript-Talk: setting up TS8 - questions, questions

2017-01-26 Thread Robert Shubert
and tcfs if these are not to be located in the default locations? How do we set up to view the previous debug display? Sent from my MiniMega iPad �� On Jan 26, 2017, at 11:27 AM, Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> > wrote: All: There’s a webpage here: https:

TeraScript-Talk: setting up TS8

2017-01-26 Thread Robert Shubert
All: There's a webpage here: https://www.terascript.com/8 With a few notes about getting v8 running. It's specific to Windows, but OSX is very similar - just different paths, and the install/control scripts. Robert To unsubscribe from this

RE: TeraScript-Talk: TeraScript 8 for OSX

2017-01-26 Thread Robert Shubert
OSX users- Once you install, in /Applications/TeraScript 8/server/bin/osx there is an install script which will setup the service. There is also a control script here to start/stop/restart it. Robert From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Wednesday, January 25, 2017 11

RE: TeraScript-Talk: Avalara Sales Tax Calculator

2016-09-21 Thread Robert Shubert
Steve, I’ve not had any experience with that API, but would be happy to look at the specific issue you are having if you want to send me an email. Robert From: Fogelson, Steve [mailto:foge...@askics.net] Sent: Tuesday, September 20, 2016 5:26 PM To: TeraScript-Talk@terascript.com

TeraScript-Talk: TeraScript Server 7.1.3 patch released

2016-09-07 Thread Robert Shubert
A bug was found in the initial release of 7.1.3. In rare circumstances this bug will cause data source usernames and passwords to decrypt incorrectly. This issue has been corrected and new installers are now available. If you've already downloaded and installed 7.1.3, please download the

RE: TeraScript-Talk: Question - <@appfile> not evaluating

2016-09-06 Thread Robert Shubert
Dave, I wouldn’t say this is a known issue, but I have seen this happen extremely rarely, on the order of once in a few years. The issue is likely due to some memory corruption and the pointer to @APPFILE has been lost. It might be interesting to see if there was an error logged in

TeraScript-Talk: TeraScript Server 7.1.3 for OSX

2016-09-06 Thread Robert Shubert
Mac Customers, The 7.1.3 installer for OSX is now available. Please note that this build was done on OS X 10.10 (Yosemite) for compatibility reasons. If you are running OS X 10.11 (El Capitan) and encounter problems installing or running this release, send an email to supp...@terascript.com

RE: TeraScript-Talk: Web Call and TLS 1.1

2016-08-23 Thread Robert Shubert
services. From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, August 23, 2016 2:02 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: Web Call and TLS 1.1 TS 7.0.7 and 7.1.1 is limited to TLS 1.0. You should contact Sale

RE: TeraScript-Talk: Web Call and TLS 1.1

2016-08-23 Thread Robert Shubert
TS 7.0.7 and 7.1.1 is limited to TLS 1.0. You should contact Salesforce and ask them to reinstate TLS 1.0 support. TS 7.1.3 will support TLS 1.2. We just recently did this work and are now in testing and preparing for release. I can’t say when, exactly, it’ll be ready since I’m still chasing

RE: TeraScript-Talk: Problem on Listening Terascript port

2016-08-09 Thread Robert Shubert
in witango to accept the cookies more than 1000/2000 characters ? Thanks & Regards Prabakaran _ From: Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> > Sent: Monday, August 8, 2016 11:56:29 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-

RE: TeraScript-Talk: How to get the HTTP header value in Terascript

2016-08-05 Thread Robert Shubert
e done ? Thanks & Regards Prabakaran _____ From: Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> > Sent: Friday, August 5, 2016 9:32:02 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: How

RE: TeraScript-Talk: Problem on Listening Terascript port

2016-08-05 Thread Robert Shubert
aran _ From: Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> > Sent: Friday, August 5, 2016 9:19:00 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: Problem on Listening Terascript port It so

RE: TeraScript-Talk: How to get the HTTP header value in Terascript

2016-08-05 Thread Robert Shubert
<@HTTPATTRIBUTE fullheader> You will also need to turn on full header support in the clients.ini. Please review the documentation for details: http://www.terascript.com/_downloads/Witango%5F5.5%5FWhats%5FNew.pdf.zip From: prabakaran.jeyaku...@accenture.com

RE: TeraScript-Talk: Terascript>Imagemagick>Ghostscript

2016-04-18 Thread Robert Shubert
0 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72" -dFirstPage=1 -dLastPage=1 "-sOutputFile=/var/tmp/magick-892621OchGEQb8gT8%d" "-f/var/tmp/magick-89262EysDvvpKoL3W" "-f/var/tmp/magick-89262wrsSJraORuPz"

RE: TeraScript-Talk: UserReferenceArgument Question

2016-04-16 Thread Robert Shubert
This behavior was changed in 6.2.1. Here is the pertinent change log: Added server key (leading 12 digits) to the user reference portion of the output of @USERREFERENCEARGUMENT so that this tag will work with load balanced servers. Note that the value of the server key is derived from the

RE: TeraScript-Talk: Terascript>Imagemagick>Ghostscript

2016-04-15 Thread Robert Shubert
The external action creates a resultset – are you displaying this to see if there is anything useful in it? From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Thursday, April 14, 2016 9:29 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Terascript>Imagemagick>Ghostscript

RE: TeraScript-Talk: Best way to parse JSON objects

2016-04-14 Thread Robert Shubert
with the sever object's set variable. Does TeraScript still have a JS action or JS tag? On Apr 13, 2016 19:25, "Robert Shubert" <rshub...@tronics.com <mailto:rshub...@tronics.com> > wrote: Dave, TS 7 doesn’t have a JSON parser built-in. It’s something we can support in 8

RE: TeraScript-Talk: Best way to parse JSON objects

2016-04-13 Thread Robert Shubert
Dave, TS 7 doesn’t have a JSON parser built-in. It’s something we can support in 8 because we have nested collections. I whipped up a simple JSON parser, which is attached. It’s just a block of TML that you can adapt. It’s not very powerful and won’t support nested objects (because TS 7

RE: TeraScript-Talk: TeraScript Server 8 Public Beta

2016-03-31 Thread Robert Shubert
upgrade it to El Capitan first. --- Sent from my Mega iPad �� On Mar 31, 2016, 6:19 PM -0400, Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> >, wrote: Yes, and other web servers as well. We suggest to work in an isolated environment (like a vir

RE: TeraScript-Talk: TeraScript Server 8 Public Beta

2016-03-31 Thread Robert Shubert
: TeraScript Server 8 Public Beta By other configurations, do you mean other Terascript servers? Sent from my iPad Air 2 �� On Mar 30, 2016, 9:17 PM -0400, Robert Shubert <rshub...@tronics.com <mailto:rshub...@tronics.com> >, wrote: All- We are happy to announce the

TeraScript-Talk: TeraScript Server 8 Public Beta

2016-03-30 Thread Robert Shubert
All- We are happy to announce the availability of the public beta for TeraScript Server version 8. We would like anyone who is interested in testing the software and providing feedback to review this web page: https://www.terascript.com/beta8 And download the installer here:

RE: TeraScript-Talk: Strange empty error

2016-01-05 Thread Robert Shubert
In TS 7, timeouts are now standard errors so they can be caught. However, they don't always throw correctly and I believe this is what you are seeing. Try setting QUERYTIMEOUT much higher (like 900) and running your TAF again. Robert -Original Message- From: Ian Evans

TeraScript-Talk: TeraScript Server 7.1.1

2016-01-04 Thread Robert Shubert
We are pleased to announce the release of TeraScript Server 7.1.1 TeraScript 7.1 is the final release of the 7.x product line and, for the server, the final release based on the codebase that can be traced back to the 90s. This release will serve several purposes over the next few years. First,

TeraScript-Talk: TeraScript 8 Beta program

2015-07-30 Thread Robert Shubert
TeraScript Developers, Tronics is looking for people who are interested in actively participating in the version 8 beta. Participation will involve installing builds roughly once per week and testing your own software on them. Should you encounter issues, you would provide code or

RE: TeraScript-Talk: Cookie Expiry

2015-07-29 Thread Robert Shubert
OR - The browser does not examine any information sent with a 204 response (including cookies.) So the browser was never receiving the updated cookie expiry/values I was trying to send. Leaving request$httpheader to the default state fixed the problem. Thanks, -Ian On 07/28/15 08:25, Robert

RE: TeraScript-Talk: Cookie Expiry

2015-07-28 Thread Robert Shubert
Ian, I did a quick test and couldn't reproduce your issue. @CALC len(@VAR cookie$whatever) returns 0 Please make up a test case - a TAF/TML that sets the cookie, then unsets the cookie, then tests the cookie that shows the problem and email it to supp...@terascript.com. Thanks, Robert

  1   2   >