RE: TeraScript-Talk: Re: Witango-Talk: MacOS 10.7 ODBC

2012-02-11 Thread Robert Shubert
> > On Jul 30, 2011, at 1:12 PM, Robert Shubert wrote: > >> Roland, >> >> The setup in Witango 6.0 + on OS X is that the Studio uses JDBC to >> introspect the database (to load it into the Studio Database tab for drag >> and drop). >> >> If you s

RE: TeraScript-Talk: Re: Witango-Talk: MacOS 10.7 ODBC

2012-02-12 Thread Robert Shubert
: TeraScript-Talk: Re: Witango-Talk: MacOS 10.7 ODBC On Feb 11, 2012, at 8:24 PM, Robert Shubert wrote: > Roland, > > Is there any information shown in the console? no > > Are your JDBC Drivers set properly? how do I test? pre-existing data sources work fine. Can create a JDBC dat

RE: TeraScript-Talk: Imagemagick for CAPTCHA

2012-02-13 Thread Robert Shubert
Wayne, You can do on-the-fly image creation/manipulation with objects, such as COM and JavaBean. I'm on Windows, and I use two COM based image manipulators to do similar work - although I've never developed a CAPTCHA routine. Since you're on OSX, it's probably the case that you'll need to creat

RE: TeraScript-Talk: FW: Witango-Talk: Re-Directs

2012-02-27 Thread Robert Shubert
to call the same taf over and over until a condition (based on arguments contained within the url) is met could result in the taf running on multiple instances. Thanks Steve Fogelson Internet Commerce Solutions From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Monday, August 15

RE: TeraScript-Talk: Date and Timse Calculation

2012-03-05 Thread Robert Shubert
Essentially: <@SECSTOTS <@CALC <@TSTOSECS <@TOGMT <@CURRENTTIMESTAMP>>>+(8*60*60)>> Robert From: WebDude [mailto:webd...@cipromo.com] Sent: Monday, March 05, 2012 9:01 AM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Date and Timse Calculation Hi Folks, I know I saw th

RE: TeraScript-Talk: WebCall Action

2012-03-05 Thread Robert Shubert
Steve, An improvement in 6.1.3 was to allow for a block of text as the body of a POST in the Web Call action. Once you update to that version (or later) you’ll be able to simply drop your XML from below into that box and insert any variables where need be. Also note that for most XML/SOA

RE: TeraScript-Talk: Randomise

2012-03-09 Thread Robert Shubert
Wayne, There is no high level function to accomplish your task in one tag. Most SQL databases support the ability to: SELECT * FROM table ORDER BY NEWID() Or in some cases SELECT * FROM table ORDER BY UUID() The point being that SQL assigned IDs/UUIDs are themselves a

RE: TeraScript-Talk: TeraScribe Mail Operation: List Mail

2012-04-10 Thread Robert Shubert
Steve, The Message Block method is the more common way to get a list. Use “1” as the start message and say “100” in the number of messages to retrieve the first 100 messages – you can then increment those values to walk through the mail box. The Message IDs field allows for a list of IDs. I

RE: TeraScript-Talk: Passing arguments to the command line

2012-04-18 Thread Robert Shubert
The escape character is usually the backslash: \ Also, for complex scripts like this, I usually find it easier to have TS write out the entire script, with all the details right in the script text, to a temporary file then use the External action to call that script. This is easier than buildin

RE: TeraScript-Talk: Permissions

