RE: Witango-Talk: Server Error Code

2011-12-27 Thread Robert Shubert
Witango/TeraScript will throw Error -335 when it can’t send an email. This is more or less a generic error that can occur on either a failure to properly create an email message or a failure to open a session to the server and send the email. Robert From: Fogelson, Steve

RE: Witango-Talk: HTML to TeraScript Array

2011-12-10 Thread Robert Shubert
Steve, Interesting question, and not a bad idea for a new tag. Here’s some code to help you on your way. First I did it using straight forward string manipulation on the html. The first few lines simulate the URL response. You’ll have to match up the FINDSTRs to your actual data

RE: Witango-Talk: Scoping Variables

2011-11-29 Thread Robert Shubert
Technically, there is no connection between the user session and the local scope. However, local/request variables are locked to the currently executing request, which is also their lifetime. Since a request can only be accessed by one user session – the requestor – it has the effect that each

RE: Witango-Talk: Trouble launching a process

2011-11-28 Thread Robert Shubert
Wayne, If FileMaker is using the new LaunchDaemon utility - which they should - then it wouldn't be correct to start the app using the command below, but rather with something like terascript does: launchctl load /path_to_daemon_plist/deamon.plist I think you can do:

RE: Witango-Talk: Scoping Variables

2011-11-21 Thread Robert Shubert
You can probably get away with doing less work to start, and then just cleaning up any bugs you find in testing. Essentially the change is this: In your version, the default scope is user, so when you do @ASSIGN myVar myValue you are effectively creating that variable in the user scope (as

RE: Witango-Talk: Var across multiple domains

2011-11-07 Thread Robert Shubert
Wayne, Let me start by saying that variable scoping comes down to a matter of keying. Meaning that each scope is defined by its key, and your question is really one of managing keys. First, the user scope. Technically speaking, the user scope is not restricted to a domain. It is keyed to a

re: Witango-Talk: db2 jdbc setup on Windows 2008

2011-11-04 Thread Robert Shubert
Ted, DB2 is not a supported database in the v6 Studio using JDBC. There's no place to add the JDBC driver. I'll make a note of this nd try to get it into the next release. ODBC should work as expected. Robert From: twolf...@rochester.rr.com Sent:

RE: Witango-Talk: TeraScript Server 6.1 on clean server

2011-10-24 Thread Robert Shubert
Bill, Just to clarify one point for anyone running mixed environments. We’ve worked to keep the client/server protocol unchanged and compatible with version 5.5. Therefore web server plug-ins and modules from version 5.5 can be used to map requests to version 6.x servers, and vice versa.

RE: Witango-Talk: Logging not working with logginglevel = 1

2011-10-20 Thread Robert Shubert
Steve, This is kind of a known issue. Meaning that I’ve noticed some inconsistency with the logging level setting of 1. I’ll try to figure out what’s going on here as soon as I can. Robert From: Steve Briggs [mailto:st...@wowpages.com] Sent: Thursday, October 20, 2011 2:29 PM To:

RE: Witango-Talk: @emailsession tag

2011-10-13 Thread Robert Shubert
Ted, You shouldn't need the u/p on the SEND command - it's only needed to open the connection. Can you check the logs in the email server? You might get a better sense of the error. It looks to me like either the u/p isn't correct or there is some other setting in the email server that needs

RE: Witango-Talk: MacOS 10.7 ODBC

2011-10-13 Thread Robert Shubert
to the product. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Wednesday, October 12, 2011 4:55 PM To: Witango-Talk@witango.com Subject: Re: Witango-Talk: MacOS 10.7 ODBC Sorry to bring things back from the dead but any updates on this? On 31/07/2011, at 6:12 AM, Robert Shubert

RE: Witango-Talk: Receipt Printer

2011-10-11 Thread Robert Shubert
and then create the page (two steps). It seems the instructions may suggest that it sticks under certain conditions. Beverly On 11 Oct 2011, at 10:46 AM, Robert Shubert wrote: Steve, Are you sure you can send those codes in the content of the page? Normally they are sent as control

RE: Witango-Talk: Centos apache2.2

2011-10-09 Thread Robert Shubert
Bill, If memory serves, the Apache 2.2 module was introduced during Witango 5.5's lifecycle. I do not believe there ever was a Witango 5.0 Apache 2.2 module. Clients (Apache mods, ISAPI, CGI) are not compatible between 5.0 and 5.5. As I'm sure you know, the official recommendation is to

RE: Witango-Talk: config.taf

2011-09-22 Thread Robert Shubert
Marc, I'm sorry to say that I do not have an updated version of the administration tools that will work properly with version 6.1. The toolset was last updated for v5.5, and may work OK on v6.0, but due to new file names and other configuration changes, the tool would need to be updated to

RE: Witango-Talk: MySQL ODBC And TeraScribe 6.1

2011-09-21 Thread Robert Shubert
Steve, I believe the issue is that you have setup your DSNs using the 64-bit ODBC manager (and therefore drivers) Since TeraScript 6 is a 32-bit application, you must manually open and use the ODBC administrator found here: C:\Windows\SysWOW64\odbcad32.exe Everything else is the

RE: Witango-Talk: Windows 2008 - TeraScribe

2011-09-21 Thread Robert Shubert
Steve, First off, PSKILL should work as it has in the past. Not sure if this helps but if you copied and pasted into your email below, the trailing double quote is actually ” and not which could explain why the error is giving you an odd character on the end of the process name. Robert

RE: Witango-Talk: Searching names containing apostrophes

2011-09-20 Thread Robert Shubert
Dale, As far as I can tell, that SQL statement is correct. I’m using SQL Server, but it should be universal. The fact there are two single-quotes in place of the one in the name is the effect of encoding=sql. Doing a few tests might help. Try executing these statements and seeing what you

RE: Witango-Talk: Searching names containing apostrophes

2011-09-20 Thread Robert Shubert
Dale, Something else to consider. It’s possible that the character in your database isn’t a single-quote, but one of the other similar characters. See if you find the record with this statement: SELECT * from scientists where lname like ‘%’’%’ Robert From: Dale Graham

RE: Witango-Talk: Userkey question

2011-09-15 Thread Robert Shubert
Tim, The userkey, as you may expect defines what differentiates one user/visitor/session from another. Since every request either picks up an existing user reference from one of the pass-in values (session cookie, search arg, or post arg) or gets a new user reference assigned, your setting

RE: Witango-Talk: A puzzler... regarding sorts and mixed capitalizations

2011-09-15 Thread Robert Shubert
Dale, Is the sort in question done on the SQL statement (If so, then Shannon's answer is correct). But, if you are using the @SORT tag, then there are some parameters you can set to change its behavior. Robert -Original Message- From: Dale Graham [mailto:dale.gra...@gmail.com] Sent:

RE: Witango-Talk: @url Question

2011-09-05 Thread Robert Shubert
Steve, These seem to be warnings related to the SSL negotiation process. Basically, as SSL security increases, such as 2048-bit ciphers, etc. your system may need to negotiate down or use an older encryption method. Run Windows Update and click to the optional updates and see if there’s

RE: Witango-Talk: Version 5.5 Mail action

2011-08-31 Thread Robert Shubert
Rich, There is no problem using the Mail action to send out an email blast. You will have to watch the timeout on the query. Depending on your hardware and the receiving email server, you may only be able to send a few hundred emails before you hit the query timeout. You can get around this

RE: Witango-Talk: notesSql connection

2011-08-24 Thread Robert Shubert
Ted, What is the path to server? I ask because while Studio/TeraScribe is run under your user account and has your permissions (such as network rights). By default the Server is run under a local account and cannot access network resources. This may be the issue, although I thought ODBC would

RE: Witango-Talk: Witango / TeraScript MySQL escape meta tag

2011-08-22 Thread Robert Shubert
, at 2:28 PM, Robert Shubert wrote: Steve, I’d like to look at your specific situation in more detail. Escaping of values in SQL statements should be automatically handled by TeraScript Server. Robert From: Steve Briggs [mailto:st...@wowpages.com] Sent: Sunday, August 21, 2011 11:30

RE: Witango-Talk: Witango / TeraScript MySQL escape meta tag

2011-08-21 Thread Robert Shubert
Steve, I’d like to look at your specific situation in more detail. Escaping of values in SQL statements should be automatically handled by TeraScript Server. Robert From: Steve Briggs [mailto:st...@wowpages.com] Sent: Sunday, August 21, 2011 11:30 AM To: Witango-Talk@witango.com Subject:

RE: Witango-Talk: Witango / TeraScript MySQL escape meta tag

2011-08-21 Thread Robert Shubert
:03 PM, Fogelson, Steve stevefogel...@askics.net wrote: Please share what you come up with. I am always interested in anything to do with PCI compliance. Steve Fogelson _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Sunday, August 21, 2011 1:29 PM To: Witango-Talk

RE: Witango-Talk: Filemaker Pro Syntax error

2011-08-17 Thread Robert Shubert
Terry, Are you using FileMaker 11.3? Are the ODBC/JDBC drivers at the same version as the server? (this is critical) Is the SQL statement incorrect? (column and table named correct, etc) The good news is that you are getting a response from the server (or at least the ODBC subsystem). Robert

RE: Witango-Talk: Filemaker Pro Syntax error

2011-08-17 Thread Robert Shubert
the PersonnelFile table, which are displayed without a hitch in both Witango and Terascibe, and I've double checked my SQL statement and it is accurate. I have no clue what this error means. On 8/17/11 12:12 PM, Robert Shubert rshub...@tronics.com wrote: Terry, Are you using FileMaker 11.3

RE: Witango-Talk: Filemaker Pro Syntax error

2011-08-17 Thread Robert Shubert
understand why this worked and selecting the columns from the very table does not! On 8/17/11 1:05 PM, Robert Shubert rshub...@tronics.com wrote: Terry, Can you build a TAF with a Custom SQL Query and do some simple tests, like Select 1 Or Select count(*) from PersonnelFile Just

RE: Witango-Talk: Filemaker Pro Syntax error

2011-08-17 Thread Robert Shubert
it located in, it works. SELECT * FROM PersonnelFile where 'Gadina' = Last We have to double quote the column name or it fails. Is this known in Filemaker? On 8/17/11 1:31 PM, Robert Shubert rshub...@tronics.com wrote: Terry, Continue to evolve the Custom SQL Query until it matches the one

RE: Witango-Talk: Hard exit

2011-08-16 Thread Robert Shubert
MC, Not in one step. The solution is to branch (without return) to another TAF that contains nothing but a return action. I am aware of this shortcoming and have a solution planned. Robert -Original Message- From: MC Tay [mailto:sm...@media88.com] Sent: Tuesday, August 16, 2011 2:01

RE: Witango-Talk: Re-Directs

2011-08-15 Thread Robert Shubert
Steve, It’s true that browsers have limiters to prevent infinite redirect loops. How are you handling the redirect? Which method? Robert From: Fogelson, Steve [mailto:stevefogel...@askics.net] Sent: Sunday, August 14, 2011 10:54 PM To: Witango-Talk@witango.com Subject: Witango-Talk:

RE: Witango-Talk: Exact Numeric Character IFs

2011-08-15 Thread Robert Shubert
I have two: Variables: request$input1 = “00” request$input2 = “” @IF expr=” ‘A@VAR input1’ = ‘A@VAR input2’ “ By placing an arbitrary letter before the variables, you will force TeraScript to internally compare them as strings. This will be False. OR @IF

RE: Witango-Talk: Exact Numeric Character IFs

2011-08-15 Thread Robert Shubert
seems to work for what I am trying to do. John Muldoon Corporate Incentives 3416 Nicollet Ave S Minneapolis, MN 55408-4552 612.822. webd...@cipromo.com http://cipromo.com/ http://cipromo.com _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Monday, August 15, 2011

RE: Witango-Talk: Re-Directs

2011-08-15 Thread Robert Shubert
From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Monday, August 15, 2011 10:37 AM To: Witango-Talk@witango.com Subject: RE: Witango-Talk: Re-Directs Steve, It’s true that browsers have limiters to prevent infinite redirect loops. How are you handling the redirect? Which method

RE: Witango-Talk: Monitoring Website Users

2011-08-10 Thread Robert Shubert
I wonder if the TeraScript server could provide some of these metrics internally. There’s a long standing request to allow a TAF to retrieve a list of user sessions currently active. It may also be possible to provide a tag that would report the number of requests processed for a user

RE: Witango-Talk: Begin and End Transaction Problem

2011-08-01 Thread Robert Shubert
Erik, There is a change in v6 regarding Transaction Actions. The End Transaction is now explicitly associated to a data source. Because of this, transactions can be nested as such: Open Transaction to Database A Do work in DB A Open Transaction to Database B Do work in DB B Close Transaction

RE: Witango-Talk: MacOS 10.7 ODBC

2011-07-30 Thread Robert Shubert
hosed up ODBC. Looking for hints how to repair, reinstall, etc. On Jul 30, 2011, at 9:27 AM, Robert Shubert wrote: Roland, Could you clarify that you are looking for ODBC in the Studio? And also, which version of the Studio and/or Server are you running? Robert -Original Message

RE: Witango-Talk: MacOS 10.7 ODBC

2011-07-30 Thread Robert Shubert
ODBC On Jul 30, 2011, at 12:33 PM, Robert Shubert wrote: Roland, Could you confirm which version of the Studio were and are now using? 6.0.7 I ask because the Witango 6.0 Studio and TeraScribe 6.1 don't support ODBC, only JDBC. really? It has New data sources: ODBC and JDBC. Also

RE: Witango-Talk: Witango Failover tune up

2011-07-28 Thread Robert Shubert
Andre, The issue you specify where existing users don't failover is a known bug. Also, Witango has never had the functionality to do stateful failover. In fact most environments don't (by default) since it requires either a single point of reference (such as a database) or a lot of overhead.

RE: Witango-Talk: Witango Failover tune up

2011-07-28 Thread Robert Shubert
to a gateway page into custom 500 error page. Sincerely Andre Rekhtine IT Director, M.Sc., MCSE Moveable Online Inc. +1 (416) 532-5690 an...@moveable.com -Original Message- From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Thursday, July 28, 2011 12:38 PM To: Witango-Talk

RE: Witango-Talk: Mac OS X 10.7

2011-07-25 Thread Robert Shubert
AM, Robert Shubert wrote: All- I’m posting to clarify our current position in regard to OS X 10.7 support. The currently shipping Witango 6.0 products are not, and will not be, tested on OS X 10.7. We consider this version essentially locked to OS X 10.6. We are expecting to release

RE: Witango-Talk: Detecting IE seven

2011-07-21 Thread Robert Shubert
Dan, Get the User Agent from the request using: @HTTPATTRIBUTE user_agent And then evaluate it with: contains 'MSIE 7.0' Or to provide a whole @IF: @IF @HTTPATTRIBUTE user_agent contains 'MSIE 7.0' I'm using IE 7 @ELSE I'm using another browser /@IF Robert

Witango-Talk: Mac OS X 10.7

2011-07-20 Thread Robert Shubert
All- I'm posting to clarify our current position in regard to OS X 10.7 support. The currently shipping Witango 6.0 products are not, and will not be, tested on OS X 10.7. We consider this version essentially locked to OS X 10.6. We are expecting to release 6.1 in July. Currently we've

RE: Witango-Talk: Does this improve the situation vis a vis Witango 6 installation?

2011-07-20 Thread Robert Shubert
Dale, This is a tricky question. Initially, this won’t help us. Since Apple has always provided a customized JRE, and it was installed by default, the Studio application, Server paths and installation tools all depend on the Java Framework to A) be there, and B) work a certain way.

