Re: Witango-Talk: Bind variables

2004-10-12 Thread Fergal Donlon
to the variable int_sample_id. The resultset will be assigned to the first result of the sql while proceeding results can be retrieved/assigned using @bind. I hope this answers your question - if I can be of further assistance please do not hesitate to contact me. Fergal Fergal Donlon Technical Engineer

Re: Witango-Talk: Text wrapping unnecessarily

2004-08-05 Thread Fergal Donlon
Take out the WIDTH=40 I've done the first one as on: http://developer.witango.com/fergal/wayne.html It doesn't wrap on Firefox either. Most of your cells don't have a width specified - seems IE compares the width=40 to the other cells within that table and shrinks them. If you do want to have

Re: Witango-Talk: RSS feed

2004-08-04 Thread Fergal Donlon
Hi Brian, I have just added a component to the component zone on witango.com which is a basic example of how to do a simple RSS feed. It uses XPath to manipulate the resulting DOM and has next/previous buttons to step through the items. If I can be of further assistance please do not hesitate

Re: Witango-Talk: Regex Word Boundary Syntax

2004-08-02 Thread Fergal Donlon
Hi Dave, @REGEX EXPR= zzz |^zzz | zzz$ STR=zzz quick zzzbrown zzz jumped over the lazzzy zzz dog zzz TYPE=E POSITION=ALL will return all instances off zzz but not those contained within other words (not the zzz in zzzbrown or lazzzy do not get returned) The expression translates to a space, zzz

Re: Witango-Talk: Returning all variables within a scope

2004-07-15 Thread Fergal Donlon
on. I hope this helps and if I can assist you further please do not hesitate to contact me. Fergal Fergal Donlon Witango Technologies, Suite 4, Level 1, 44 Miller Street, North Sydney, 2060 - Original Message - From: MJPinckard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July

Re: Witango-Talk: REGEX revisited

2004-06-16 Thread Fergal Donlon
Sorry Wayne - didn't see the end of your mail To have a list of 'allowables' use: @REGEX EXPR=[^A-Za-z0-9!$]+ STR=@VAR string TYPE=E position=all Here I'm allowing anything alphanumeric and ! and $. All other characters will return a match. If I can be of further assistance please

Re: Witango-Talk: Checking for Alphanumerics

2004-05-20 Thread Fergal Donlon
@REGEX EXPR=[[:alnum:]]+ STR=abc5 defgHijklm;no p4qrstuv)0wx,yz TYPE=E position=all will return: abc5 1 4 1 defgHijklm 6 10 2 no 17 2 3 p4qrstuv 20 8 4 0wx 29 3 5 yz 33 2 6 thus: @REGEX EXPR=[^[:alnum:]]+ STR=abc5 defgHijklm;no p4qrstuv)0wx,yz TYPE=E

Re: Witango-Talk: Checking for Alphanumerics

2004-05-20 Thread Fergal Donlon
PROTECTED] Sent: Friday, May 21, 2004 11:46 AM Subject: Re: Witango-Talk: Checking for Alphanumerics Fergal Donlon at [EMAIL PROTECTED] wrote: @REGEX EXPR=[^[:alnum:]]+ STR=abc5 defgHijklm;no p4qrstuv)0wx,yz TYPE=E position=all I think I'm going to submit that to babelfish! :LOL: That's

Re: Witango-Talk: Checking for Alphanumerics

2004-05-20 Thread Fergal Donlon
Actually if you look at: http://developer.witango.com/fergal/regex/ it will be a bit easier to understand - I realise now that my array probably did not appear as a table in most mail clients - Original Message - From: Fergal Donlon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: Witango-Talk: Variable Timeout solution

2004-05-16 Thread Fergal Donlon
I assume that if the variabletimeouttrigger working properly... The variabletimeout trigger may not be working in Tango 2000. Based on my own testing I believe that it is not. In the trigger put something like a mail action (send a mail to yourself) so you can tell a bit easier if the file was

Re: Witango-Talk: Why Doesn't this work in tango 5

2004-03-21 Thread Fergal Donlon
Hi Chris, Have you considered that perhaps it is taking longer than 2 seconds to run the query and display the results. The duration property sets the time the transition takes to complete. Thus if it takes 4 or 5 seconds to display the results from the dbms action(s) it may seem as though the

Re: Witango-Talk: Why Doesn't this work in tango 5