2012-04-19 Thread Robert Shubert
Wayne, TeraScript doesn't support setting permissions on a file at this time. You'll have to make a helper script that will take the name file name as an argument and adjust its permissions before you attempt to execute it. Robert -Original Message- From: Wayne Irvine [mailto:wa...@byt

RE: TeraScript-Talk: Permissions

2012-04-19 Thread Robert Shubert
I thought it was using quotes that was the problem… From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Thursday, April 19, 2012 7:30 PM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: Permissions On 20/04/2012, at 3:29 AM, Robert Shubert wrote: You'll have to

RE: TeraScript-Talk: Permissions

2012-04-19 Thread Robert Shubert
On 20/04/2012, at 9:30 AM, Wayne Irvine wrote: On 20/04/2012, at 3:29 AM, Robert Shubert wrote: You'll have to make a helper script that will take the name file name as an argument and adjust its permissions before you attempt to execute it. Wasn't problems passing argum

RE: TeraScript-Talk: ImageMagick CAPTCHA: SUCCESS!

2012-04-20 Thread Robert Shubert
Wayne, That is really nice. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Friday, April 20, 2012 1:25 AM To: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: ImageMagick CAPTCHA: SUCCESS! Here it is in action: http://isellit.com.au/imcaptcha/imcaptcha.ta

RE: TeraScript-Talk: Image caching

2012-04-25 Thread Robert Shubert
Wayne, This is a little odd. I just took a quick look at this is detail and I see that perhaps you’ve added a timestamp? I see an argument like _=12345678901234 However, it’s on the incorrect link. You don’t need to response from the TAF to be refreshed, you need the image itself to be r

RE: TeraScript-Talk: User scope timeout per domain

2012-05-22 Thread Robert Shubert
John, There is no direct configuration method to do that. However, you can simply set the variabletimeout in the user scope per each site. For example in a header, footer or on the home or login page. If you have a place where unified code runs for all of your domains, then you could do

RE: TeraScript-Talk: Debugging O/S exceptions

2012-06-11 Thread Robert Shubert
Andre, These stack dumps are extremely helpful in isolating and debugging a crash, however, we can only do so with the newer versions of TeraScript. If you are running a version of 6, please submit a support ticket. Ideally you would update to TeraScript 6.1.3 and then provide a crash report

RE: TeraScript-Talk: Ramdon decay

2012-06-26 Thread Robert Shubert
Wayne, This is definitely a bug in the @RANDOM tag and I'll have a fix ASAP. Robert -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Tuesday, June 26, 2012 7:49 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Ramdon decay And no, I'm not referr

TeraScript-Talk: Part time developer

2012-06-29 Thread Robert Shubert
The Learning Annex in New York City is looking for a Witango/TeraScript developer to maintain their web sites. The developer can work remotely and the job is "part-time or as needed". Tronics hosts the Learning Annex web servers but is otherwise not affiliated with them. If you are interested,

RE: TeraScript-Talk: User variable time out

2012-07-01 Thread Robert Shubert
Rich, This is how the user scope operates now, in the sense that since it’s attached to a session cookie, once the browser window is closed, the cookie is lost and the user session can’t be further used. If, however you are asking to allow someone to leave a browser open for an extended am

RE: TeraScript-Talk: date calculations

2012-07-14 Thread Robert Shubert
I think would do this in Witango. Just giving this a quick thought, my approach would be like this: Get the week number for both timestamps (format=datetime:%w) and then subtract them, if the result is 0, then both days are in the same week and you can just calculate the span (assuming that

RE: TeraScript-Talk: date calculations

2012-07-16 Thread Robert Shubert
ipt-Talk: date calculations Thanks for the help! Let's forget about the weekdays vs. weekends for now. Any way to convert total seconds into Days/Hours/Minutes effectively? Seems to me this would be relatively easy to do, but I am stuck. I thought I saw something like this before on t

RE: TeraScript-Talk: This old chestnut

2012-07-16 Thread Robert Shubert
here anyone out there with a bit of Snow Leopard/Apache experience who can offer me some advice (other than upgrade to Lion ;) ) Wayne Irvine wa...@byteserve.com.au On 18/02/2011, at 6:39 AM, Robert Shubert wrote: Wayne, Two things need to be done to accomplish this: First, y

RE: TeraScript-Talk: This old chestnut

2012-07-16 Thread Robert Shubert
: This old chestnut Yes, that WAS the client solution. We do have a working setup on a SL server; I can ask our server admin how that is set up. OS X server apache can be tricky. On Jul 16, 2012, at 11:06 AM, Robert Shubert wrote: Wayne, Is your server OSX Server? I ask because

RE: TeraScript-Talk: Total Number of Matching Rows, Limit To, No maximun

2012-07-24 Thread Robert Shubert
1. searching for 1 unique record should show Get total number of matching rows unchecked, Limit to 1. Correct. If you believe that you have a unique key but aren’t 100% (it doesn’t have a unique constraint on it) then you could leave the limit to “no maximum” and then check to make sure that

RE: TeraScript-Talk: Total Number of Matching Rows, Limit To, No maximun

2012-07-24 Thread Robert Shubert
have this checked when not needed? _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, July 24, 2012 11:33 AM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: Total Number of Matching Rows, Limit To, No maximun 1. searching for 1 unique record should

RE: TeraScript-Talk: O.T. - MSSQL 2008 Changing VarChar to Decimal

2012-07-31 Thread Robert Shubert
As long as each value in the varchar can be cast to a decimal, you’re fine. I would do these steps: 1) Add a column to table: temp_col numeric(10,4) 2) Execute: UPDATE table SET temp_col = CAST(varchar_col AS numeric(10,4)) 3) Verify data 4) Alter table to remove varcha