RE: Witango-Talk: question on user variable timeout

2011-07-18 Thread Robert Shubert
Yes. Each time a scope is ‘touched’ the timer is reset. The question of what constitutes a ‘touch’ is something else and I’ll have to review the code to make sure that its sensible. But nobody has logged a bug report in this regard. Robert From: Rich [mailto:r...@ogdengroup.com]

RE: Witango-Talk: Weird problem with smart phone

2011-07-18 Thread Robert Shubert
MC, I can't say that I've had a similar experience. But I do know that when you update components on Windows, such as .NET and IE, other things can change in the OS and create these kinds of differences. I assume that you are using IIS and it's likely that after .NET is installed IIS is

RE: Witango-Talk: OT - UTF-8

2011-07-14 Thread Robert Shubert
I’m happy to answer your questions, however it’s not likely to work well to use Witango. I understand that I need to declare the charset to UTF-8 to display the characters. Do I actually need to install a language pack on the server to display? No. The server just needs to manage data.

RE: Witango-Talk: First ever witangod5 linux crash since 2003

2011-07-10 Thread Robert Shubert
Bill, It's a segmentation fault. It was probably caused by a memory error. There's not enough information there to know for sure. Robert -Original Message- From: William Conlon [mailto:b...@tothept.com] Sent: Sunday, July 10, 2011 12:50 PM To: Witango-Talk@witango.com Subject:

