Oops, sorry, I meant to email that directly to Phil, not the list.
> -----Original Message----- > From: Wilcox, Jamileh > Sent: Tuesday, June 10, 2003 8:58 AM > To: [EMAIL PROTECTED] > Subject: RE: Witango-Talk: @URL & POSTARGARRAY > > > Phil - I'm having some problems with the Small Business > Edition server I recently set up. Can you send me the FTF? > Does that include a list of the issues it fixes? > > Thanks very much. > > jamileh wilcox > Information Systems > OU Physicians > (405)271-4647 x54124 > [EMAIL PROTECTED] > > > > -----Original Message----- > > From: Phil Wade [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, June 04, 2003 8:28 AM > > To: [EMAIL PROTECTED] > > Subject: Re: Witango-Talk: @URL & POSTARGARRAY > > > > > > John, > > The T2K SP1 installers are no longer available for any > > platform as the licensing arrangements associated with them > > have expired which prevents any distribution by any party. > > > > We are able to provide you with the FTF 47 binaries which are > > not bundled in an installer and requires a manual install. > > The FTF builds include the SP1 fixes but were not fully > > regression tested. They are a "use at own risk" build that > > was built to fix specific customer issues. Contact me off > > list if you want the FTF build. > > > > Phil > > > > On 4/6/03 11:17 PM, "John Shaw" <[EMAIL PROTECTED]> wrote: > > > > > There it is: version 4.00.087 > > > > > > Is SP1 free? > > > > > > ----- Original Message ----- > > > From: "Steve Smith" <[EMAIL PROTECTED]> > > > To: <[EMAIL PROTECTED]> > > > Cc: <[EMAIL PROTECTED]> > > > Sent: Wednesday, June 04, 2003 8:39 AM > > > Subject: RE: Witango-Talk: @URL & POSTARGARRAY > > > > > > > > >> Create a TAF with this line in it: > > >> > > >> <@PRODUCT> version <@VERSION>, running on <@PLATFORM>. > > >> > > >> and then run the taf on the same server that you are > trying to run > > >> the > > > other > > >> TAF on. > > >> > > >> What you are looking for is build 020 (version 4.05.020) > which is > > >> the SP1 release. If you are running anything earlier, the > > >> <@POSTARGARRAY> tag will not work. > > >> > > >> Hope this helps, > > >> > > >> Steve Smith > > >> > > >> Oakbridge Information Solutions > > >> Office: (519) 624-4388 > > >> GTA: (416) 606-3885 > > >> Fax: (519) 624-3353 > > >> Cell: (416) 606-3885 > > >> Email: [EMAIL PROTECTED] > > >> Web: http://www.oakbridge.ca > > >> > > >> > > >>> -----Original Message----- > > >>> From: Simon Boddy [mailto:[EMAIL PROTECTED] > > >>> Sent: June 4, 2003 7:27 AM > > >>> To: [EMAIL PROTECTED] > > >>> Subject: RE: Witango-Talk: @URL & POSTARGARRAY > > >>> > > >>> > > >>> Hi John, > > >>> it's documented in the what's new pdf with T2k SP1 > > >>> > > >>> Regards Simon > > >>> > > >>> -----Original Message----- > > >>> From: John Shaw [mailto:[EMAIL PROTECTED] > > >>> Sent: 04 June 2003 12:09 > > >>> To: [EMAIL PROTECTED] > > >>> Subject: Re: Witango-Talk: @URL & POSTARGARRAY > > >>> > > >>> > > >>> Still no luck. But I went back and looked at Ben's > > example and he > > >>> did > > > it > > >>> the way you suggested. > > >>> > > >>> Does T2000 handle postargarray? For some reason, my docs don't > > >>> mention it. > > >>> > > >>> John > > >>> > > >>> ----- Original Message ----- > > >>> From: "David Shelley" <[EMAIL PROTECTED]> > > >>> To: <[EMAIL PROTECTED]> > > >>> Sent: Wednesday, June 04, 2003 12:23 AM > > >>> Subject: RE: Witango-Talk: @URL & POSTARGARRAY > > >>> > > >>> > > >>>> John, > > >>>> > > >>>> It looks like you're building the array effectively. Try > > sending it > > >>>> by > > >>> name > > >>>> rather than by value. > > >>>> <@URL LOCATION="http://www.pfmonline.net/asp_URL.taf" > > >>>> POSTARGARRAY=local$SendArray> > > >>>> instead of > > >>>> <@URL LOCATION="http://www.pfmonline.net/asp_URL.taf" > > >>>> POSTARGARRAY="@@local$SendArray"> > > >>>> > > >>>> Dave. > > >>>> -----Original Message----- > > >>>> From: John Shaw [mailto:[EMAIL PROTECTED] > > >>>> Sent: Wednesday, June 04, 2003 12:06 AM > > >>>> To: [EMAIL PROTECTED] > > >>>> Subject: Witango-Talk: @URL & POSTARGARRAY > > >>>> > > >>>> > > >>>> Hi all, > > >>>> > > >>>> I'm trying to get the following code to pass postargs. I used > > >>> a procedure > > >>>> from a previous post by Ben Johansen. The array is > > populated, but > > >>>> the > > >>> args > > >>>> aren't available in asp_URL.taf. > > >>>> > > >>>> > > >>>> <@ASSIGN local$PreArray VALUE='PF_Acct_Number,44| > > >>>> Order_Number_Date,20030431| Order_ID,50943| > > >>>> Title,Mr.| > > >>>> First_Name,John| > > >>>> Last_Name,Shaw| > > >>>> Name_Suffix,Jr.| > > >>>> Street_2, | > > >>>> Street_1,RR1 Box 44| > > >>>> City,Colliers| > > >>>> State,WV| > > >>>> Zip5,26035| > > >>>> Home_Phone,3045271987| > > >>>> Bank_Deposit_Date,02/05/02| > > >>>> Credit_Card_Type,VS| > > >>>> Credit_Card_Number,3333xxxxxxxx4444| > > >>>> Donation_Amount,5| > > >>>> Mail_Flag,"N"| > > >>>> Email_Address,[EMAIL PROTECTED]| > > >>>> Radio_Call_Letters,| > > >>>> PF_Volunteer,| > > >>>> Ship_To_Record,|'> > > >>>> > > >>>> <@ASSIGN local$PreArray <@OMIT STR="@@Local$PreArray" > > CHARS="<@CHAR > > >>>> 13><@CHAR 10>" ENCODING="none"> ENCODING="NONE"> > > >>>> > > >>>> <@ASSIGN local$SendArray <@ARRAY RDELIM="|" > > >>>> VALUE="@@Local$PreArray"> ENCODING="NONE"> > > >>>> > > >>>> @@local$SendArray > > >>>> <p> > > >>>> <@URL LOCATION="http://www.pfmonline.net/asp_URL.taf" > > >>>> POSTARGARRAY="@@local$SendArray"> > > >>>> <p> > > >>>> > > >>>> --------ASP_URL.TAF------- > > >>>> PF_Acct_Number: <@ARG PF_Acct_Number><BR> > > >>>> Order_ID: <@ARG Order_ID><BR> > > >>>> Title: <@ARG Title><BR> > > >>>> First_Name: <@ARG First_Name><BR> > > >>>> Last_Name: <@ARG Last_Name><BR> > > >>>> > > >>>> > > > > > > ______________________________________________________________________ > > > __ > > >>>> TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > >>>> > > >>>> > > > > > > ______________________________________________________________________ > > > __ > > >>>> TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > >>> > > >>> > > ____________________________________________________________________ > > >>> ____ > > >>> TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > >>> > > >>> > > >>> > > ******************************************************************** > > >>> This message is intended only for the use of the person(s) ("the > > > intended > > >>> recipient(s)") to whom it is addressed. It may contain > > information > > >>> which is privileged and confidential within the meaning of > > >>> applicable law. If you are not the intended recipient, please > > >>> contact the sender as soon as possible. The views > > expressed in this > > >>> communication may not necessarily be the views held by > > LGCSB (Local > > >>> Government Computer Services Board). > > >>> > > >>> Any attachments have been checked by a virus scanner and > > appear to > > >>> be clean. Please ensure that you also scan all > messages, as LGCSB > > >>> does not accept any liability for contamination or > damage to your > > >>> systems. > > >>> > > ******************************************************************** > > >>> > > >>> > > ____________________________________________________________________ > > >>> ____ > > >>> TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > >> > > >> > > > _____________________________________________________________________ > > >> ___ > > >> TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > > > > > > > > ______________________________________________________________________ > > > __ > > > TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > > > ______________________________________________________________ > > __________ > > TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > > > ______________________________________________________________ > __________ > TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf > ________________________________________________________________________ TO UNSUBSCRIBE: Go to http://www.witango.com/maillist.taf