RE: TeraScript-Talk: O.T. - MSSQL 2008 Changing VarChar to Decimal

2012-07-31 Thread Robert Shubert
(8, 4) and deleted the column to be updated and dragged itback in. Yes, it went to qouted value = false, but I cannot seem to break it by changing data types back and forth. I there something I am missing? _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, July

RE: TeraScript-Talk: O.T. - MSSQL 2008 Changing VarChar to Decimal

2012-07-31 Thread Robert Shubert
other characters besides numbers and ".". Does anyone have a quick hack around this besides having to check all characters before a submit? I was thinking of @keep, but that may be confusing to the user. Thoughts? Oh... and thanks! _ From: Robert Shubert [mailto:rshub..

RE: TeraScript-Talk: Mountain Lion *server* - can't get install to work ..

2012-09-10 Thread Robert Shubert
Dale, If you can send me your httpd.conf file, I should be able to fix the installer. Robert -Original Message- From: Dale Graham [mailto:dale.gra...@gmail.com] Sent: Monday, September 10, 2012 8:06 AM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Mountain Lion *server* -

RE: TeraScript-Talk: Creating a text file and emailing

2012-09-24 Thread Robert Shubert
Mark, The Email attachment is easy enough. Once you have the file created, build an email action, click to the attachment tab and browse to the file. As for making the file. TS has added a new function in 6.1 to help make this easier: RSEP= and CSEP=. Basically, you can select your data

RE: TeraScript-Talk: OT somewhat - IE9 and cache

2012-10-02 Thread Robert Shubert
Typically this is done by setting some HTTP headers in the response. You can set headers in IIS which would then apply to all files that are requested. Alternatively, you could set the headers in TeraScript – which would then apply to all pages returned by TeraScript (TAFs) but not JS, CSS

RE: TeraScript-Talk: OT somewhat - IE9 and cache

2012-10-02 Thread Robert Shubert
which we are having trouble. We were able to clear the IIS7 output cache and it now appears to be working correctly. However, in the future, couldn't we just add this in the header?... _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, October 02, 2

RE: TeraScript-Talk: OT somewhat - IE9 and cache

2012-10-03 Thread Robert Shubert
e<@CRLF>Pragma:no-cache<@CRLF><@USERREFERENCECOOKIE><@CRLF>"> _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, October 02, 2012 7:09 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: OT somewhat - IE9 and cache META header

RE: TeraScript-Talk: USERREFERENCE

2012-10-12 Thread Robert Shubert
For security reasons it’s not automatically possible, nor recommended, to do what you want to do. That said, you are on the right track concerning setting a cookie. I don’t know this answer without doing some development and testing, but I will add these 2 thoughts: 1- You should se

RE: TeraScript-Talk: USERREFERENCE

2012-10-12 Thread Robert Shubert
sing www. There are no absolute links in the entire program. All links are... <@APPFILE>? ya da ya da ya da.. I know this may blow away some bookmarks, but I am not sure that would be a big deal right now. _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Frid

RE: TeraScript-Talk: USERREFERENCE

2012-10-15 Thread Robert Shubert
nge a user’s domain seamlessly, and keep the rest of the URL, fairly easily." Could you elaborate on this? Thanks! _____ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Friday, October 12, 2012 4:03 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: USE

RE: TeraScript-Talk: USERREFERENCE

2012-10-19 Thread Robert Shubert
tpheader, adding the ‘www.’ and keeping the path, file and search arguments from the original request. Hope that helps, Robert From: WebDude [mailto:webd...@cipromo.com] Sent: Tuesday, October 16, 2012 7:43 AM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: USERREFERENCE

RE: TeraScript-Talk: config file

2012-10-23 Thread Robert Shubert
By ‘thread locks’ do you mean a state where the server reports some number of threads in use and the number slowly increases until the server stops responding because it’s out of threads? Robert From: WebDude [mailto:webd...@cipromo.com] Sent: Tuesday, October 23, 2012 1:30 PM To: TeraScrip

RE: TeraScript-Talk: config file

2012-10-23 Thread Robert Shubert
: TeraScript-Talk: config file yes _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, October 23, 2012 12:53 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: config file By ‘thread locks’ do you mean a state where the server reports some number

RE: TeraScript-Talk: config file

2012-10-24 Thread Robert Shubert
ic and admin. Thanks! _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, October 23, 2012 3:50 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: config file In my experience, this is caused by simultaneous calls to either the External Action or to @URL.

RE: TeraScript-Talk: Cache Size

2012-11-23 Thread Robert Shubert
No flushes is good. 50 MB is no problem either. Robert From: John Muldoon [mailto:webd...@cipromo.com] Sent: Friday, November 23, 2012 1:17 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Cache Size Sorry for a question on such an old version… Witango2k I have a server run

RE: TeraScript-Talk: Legacy OUTER JOIN operators

2012-11-30 Thread Robert Shubert
Version 7 will contain a switch to use ANSI SQL joins – we just coded this functionality and are going through testing now. ETA is few months. Robert From: Bill Downall [mailto:bdown...@downallconsulting.com] Sent: Friday, November 30, 2012 9:29 AM To: TeraScript-Talk@terascript.com Subject:

TeraScript-Talk: Two Year Update

2012-11-30 Thread Robert Shubert
participate in our preview releases when the time comes and help us shape the future of the TeraScript product and platform. Thank you for your continued support over the past 2 years. Robert Shubert Emily Muhlhausen To unsubscribe from this

RE: TeraScript-Talk: Win 7 Server troubleshooting

2012-11-30 Thread Robert Shubert
Sounds like the Terascript server doesn’t have permissions to read the TCF. For a quick test set the permissions on the TCF in question for Everyone to read. Robert From: Bill Downall [mailto:bdown...@downallconsulting.com] Sent: Friday, November 30, 2012 6:25 PM To: TeraScript-Talk@teras

RE: TeraScript-Talk: Win 7 Server troubleshooting

2012-11-30 Thread Robert Shubert
: Win 7 Server troubleshooting Even with the Terascript service logged in as Administrator the same errors come up. The tcf's have read and execute permission. On Fri, Nov 30, 2012 at 6:34 PM, Robert Shubert wrote: Sounds like the Terascript server doesn’t have permissions to read th

RE: TeraScript-Talk: Uploading a tab delimited File

2012-12-13 Thread Robert Shubert
Mark, This is a pretty old TAF, but it should basically work. Are you getting the inconsistent number of columns error? Robert From: Mark Weiss [mailto:weis...@ldschurch.org] Sent: Thursday, December 13, 2012 1:17 AM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Uploading a

RE: TeraScript-Talk: noSQLEncoding config ignored

2013-02-08 Thread Robert Shubert
Erik, Few things to try: 1) instead of typing the ' character, try using the @SQ tag 2) the @VAR in 6.2 now has a new array attributes csep= and rsep=. These allow for placement of separators in the direct string conversion of an array variable. In other words, this should work: <@VAR positio