Witango-Talk: Looking for Forum software

2011-07-06 Thread Robert Shubert
All- We are looking to setup a forum on terascript.com to improve our support mechanism. We would like to have the forum written in TeraScript and thought that someone may have something already started that we could build on to save some time. There would be a few rules, however: 1)

RE: Witango-Talk: Filemaker connect to datasource problem

2011-06-30 Thread Robert Shubert
Chuck, Please make sure that the database is open and the server is running properly. The database must have ODBC/JDBC sharing active. The JDBC URL should be in this format: jdbc:filemaker://{ipaddress}/{databasename} Also, you should be using the latest JDBC driver (11.3) Lastly, verify

Witango-Talk: Looking for Instructor

2011-06-28 Thread Robert Shubert
I have a customer who is looking for a user in the San Diego or Phoenix area that might consider talking about doing a contract for some basic Witango/TeraScript training. If you are interested, or know someone please let me know. Thanks, Robert

RE: Witango-Talk: Witango

2011-06-07 Thread Robert Shubert
Marc, Are you seeing these errors in the console? Robert -Original Message- From: Marc Herman [mailto:marc.her...@artefact.be] Sent: Tuesday, June 07, 2011 5:25 AM To: Witango-Talk@witango.com Subject: Witango-Talk: Witango Hi Robert, What may these errors mean when starting up