2004-03-21 Thread Fergal Donlon
execution times Page execution time (ms):440 Page execution time (ms):458 Page execution time (ms):538 -Original Message- From: Fergal Donlon [mailto:[EMAIL PROTECTED] Sent: Sunday, March 21, 2004 8:00 PM To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: Why Doesn't this work

Re: Witango-Talk: Witango Tutorial

2004-02-24 Thread Fergal Donlon
Title: Witango Tutorial Hi Jamileh, Attached is a MS-SQL script to set up the tutorial database. If I can be of further assistance let me know, Fergal - Original Message - From: Wilcox, Jamileh (HSC) To: [EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:34

Re: Witango-Talk: adding rows

2004-02-17 Thread Fergal Donlon
Hi Roland, Yes you can add a row to an array you're processing using @addrows. However if you have this in a @rows loop you will end up with an array exactly double in size (and not n+1 as you suggested) as for each iteration a row will be added. These new rows will also not be processed within

Re: Witango-Talk: Error Number -502

2004-02-16 Thread Fergal Donlon
configuration variable value in witango.ini. The default value is 20 and setting it to a larger value may increase the memory requirements of the Witango Server. If I can assist you further please contact me, Fergal Fergal Donlon Technical Engineer Witango Technologies, Suite 4, Level 1, 44 Miller

Re: Witango-Talk: Appfile data

2004-02-11 Thread Fergal Donlon
Hi Bill, You could also use the attached which reads in the current application file, makes it contents into a DOM and then returns the title author, and version. It works whether the DOCSSWITCH is on or off but not for run-only files... It's not the most elegant but as you said if you're

Re: Witango-Talk: purgecache?

2004-02-10 Thread Fergal Donlon
Hi Russell, Yes you would need a @purgecache for each instance of server running. There is a pdf called Witango 5 Professional Server Configuration Guide, available via witango.com or from: http://www2.witango.com/downloads/ProfConfigGuide.pdf It contains information on how to direct requests

Re: Witango-Talk: External Batch Call - Could not execute fork

2004-02-05 Thread Fergal Donlon
Hi Adam, Call the parameter something other than path (dir %path% /s). Remember path is a command in itself and this may explain why you are not getting the results you expect If you require further assistance please contact me. Fergal Fergal Donlon Witango Technologies, Suite 4, Level 1

Re: Witango-Talk: OSX, database password, indirect reference

2003-12-18 Thread Fergal Donlon
Just to add to this @ASSIGN domain$dsnusername @LITERAL VALUE='@INCLUDE FILE=' would mean the value of @@domain$dsnusername would be @INCLUDE FILE= Thus when you go to use it remember to call it as @var domain$dsnusername encoding=metahtml so that @INCLUDE FILE= is evaluated and the

Re: Witango-Talk: Load splitting

2003-10-27 Thread Fergal Donlon
and will return something like: Witango_Server_5 Let me know if this is what you're looking for. Fergal Fergal Donlon Technical Engineer Witango Technologies, Suite 4, Level 1, 44 Miller Street, North Sydney, 2060 - Original Message - From: Robert Shubert [EMAIL PROTECTED] To: [EMAIL

Re: Witango-Talk: Dev Studio 5.5 on OSX

2003-10-26 Thread Fergal Donlon
. It's very strange. I would say it's my computer, but I've seen the same thing on 3 different machines now. Shannon On Thursday, October 23, 2003, at 07:03 PM, Fergal Donlon wrote: Hi Shannon, We have not had any other reports of issues on 10.2.8. What version of StuffIt Expander

Re: Witango-Talk: Dev Studio 5.5 on OSX

2003-10-23 Thread Fergal Donlon
Hi Shannon, We have not had any other reports of issues on 10.2.8. What version of StuffIt Expander are you using? It should be 7.0.3. and the installer application needs to be version 1.3.2. Once it has expanded if you control-click on the installer package icon and select Show Package Contents

Re: Witango-Talk: File download link

2003-10-21 Thread Fergal Donlon
Hi Bill, Had a look at your file and you just need to change your http header a small bit - if you use the attached file instead it should work ok. Let me know if this works ok Regards, Fergal Fergal Donlon Technical Engineer Witango Technologies, Suite 4, Level 1, 44 Miller Street, North

Re: Witango-Talk: To Robert Garcia: Follow up on your message regarding load balancing

2003-09-17 Thread Fergal Donlon
to contact me. Regards, Fergal Fergal Donlon Technical Engineer Witango Technologies, Suite 4, Level 1, 44 Miller Street, North Sydney, 2060 - Original Message - From: Dave Machin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, September 18, 2003 2:56 AM

Re: Witango-Talk: Problem Getting Witango Tutorial's Database Working

2003-07-24 Thread Fergal Donlon
. Regards, Fergal Fergal Donlon Technical Engineer Witango Technologies, Suite 4, Level 1, 44 Miller Street, North Sydney, 2060 ** CORROBOREE 2003 - September 22nd to 26th 2003 - San Diego, CA, USA Witango Developers Conference

Witango-Talk: Re: Receiving Email

2003-01-23 Thread Fergal Donlon
Attached are two files that are currently in development to demonstrate howthe @email and @emailsession tags work and interact with POP3 mail. Theemail.taf file creates an object called mailproc and the followingparameters are passed into the mail method call:* action - specified tasks to