RE: TeraScript-Talk: Encoding ??

2013-02-11 Thread Robert Shubert
Steve, The @EMAIL tag has the option named “decodedata” I’m not sure if this will handle your case, but it’s worth a shot. Robert From: Fogelson, Steve [mailto:stevefogel...@askics.net] Sent: Sunday, February 10, 2013 6:23 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk:

RE: TeraScript-Talk: Encoding ??

2013-02-11 Thread Robert Shubert
Steve, Doing a little research and code reading, it seems that this is called “Q” encoding, and is not supported by the decodedata option in TeraScript. The format is quite simple: =? Character Set ? Q or B ? quoted-printable (Q) or binary (B) text ?= I’ll put it on my to-do list for t

RE: TeraScript-Talk: Outbound SSL on WISP on Windows 2008

2013-02-17 Thread Robert Shubert
Andre, I expect that you are using the @URL command to access the remote SOAP service. This tag was often used with the useragent= attribute overloaded to allow for additional header elements, such as the Content-Type header to be set. This was only ‘allowed’ to happen on older OSes, typicall

RE: TeraScript-Talk: UTF-8

2013-02-22 Thread Robert Shubert
John, Using Witango/TeraScript with Unicode is tricky. There will be some situations where it just won’t do the right thing. Version 8 will finally correct this shortcoming. The @CIPHER tag does have an undocumented (lightly documented?) function to ENCODE and DECODE to between the native