RE: Witango-Talk: Witango

2011-06-07 Thread Robert Shubert
Subject: Re: Witango-Talk: Witango Robert, They appear in system.log when the server starts up. Marc Op 7-jun-11, om 18:04 heeft Robert Shubert het volgende geschreven: Marc, Are you seeing these errors in the console? Robert -Original Message- From: Marc Herman

RE: Witango-Talk: New Betas released

2011-06-04 Thread Robert Shubert
2008 Server)? regards Daniel - Original Message - From: Robert Shubert mailto:rshub...@tronics.com To: Witango-Talk@witango.com Sent: Friday, June 03, 2011 11:36 PM Subject: Witango-Talk: New Betas released All, We’ve posted the second beta release of TeraScribe for Windows

RE: Witango-Talk: New Betas released

2011-06-04 Thread Robert Shubert
PM, Robert Shubert wrote: All, We’ve posted the second beta release of TeraScribe for Windows and OSX and we’ve posted the first beta of TeraScript Server for Windows on terascript.com. We’ll be adding some installation notes for the server early next week, but if you want to try

RE: Witango-Talk: New Betas released

2011-06-04 Thread Robert Shubert
a plan to make a 64-bit release of TeraScript and if yes, did you have a aprox. time? regards Daniel - Original Message - From: Robert Shubert mailto:rshub...@tronics.com To: Witango-Talk@witango.com Sent: Saturday, June 04, 2011 7:11 PM Subject: RE: Witango-Talk: New Betas