RE: TeraScript-Talk: Off-Topic: Sending of Bulk Mail That is Integrated with an Application

2013-02-22 Thread Robert Shubert
interested in the answers … By the way .. three cheers for Robert Shubert .. for his excellent management of our beloved Terascript product.We find the latest version fast, smooth and stable, and still the fastest development environment on the planet. Fifteen years at this and counting …. Ian

RE: TeraScript-Talk: UTF-8

2013-02-22 Thread Robert Shubert
webpage that it contains UTF-8 data. This means placing the tag on your webpage. (for HTML5 it’s just ). Alternatively, you can alter the HTTPHEADER such that the Content-Type: header element contains the “; charset=UTF-8” portion. Yes… the is in the header. From: Robert Shubert

RE: TeraScript-Talk: sql-query view from db-actions & ansi-92 support

2013-02-25 Thread Robert Shubert
Roland, The SQL Query option is currently not in TeraScribe. It was not developed during the rewrite and I haven’t yet added it back in, although I intend to do so. As a work around, you can capture the SQL query out of the debug or with the @SQL tag when you run a TAF through the server.

RE: TeraScript-Talk: UTF-8

2013-02-25 Thread Robert Shubert
25, 2013 9:58 AM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: UTF-8 We are using MSSQL 2008 for db. Connection type is ODBC. Driver Version is 6.01.7601.17514 From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Friday, February 22, 2013 5:32 PM To: TeraScript

RE: TeraScript-Talk: Off-Topic: Sending of Bulk Mail That is Integrated with an Application

2013-02-25 Thread Robert Shubert
, excluding auto-responders, etc. We’ve got that pretty well cased. Thanks … Ian From: Robert Shubert [mailto:rshub...@tronics.com] Sent: February-22-13 3:27 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: Off-Topic: Sending o

RE: TeraScript-Talk: Terminal

2013-03-01 Thread Robert Shubert
NET STOP service_name NET START service_name -Original Message- From: Mark Weiss [mailto:weis...@ldschurch.org] Sent: Friday, March 01, 2013 1:36 PM To: TeraScript-Talk@terascript.com Subject: TeraScript-Talk: Terminal What us the terminal command that will restart the witango 5.5 serve

RE: TeraScript-Talk: Terminal

2013-03-01 Thread Robert Shubert
at 1:12 PM, "Robert Shubert" wrote: > NET STOP service_name > NET START service_name > > > > -Original Message- > From: Mark Weiss [mailto:weis...@ldschurch.org] > Sent: Friday, March 01, 2013 1:36 PM > To: TeraScript-Talk@terascript.com > Subject:

RE: TeraScript-Talk: RE: Separate Event Logs Per Witango Instance

2013-03-07 Thread Robert Shubert
Richard, There is no way to separate the events logging from multiple services into their own files. I could correct this, but it would require you to update to 6.x to get the fix. Regarding your question below, It does sound like something is not configured properly with service #8. While

RE: TeraScript-Talk: Question About Converting Time to Something Numeric

2013-03-29 Thread Robert Shubert
Mark, @TIMETOSECS is the solution, what you have should work. I wrote the below script as a test, and it functioned as expected: <@ASSIGN duration_part '00:00:20'> <@ASSIGN duration_total '00:00:40'> partial duration: @@duration_part (string) total duration: @@duration_total (string) <@ASSIGN

RE: TeraScript-Talk: Question About Converting Time to Something Numeric

2013-03-29 Thread Robert Shubert
cked the System Preferences on my server and didn't see anything there that caught my eye. Can you see anything? Mark On Mar 29, 2013, at 7:56 AM, Robert Shubert wrote: Mark, @TIMETOSECS is the solution, what you have should work. I wrote the below script as a tes

RE: TeraScript-Talk: Question About Converting Time to Something Numeric

2013-03-29 Thread Robert Shubert
ked the System Preferences on my server and didn't see anything there that caught my eye. Can you see anything? Mark On Mar 29, 2013, at 7:56 AM, Robert Shubert wrote: Mark, @TIMETOSECS is the solution, what you have should work. I wrote the below script as a test, a

RE: TeraScript-Talk: <@callmethod>

2013-04-05 Thread Robert Shubert
Steve, In general, @VARPARAM should be used when passing a variable into @CALLMETHOD – it binds the value atomically rather than allowing it to pass through the method parameter string parser. In this case, however, you’re passing in a subscript (cell of an array) which @VARPARAM doesn’t s