Witango-Talk: New Betas released

2011-06-03 Thread Robert Shubert
All, We've posted the second beta release of TeraScribe for Windows and OSX and we've posted the first beta of TeraScript Server for Windows on terascript.com. We'll be adding some installation notes for the server early next week, but if you want to try it, just know that you can install

RE: Witango-Talk: Witango renamed; 6.1 Beta release

2011-05-26 Thread Robert Shubert
No. You do need to remove 6.0, but not 5.5. Robert From: Dan Stein [mailto:d...@dss-db.com] Sent: Thursday, May 26, 2011 7:46 AM To: Witango-Talk@witango.com Subject: Re: Witango-Talk: Witango renamed; 6.1 Beta release Is there a need to remove 5.5 if we do testing with 6.1? --- Dan

RE: Witango-Talk: Witango renamed; 6.1 Beta release

2011-05-25 Thread Robert Shubert
Andre, There is no version control integration in TeraScribe at this time. We have plans to revamp the TAF structure in a future major version so that it is more friendly to version control tools such as SVN and git. I would be happy to look at other forms of version control, including TFS,

RE: Witango-Talk: ODBC via IP to OpenBase

2011-05-19 Thread Robert Shubert
The difference between the User and System DSNs is simply a matter of permissions. System DSNs are available to the System - such as services - such as Witango and the Administrator account. Whereas User DSNs are available only to the user that created them. Thus, your applications can see them

RE: Witango-Talk: Set and Get Cookie

2011-05-10 Thread Robert Shubert
MC, The script action (javascript) is server side only. Since it does not interact with the browser, you can’t use it to set cookies. Your use of the Assign Action in #2 is the correct way to set a cookie in the browser, which will then be available on subsequent requests by that browser

RE: Witango-Talk: Date issue (OSX/JDBC/FMP)

2011-05-03 Thread Robert Shubert
Wayne, Double check (in Witango) that the column’s Quote Value = true in the Insert action. The statement should read something like: INSERT INTO Layout_0 (Start_date) VALUES ({ d ‘03/05/2011’}) Also, make sure that you have the column set to Date type in FMP and then open the

re: Witango-Talk: issue

2011-04-28 Thread Robert Shubert
Rich, The in their link needs to be URL encoded, which will represent it as %26 That should make your link look like this: http://ciadlist.com/Redirect.taf?URL=http://www.jkbrand.com/c%26i_advno=301 4 You may need to then URL decode the @ARG URL in the redirect code, but possbily not. It

RE: Witango-Talk: V6 stability

2011-04-20 Thread Robert Shubert
MC, Witango 6 stability should be incrementally improved over 5.5. Additionally, we are underway upgrading all aspects of the server to further improve stability issues. I expect version 6.1 to be yet another incremental improvement in this regard. Finally, if you upgrade to version 6, any

RE: Witango-Talk: Question about @URL...

2011-04-19 Thread Robert Shubert
1) To go over the itemBufferSize you need to explicitly set maxresultsize 2) Redirects are usually done with 301 Moved type header assignments 3) Yes – exactly as you say, store the result and then evaluate it as necessary. Robert From: Kaustav Acharya

RE: Witango-Talk: SQL Question - OT

2011-04-06 Thread Robert Shubert
Steve, It’s difficult to get SQL to display zero counts like this because the SQL engine is programmed to work on found rows only. Since you are not finding any rows in the 20 group, SQL simply doesn’t add a row to the resultset. It has nothing to do with the contents of the SELECT. There

RE: Witango-Talk: ITools Install

2011-03-31 Thread Robert Shubert
Chuck, I believe you should be able to hook Witango up to iTools by simply adding one line to the iTools Apache conf file. The file you need to edit should be located here: /Library/Tenon/WebServer/Configuration/httpd.conf The line you have to add (to the very bottom) should be: -- on Mac OS

RE: Witango-Talk: JDBC and case sensitive searching

2011-03-31 Thread Robert Shubert
Just FYI - I tested this method and it works as expected. Robert -Original Message- From: Shannon Henderson [mailto:shend...@reed.edu] Sent: Thursday, March 31, 2011 4:53 PM To: Witango-Talk@witango.com Cc: Wayne Irvine Subject: Re: Witango-Talk: JDBC and case sensitive searching Have

RE: Witango-Talk: Hack doesn't work in 6

2011-03-30 Thread Robert Shubert
Wayne, Instead of layout_0 try using the name of the table. Or, try leaving it out altogether and just put @ARG product in the Field column. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Wednesday, March 30, 2011 2:16 AM To: Witango-Talk@witango.com Subject:

RE: Witango-Talk: Social Media broadcasting

2011-03-30 Thread Robert Shubert
I'd like to encourage someone (or a small group) to work on some TCFs that would integrate with Facebook and Twitter APIs. Throughout 2011 I'll be adding features to the website and the platform that will make code like this more portable and more useful. Let me know if you'd like to start up

RE: Witango-Talk: Forcing jpg Download

2011-03-29 Thread Robert Shubert
What is in the database column @COLUMN images.LargerImage? Is this the name of the image file or the binary JPEG data? Robert -Original Message- From: WebDude [mailto:webd...@cipromo.com] Sent: Tuesday, March 29, 2011 12:45 PM To: Witango-Talk@witango.com Subject: Witango-Talk: Forcing

RE: Witango-Talk: Crontab

2011-03-29 Thread Robert Shubert
: Crontab On 24/03/2011, at 2:29 AM, Robert Shubert wrote: I'll do some testing to see if I can reproduce your issue. Any luck? Or anybody get it working successfully on OSX? I'm not sure about my previous report of success. It certainly ain't working now. I have gone through

RE: Witango-Talk: Forcing jpg Download

2011-03-29 Thread Robert Shubert
in the result) Robert -Original Message- From: WebDude [mailto:webd...@cipromo.com] Sent: Tuesday, March 29, 2011 1:49 PM To: Witango-Talk@witango.com Subject: RE: Witango-Talk: Forcing jpg Download @COLUMN images.LargerImage is the name of the file. -Original Message- From: Robert

RE: Witango-Talk: Forcing jpg Download

2011-03-29 Thread Robert Shubert
@witango.com Cc: Robert Shubert Subject: Re: Witango-Talk: Forcing jpg Download We have done that many times before in witango. That is the correct header you need to use, and attachment is the correct way. However, it looks like you are trying to put the contents of the file in the filename part

RE: Witango-Talk: Forcing jpg Download

2011-03-29 Thread Robert Shubert
@witango.com Cc: Robert Shubert Subject: Re: Witango-Talk: Forcing jpg Download We have done that many times before in witango. That is the correct header you need to use, and attachment is the correct way. However, it looks like you are trying to put the contents of the file in the filename part

RE: Witango-Talk: Forcing jpg Download