RE: TeraScript-Talk: RE: Write - FTP action

2013-05-02 Thread Robert Shubert
Steve, Thanks for your feedback on this action. The FTP method was put into v6 before we acquired it. We needed to fix a few bugs just to get it working at all, and there are still some aspects which aren’t intuitive, as you’ve found. I’ll put it on the list to improve the actions per yo

RE: TeraScript-Talk: Configuring OS X 10.8 Server

2013-05-02 Thread Robert Shubert
Steve, Please use TeraScript downloaded from www.terascript.com There’s a version of 6.2.1 which is designed for 10.8. Your Witango 6 license will also work with TeraScript 6 – the name change did not affect the licensing. After you run the installer, you m

RE: TeraScript-Talk: Witango 6x on Windows 2008

2013-05-03 Thread Robert Shubert
Window Server (2008 and 2012) is only 64-bit now. (This change was made when Windows Server 2008 R2 came out) TeraScript 6.x is a 32-bit application. However, Windows has "WOW64" support, which means that 32-bit application are run in an emulation mode on 64-bit OSes. This works perfectly and

RE: TeraScript-Talk: Configuring OS X 10.8 Server

2013-05-03 Thread Robert Shubert
t;http://www.moneyworks.ca/> MoneyWorks Consultant <http://www.kintera.org/faf/donorreg/donorpledge.asp?ievent=1024199&supId=178341786&msource=boundlessbadge> On 05/02/2013, at 6:10 PM, Robert Shubert mailto:rshub...@tronics.com> > wrote: I would expect to see that screen

RE: TeraScript-Talk: RE: Write - FTP action

2013-05-03 Thread Robert Shubert
From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Thursday, May 02, 2013 8:36 AM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: RE: Write - FTP action Steve, Thanks for your feedback on this action. The FTP method was pu

RE: TeraScript-Talk: RE: Write - FTP action

2013-05-05 Thread Robert Shubert
rom your location? Thanks Steve From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Friday, May 03, 2013 2:54 PM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: RE: Write - FTP action Steve, Outgoing FTP connections

RE: TeraScript-Talk: Documentation

2013-06-05 Thread Robert Shubert
Bill, Documentation is still on the witango.com site, under downloads. With the exception of the release notes which are found on the terascript.com site. Also, there is a newer programmer's reference (as of 6.2.3) here: http://www.terascript.com/_documentation/programmersreference.pdf

RE: TeraScript-Talk: New encoding method

2013-06-07 Thread Robert Shubert
Steve, I will certainly consider your request for v7. That said, I’ve also hope to include a direct excel file output mechanism, something that would convert an array to the .xls format. There are some tools available that do this, and I plan to get it into v8. In the meantime, the basic c

RE: TeraScript-Talk: Multiple Users for TereScribe

2013-06-10 Thread Robert Shubert
John, I’ll have to investigate how that function is setup. I suspect that I’ll need to produce an update to address this issue. Robert From: John Muldoon [mailto:webd...@cipromo.com] Sent: Monday, June 10, 2013 2:13 PM To: TeraScript-Talk@terascript.com Subject: RE: TeraScript-Talk: Multi

RE: TeraScript-Talk: Snippets place holder

2013-06-10 Thread Robert Shubert
Ben, It’s actually a back-tick. Decimal 180 in the ISO-8859-1 charset Easiest way to get the character is to open one of the existing snippet files (eg /snippets/html.xml) and copy it out. Robert From: Ben Johansen [mailto:b...@webspinr.com] Sent: Monday, June 10, 2013 5:09 PM To: Tera

RE: TeraScript-Talk: Snippets place holder

2013-06-11 Thread Robert Shubert
: TeraScript-Talk@terascript.com Subject: Re: TeraScript-Talk: Snippets place holder Wasn't there a right click on old studio that allowed for easy placement? On Jun 10, 2013, at 3:12 PM, Robert Shubert wrote: Ben, It’s actually a back-tick. Decimal 180 in the ISO-8859-1 charset Easies

RE: TeraScript-Talk: Snippets place holder

2013-06-11 Thread Robert Shubert
-Talk: Snippets place holder I'm using 6.0.7 I go into edit my snippet, I right click in the snippet edit screen and there is no context menu that popups up I checked also right clicking on snippet name and up on edit menu no insert place holder On Jun 11, 2013, at 12:23 PM, Robert Sh