2011-03-29 Thread Robert Shubert
browsers) Could not open the document because a JPEG marker segment length is too short (the file may be truncated or incomplete). Is there something else I may be missing? I appreciate the help! -Original Message- From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Tuesday, March

RE: Witango-Talk: Crash with OSX 10.6.7

2011-03-29 Thread Robert Shubert
Wayne, Can you describe the circumstance when this occurs? Robert -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Wednesday, March 30, 2011 12:37 AM To: Witango-Talk@witango.com Subject: Witango-Talk: Crash with OSX 10.6.7 I'm getting the following error and

RE: Witango-Talk: Crash with OSX 10.6.7

2011-03-29 Thread Robert Shubert
Wayne, Also, I saw a crash similar to this yesterday when I was testing the cron functionality. If you have any entry on the line CRONTABFILE= in witango.ini, please remove it and save the file. Robert -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent:

RE: Witango-Talk: Crontab

2011-03-28 Thread Robert Shubert
. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Monday, March 28, 2011 8:47 PM To: Witango-Talk@witango.com Subject: Re: Witango-Talk: Crontab On 24/03/2011, at 2:29 AM, Robert Shubert wrote: I'll do some testing to see if I can reproduce your issue. Any luck

RE: Witango-Talk: Quote cleaning strategies

2011-03-25 Thread Robert Shubert
Bill, Please use @VARPARAM vs. @VAR for passing variables in @CALLMETHOD method parameters. @VARPARAM is designed to work as a pass-as-reference function and solves the precise issue you are seeing. Robert From: Bill Downall [mailto:bdown...@downallconsulting.com] Sent: Friday, March

RE: Witango-Talk: Quote cleaning strategies

2011-03-25 Thread Robert Shubert
: Bill Downall [mailto:bdown...@downallconsulting.com] Sent: Friday, March 25, 2011 12:04 PM To: Witango-Talk@witango.com Cc: Robert Shubert Subject: Re: Witango-Talk: Quote cleaning strategies Thanks, Robert! I forgot about that. I figured out years ago that @varparam was also the way to get

RE: Witango-Talk: Crontab

2011-03-23 Thread Robert Shubert
Wayne, You should only need to restart the Witango service, or run the @RELOADCONFIG tag. I'll do some testing to see if I can reproduce your issue. Robert -Original Message- From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent: Wednesday, March 23, 2011 9:39 AM To:

RE: Witango-Talk: Couldn't wait for the next version. ;)

2011-03-18 Thread Robert Shubert
I think you just needed to replace it with: @ISDATE VALUE=@@local$month/@@local$day/@@local$year And I want to remind you that the scope named 'local' was deprecated many years ago. You should be using 'request' now. This is critical because in the future the server will start complaining

RE: Witango-Talk: Couldn't wait for the next version. ;)

2011-03-18 Thread Robert Shubert
for the next version. ;) On 19/03/2011, at 3:49 AM, Robert Shubert wrote: I think you just needed to replace it with: @ISDATE VALUE=@@local$month/@@local$day/@@local$year I tried that. It still failed under certain circumstances. Wayne To unsubscribe from

RE: Witango-Talk: Issue with type-content for webservices

2011-03-16 Thread Robert Shubert
Dale, Looking over the docs for web services, it looks like there are a few issues here. I’m not sure where the “No SOAP Request” error is coming from, but it seems that some header information isn’t being created or handled properly. As for he Content-Type issue. Again, this does seem to

RE: Witango-Talk: Reserved words

2011-03-13 Thread Robert Shubert
Wayne, Doing a couple of Google searches came up with this: http://www.filemaker.com/help/html/create_db.8.7.html#1043324 And this: http://developer.postgresql.org/pgdocs/postgres/sql-keywords-appendix.html The second link is from Postgre, but the important column is the last one, SQL-92, as

RE: Witango-Talk: RSS = TAF

2011-03-11 Thread Robert Shubert
Wayne, You should be able to achieve the same mapping using the instructions in my email on 2/17 regarding processing HTML file through Witango Server. Simply make sure that Apache isn’t doing anything in mime.types, and then add the .rss extension to clients.ini. Note that you will

RE: Witango-Talk: JDBC/ODBC Installation

2011-03-11 Thread Robert Shubert
The typical port for mysql is 3306 rather than the 3036 you have – can you double check that? Robert From: Reeve, Lawrence D. (ARC-ID)[PEROT SYSTEMS] [mailto:lawrence.d.re...@nasa.gov] Sent: Friday, March 11, 2011 3:25 PM To: Witango-Talk@witango.com Subject: Witango-Talk: JDBC/ODBC