RE: TeraScript-Talk: PHP and cURL

2013-06-13 Thread Robert Shubert
@URL or the WebCall action is used for this. If using the action, it’s straight forward to copy the URL in and, on the Post Data tab, create the 4 arguments (token, apiKey, format and extended). If you use @URL, you should build a small array of those arguments first and then pass them into

RE: TeraScript-Talk: Builders

2013-06-13 Thread Robert Shubert
Wayne, I took a look at the file and found the error as well as a few other lesser issues. I will email you the snippet file, which you can install yourself. If anyone else is having this same problem, please email supp...@terascript.com for the file. Rob

RE: TeraScript-Talk: PHP and cURL

2013-06-14 Thread Robert Shubert
ormat json extended true Wayne Irvine On 14/06/2013, at 4:19 AM, Robert Shubert mailto:rshub...@tronics.com> > wrote: @URL or the WebCall action is used for this. If using the action, it’s straight forward to copy the URL in and, on the Post Data

RE: TeraScript-Talk: Contains

2013-06-14 Thread Robert Shubert
alues in the arguments or something I am missing? Currently I have: taken @@request$token apiKey @@request$rpx_api_key format json extended true Wayne Irvine On 14/06/2013, at 4:19 AM, Rob

RE: TeraScript-Talk: PHP and cURL

2013-06-20 Thread Robert Shubert
Wayne, You captured quite a few network packets which is making it difficult to read through the trace. However, I did find this error: Which looks like, at least at this point, you aren’t passing the apiKey value. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Tue

RE: TeraScript-Talk: Latest Mac Java Update Breaks Terascribe

2013-06-21 Thread Robert Shubert
Erik, Thank you for the bug report and the subsequent update. These types of things always put us in a tough situation. Java 6 update 51 is a non-public release. It's the first release under Oracle's new pay-for support model for older versions of Java. It's their way of pushing people to 7 Us

RE: TeraScript-Talk: Snippets place holder

2013-06-28 Thread Robert Shubert
, 2013, at 2:17 PM, Robert Shubert wrote: Well, I’m not sure when the bug got fixed, but the contextual menu now works on the edit snippet screen. Please consider updating to 6.2.7 Robert From: Ben Johansen [mailto:b...@webspinr.com] Sent: Tuesday, June 11, 2013 3:42 PM To: TeraScript

RE: TeraScript-Talk: XML/JSON

2013-07-11 Thread Robert Shubert
Wayne, You’re looking for XPATH To answer your example, getting the preferredUsername, using XPATH would be: <@ELEMENTVALUE myDom xpath=’//preferredUsername’> That tag will return the content of the node named ‘preferredUsername’ from anywhere in the document. You can also be specif

RE: TeraScript-Talk: Search for Protected Site - OT

2013-08-08 Thread Robert Shubert
John, I’ve successfully integrated swish-e with TeraScript in the past. This software may seem old, but it does work. Requires a bit of setup. Robert From: John Muldoon [mailto:webd...@cipromo.com] Sent: Wednesday, August 07, 2013 6:49 PM To: TeraScript-Talk@terascript.com Subject: Tera

RE: TeraScript-Talk: Terascript and the Enterprise

2013-08-14 Thread Robert Shubert
Wayne, At this time TeraScript version 8 is not yet officially announced, so I can’t easily point you to a list of features and improvements that are on the horizon. What I can say is that version 8 is a serious update to the TeraScript platform and will either ship with or lay the foundation

RE: TeraScript-Talk: Terascript and the Enterprise

2013-08-14 Thread Robert Shubert
version 7? �� On Aug 14, 2013, at 2:21 PM, "Robert Shubert" mailto:rshub...@tronics.com> > wrote: Wayne, At this time TeraScript version 8 is not yet officially announced, so I can’t easily point you to a list of features and improvements that are on the horizon. What I

RE: TeraScript-Talk: Character Bloopers

2013-09-06 Thread Robert Shubert
John, This is happening because the character set of the text is not 8859-1, but TeraScript is assuming that it is. The trick is that you may not be able to know the character set. This is where you’ll need to do some experimentation. On Mac’s there was a character set known as Mac Roman,

RE: TeraScript-Talk: Character Bloopers

2013-09-06 Thread Robert Shubert
ebd...@cipromo.com> <http://cipromo.com/> http://cipromo.com From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Friday, September 06, 2013 8:48 AM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScript-Talk: Character Bloopers

RE: TeraScript-Talk: Character Bloopers

2013-09-06 Thread Robert Shubert
...@cipromo.com <mailto:webd...@cipromo.com> <http://cipromo.com/> http://cipromo.com From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Friday, September 06, 2013 9:36 AM To: TeraScript-Talk@terascript.com <mailto:TeraScript-Talk@terascript.com> Subject: RE: TeraScri

RE: TeraScript-Talk: Variable questions

2013-09-19 Thread Robert Shubert
Mark, First, I would recommend using the domain scope, rather than the application scope. The application scope, as it exists now, will be removed in v8. Second, yes, you can <@ASSIGN domain$myVar 'value'> in one TAF and have it accessible in another. The domain scope is persistent (even across

RE: TeraScript-Talk: Variable questions

2013-09-19 Thread Robert Shubert
? They are going away? Where can I read about what replaces that? Mark On Sep 19, 2013, at 12:36 PM, "Robert Shubert" wrote: > Mark, > > First, I would recommend using the domain scope, rather than the application > scope. The application scope, as it exists now,

RE: TeraScript-Talk: Suppress variable values in debug output?

2013-09-26 Thread Robert Shubert
Bill, In v6/7 there is not. In v8, I’m planning to add a redaction feature such that you would do this: <@ASSIGN myPassword “thesecret” redact=true> And then any time the value of myPassword was output in a log file or debug it would just be X Normal resolving of the variabl

RE: TeraScript-Talk: Login Problems

2013-10-02 Thread Robert Shubert
Mark, Your basic strategy is sound. If the site is public, please post the URL. If it is not, please email supp...@terascript.com with the URL and, if possible, a testing username and password and I'll investigate further. I suspect the issue is with the cookie. Robert -Original Message--

RE: TeraScript-Talk: Send XML to specific URL

2013-10-09 Thread Robert Shubert
MC, The tag you want is @URL Note that in v5.5 this tag has quite a few flaws and short comings. In v6 I have worked to improve the tag and implemented a new action (called Web Call) which is superior. Robert -Original Message- From: MC Tay [mailto:sm...@media88.com] Sent: Wednesday,

RE: TeraScript-Talk: ACTIONRESULTS for Insert

2013-10-21 Thread Robert Shubert
@ACTIONRESULT is deprecated Usually you need to execute a second query to get the ID. I don’t know how to do that in FMP, but, for example, in SQL Server you execute “SELECT @@IDENTITY” immediately after an INSERT and it returns the auto-increment primary key of the record just inserted.

RE: TeraScript-Talk: ACTIONRESULTS for Insert

2013-10-21 Thread Robert Shubert
use ODBC or XML. -- sent from my iPhone4 -- Beverly Voth -- On Oct 21, 2013, at 12:39 PM, "Robert Shubert" mailto:rshub...@tronics.com> > wrote: @ACTIONRESULT is deprecated Usually you need to execute a second query to get the ID. I don’t know how to do that in FMP, b

RE: TeraScript-Talk: Setting datasources

2013-10-25 Thread Robert Shubert
No you're not. It's a feature that is currently missing from TeraScribe and will be restored in v7. This is now the most requested feature. You shouldn't have to alter all of your data sources, however. Since the existing ones should continue to work. Maybe just reset the actions that you need

RE: TeraScript-Talk: Setting datasources

2013-10-25 Thread Robert Shubert
The concept of a single data source setting will be present in v8. It's implemented as a variable so you'll do something like <@ASSIGN ds <@DATASOURCE jdbc url username password>> And you'll be able to use scoping, setting domain$ds to your production server then overriding it with user$ds poin

re: TeraScript-Talk: TeraScript Server 7 Beta released for Windows and Linux

2013-10-26 Thread Robert Shubert
Mac beta is not released. When it is, you will be able to run both side by side, however you will need to manually manage which plugin your web server uses. Robert From: "d...@dss-db.com" Sent: Friday, October 25, 2013 6:02 PM To: TeraScript-Talk@terasc

re: TeraScript-Talk: Primebase JDBC ?

2013-10-26 Thread Robert Shubert
All JDBC setups are the same. In TeraScribe add the driver to the JDBC Drivers window and then you can build your data source. In Server, edit your jdbc.ini file to map the data source name to the driver class and URL. Robert From: "Bishop Weiss" Sent:

  1   2   3   4   >