RE: Witango-Talk: RSS = TAF

2011-03-11 Thread Robert Shubert
, at 2:04 AM, Robert Shubert wrote: You should be able to achieve the same mapping using the instructions in my email on 2/17 regarding processing HTML file through Witango Server. Simply make sure that Apache isn’t doing anything in mime.types, and then add the .rss extension to clients.ini

RE: Witango-Talk: Strange characters.

2011-03-10 Thread Robert Shubert
Wayne, Would it be possible for you to narrow down the cause of those characters? Isolate it to which tag or action is putting them there? I would most interested if it relates to a file action or the @URL tag. Robert From: Wayne Irvine [mailto:wa...@byteserve.com.au] Sent:

RE: Witango-Talk: HD Crash

2011-03-09 Thread Robert Shubert
Steve, It should work OK if you run the installer in XPSP3 compatibility mode and with Admin rights. Remember, this is the installer. Once it’s installed it will run normally. And be sure to run the installer locally. I had someone say recently that running it off of a share caused an issue.

RE: Witango-Talk: Case sensitivity in Search actions.

2011-03-09 Thread Robert Shubert
Case sensitivity is usually a function of the database itself, rather than anything in Witango or in JDBC. Please review the FMP documentation to see if you can find any mention of this issue and if it can be adjusted in the server or perhaps on the connection. Robert -Original

RE: Witango-Talk: HailStorm

2011-03-08 Thread Robert Shubert
Paul, I haven't heard of anyone doing this. I host a few ecommerce sites which are scanned by the usual PCI compliancy sites that are out there, including witango.com, and they've never found anything of note. If you (or anyone) wished to conduct a test of a Witango application, I would

RE: Witango-Talk: HailStorm

2011-03-08 Thread Robert Shubert
place, but I got it figured out over the course of a few months. It has been running great since. Once in a while something new will pop up, but it is not with Witango. Just something I fix with my code. Steve Fogelson -Original Message- From: Robert Shubert [mailto:rshub...@tronics.com

RE: Witango-Talk: Code Suggestions

2011-03-08 Thread Robert Shubert
)155;5‑6691??)6?63BB3ü°Æ‑°ÌQÊy_dÚ‰‹uŒ‚M3Î,—M9êÔö×:‹øа*þ У _ #ð0‚8Š¨[1]†‑ê€[1] L`°Þà 7€‘† 1DE,rÔ!Éy¼’ Äøb- 4“M:{­ãÎŒ@A _ ­6 Etc, etc Appreciate some help. Thanks Steve _ From: Robert Shubert [mailto:rshub...@tronics.com] Sent: Sunday, March 06, 2011 11:52 PM

RE: Witango-Talk: xDBC?

2011-03-07 Thread Robert Shubert
Application Development - eventpix.com 15520 Coutelenc Rd Magalia, Ca 95954 ph: 530.645.4040 x222 fax: 530.645.4040 rgar...@bighead.net - rgar...@eventpix.com http://bighead.net/ - http://eventpix.com/ On Mar 6, 2011, at 8:10 PM, Wayne Irvine wrote: On 07/03/2011, at 3:07 PM, Robert

RE: Witango-Talk: xDBC?

2011-03-06 Thread Robert Shubert
@witango.com Subject: Re: Witango-Talk: xDBC? On 05/03/2011, at 3:18 AM, Robert Shubert wrote: You do need to set the Witango data source name as both the value of the ID=”” attribute and the DSN/DSN element. I've now got: ?xml version=1.0 encoding=ISO-8859-1 ? !DOCTYPE JDBCINI SYSTEM

RE: Witango-Talk: xDBC?

2011-03-06 Thread Robert Shubert
, March 06, 2011 10:39 PM To: Witango-Talk@witango.com Subject: Re: Witango-Talk: xDBC? On 07/03/2011, at 1:03 PM, Robert Shubert wrote: That error is being returned from the FileMaker JDBC layer, which means that the configuration in Witango is good and you are now talking to FMP. Yay

RE: Witango-Talk: xDBC?

2011-03-06 Thread Robert Shubert
: Re: Witango-Talk: xDBC? On 07/03/2011, at 2:53 PM, Robert Shubert wrote: T1 is the table alias name – it’s only used to reference the columns to the table (after the work SELECT). The table name should be “Table” That query is simple, so it should work. Unless there is no layout named

  1   2   3   4   5   6   7   8   >