Re: Witango-Talk: Duh! A mail action is a query

2002-10-15 Thread Robert S. Sfeir
??? What do you mean? A query is a select from a database and a mail action is not. If you're getting a resultset over written it's because you're doing SOMETHING in the mail action (Like calling a method which does a query) which is overwriting your original resultset. Pretty bad assump

Re: Witango-Talk: Senility or just a Monday morning thing?

2002-10-14 Thread Robert S. Sfeir
What you're missing is an array which needed to be in Tango a zillion years ago <@MINUS> to remove array one from array 2. It has <@UNION> but that will give you 1,2,3,4,5 in the first place. R On Monday, October 14, 2002, at 03:50 PM, Cornelius Conboy wrote: > > Hi Dan, > > I tried that b

Re: Witango-Talk: [OT}]Magic part II

2002-10-05 Thread Robert S. Sfeir
Too easy, I looked at it again, and the second set of cards is completely different from the first, so of course your first picks will never be there! LOL R r [OT] the link and he will do the > survey and maybe find out more about what the quickest solvers have in > common. > > > -- > Dan

Re: Witango-Talk: [Way OT} But Fun

2002-10-05 Thread Robert S. Sfeir
heh, the queen is different from the first to second screen, there are only 5 cards v/s 6, and one of the jacks is gone... and it doesn't pick the card I pick every time. It took me 10 seconds... I'm 35 maybe this doesn't work on a mac? R On Saturday, October 5, 2002, at 10:36 PM, Dan

Re: Witango-Talk: a random question

2002-09-24 Thread Robert S. Sfeir
This depends on how far down the taf the app server went, so you might get some of it, and it might ignore some.  In other words it's not going to be pretty if you're counting on specific vars to be set before button 2 gets clicked because the results will be unpredictable.   R - Orig

Re: Witango-Talk: Custom Tag Limitation Question

2002-09-13 Thread Robert S. Sfeir
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I agree with John 100%, and to add to this, it would conform more to: 1- JSP Custom tags 2- Generally correct syntax for XML , XHTML etc... You really want WiTango to 'look' like it follows those standards, not only to give a positive impression, b

Re: Witango-Talk: Preventing Session hijacking

2002-09-12 Thread Robert S. Sfeir
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This is what I call session trapping. If the user ref is sent in the URL, check it against the current user ref in the session. If it's not equal to the same value, then throw the user to a page and force a new session. Clear the user ref and get

Witango-Talk: Tip for CVS and Source Safe WiTango users

2002-07-23 Thread Robert S. Sfeir
Ok some might already know this, but I found this so useful today that I thought I would post it. If you're using CVS, or Source Safe for that matter, there are variables available to each of those repositories which you can use within the TCF and TAF files to keep track of various things. Here

Re: Witango-Talk: I may be stupid/ TCF question

2002-07-12 Thread Robert S. Sfeir
Yeah double click the method action in the editor, and drag the newly configured method over it. It will add the fields... WARNING THOUGH, it will lose the scope you've set it on, so before you close the method action window in haste, be sure the method name is right. I hope this gets fixed in w

Re: Witango-Talk: One more!

2002-07-12 Thread Robert S. Sfeir
Well you can always 'hide' the name AND the ssn by simply using something like Blowfish encryption in the DB, and then when you display them on the web browser, don't display both :-) Then you don't have a piece of 'paper' that has both on it, and no one that has command line access to the DB can

Re: Witango-Talk: One more!

2002-07-11 Thread Robert S. Sfeir
On 7/11/02 3:05 PM, "Campbell, Steve V." <[EMAIL PROTECTED]> wrote: > You know as it stands now..I can't ask them for anything! No login, > fill in the blank or anything. Really puts a cramp in things. Well 2 things on that too: 1- Keyfobs are the only way to go 2- I think your bosses are being

Re: Witango-Talk: One more!

2002-07-11 Thread Robert S. Sfeir
tracking machine name and IP address. > That's it. SO I thought maybe if I could deposit a cookie on the browser > pref's folder without them knowing it..Thats where I am at right now. > > Steve > > > -Original Message- > From: Robert S. Sfeir [mailto:[

Re: Witango-Talk: One more!

2002-07-11 Thread Robert S. Sfeir
Yeah that's what I was thinking, but I *think* the problem is that they may not use the same PC every time, so they'd have to re enter every time, and the other problem would be if the PCs are shared, then another doctor will walk in and use a colleague's username and password. This is why I aske

Re: Witango-Talk: One more!

2002-07-11 Thread Robert S. Sfeir
Hey Steve, I've run into similar situations, I didn't see the original email, and I think people tent to freak out a bit too fast. Can you tell me a little bit more about what it is that you need from the doctors to track them, what is available to them to log in to your system, do they always u

Re: Witango-Talk: Help! I am in an Array sorting/summing hell

2002-07-11 Thread Robert S. Sfeir
OOPS that was not supposed to say OEM 3 times, change that for each select obviously. R On 7/11/02 1:51 PM, "Robert S. Sfeir" <[EMAIL PROTECTED]> wrote: > Personally I would do multiple searches and in each search I would also > bring back the data pre calculated fo

Re: Witango-Talk: Help! I am in an Array sorting/summing hell

2002-07-11 Thread Robert S. Sfeir
Personally I would do multiple searches and in each search I would also bring back the data pre calculated for example: (If your DB supports it, like Oracle, I would use a begin end block and put all the selects in one direct DBMS and return all the data in one shot) begin; select col1, col2, co

Re: Witango-Talk: Passing double-byte characters to Java Beans(or COM objects)

2002-07-07 Thread Robert S. Sfeir
On 7/7/02 10:38 PM, "Ed Edgar" <[EMAIL PROTECTED]> wrote: > With this various talk about trying to get Shift_JIS to work with (Wi)Tango's > XML functions, I was wondering: > > Has anyone had any experience trying to get double-byte characters to and from > Java Beans? Yes and they work great w

Witango-Talk: Apache security hole

2002-06-25 Thread Robert S. Sfeir
I got this in my e-Week news. If you're running Apache with WiTango (or otherwise), you should take a close look at this. Guarding the E-Gates = Timothy Dyck: A Bad, Bad Situation for Apache Sites On Saturday, Gobbles Security posted a s

Re: Witango-Talk: SQL Injection Attacks

2002-06-24 Thread Robert S. Sfeir
Also... Along the same lines I wanted to add that allowing the user to run their own SQL to get the query results they want is just NOT a good idea. I remember a while back when the 'other' Tango company had a mailing list server (you know the one that crashes all the time) had a search engin

Re: Witango-Talk: SQL Injection Attacks

2002-06-24 Thread Robert S. Sfeir
Hi, while this article is interesting I want to point out that though you might be using Direct DBMS, WiTango has by default SQL encoding setup in the t4server.ini file which will escape the characters properly for insert into the DB, and therefore such commands cannot be passed. Now if you DI

Re: Witango-Talk: testing....

2002-06-21 Thread Robert S. Sfeir
send email to [EMAIL PROTECTED] in the body type: set witango-talk REPRO NOACK CONCEAL This will send you a copy of your email, not send you an acknowledge of the send since you get a copy anyway, and conceal hides your name on the list from a list command. R Dost, Farzana wrote: >hay i gu

Re: Witango-Talk: testing....

2002-06-21 Thread Robert S. Sfeir
Hey let's all keep quiet and not reply... hehehehe Dost, Farzana wrote: >Hi Web Dude, and others please ignore this. > >If you see this message please let me knowI still have not succeeded in >sending message to the list... > >Thanks > >Farzana > >__

Re: Witango-Talk: Record Counter

2002-06-20 Thread Robert S. Sfeir
of list witango-talk Subject: Re: Witango-Talk: Record Counter thats possible but i need a live update on the record itself to show how many times its been accessed. On Thu, 20 Jun 2002, Robert S. Sfeir wrote: All these suggestions PLUS: If you have a server log you can ru

Re: Witango-Talk: Record Counter

2002-06-20 Thread Robert S. Sfeir
, 20 Jun 2002, Robert S. Sfeir wrote: All these suggestions PLUS: If you have a server log you can run webtrends, or Bolero if that's still around, or something looking for a string in the search, this is assuming that you have a URL which looks something like this: http://domai

Re: Witango-Talk: Record Counter

2002-06-20 Thread Robert S. Sfeir
-3353 Cell:   (416) 606-3885 Email:  [EMAIL PROTECTED] Web:    http://www.skadt.com -Original Message- From:[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robert S. Sfeir Sent: June 20, 2002 5:29PM To: Multiple recipients of list witango

Re: Witango-Talk: Record Counter

2002-06-20 Thread Robert S. Sfeir
All these suggestions PLUS: If you have a server log you can run webtrends, or Bolero if that's still around, or something looking for a string in the search, this is assuming that you have a URL which looks something like this: http://domain.com/sometaf?_function=get&id=21 where the 21 woul

Re: Witango-Talk: XML is change

2002-06-18 Thread Robert S. Sfeir
> Such a great opportunity too... > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Robert S. Sfeir > Sent: Tuesday, June 18, 2002 2:38 PM > To: Multiple recipients of list witango-talk > Subject: Re: Witango-Talk: XML i

Re: Witango-Talk: XML is change

2002-06-18 Thread Robert S. Sfeir
me excellent points here. > > Your insight is valuable. Cheers > > > ----- Original Message - > From: "Robert S. Sfeir" <[EMAIL PROTECTED]> > To: "Multiple recipients of list witango-talk" <[EMAIL PROTECTED]> > Sent: Tuesday, June 18, 2

Re: Witango-Talk: XML is change

2002-06-18 Thread Robert S. Sfeir
ite once, test > everywhere." ) Yeah their has been a lot of that... But please don't confuse this issue with GUI issues, and by GUI I mean Swing/AWT issues which carry from platform to platform. I have yet to have a problem with server side implementations of Java

Re: Witango-Talk: XML is change (was: IE browser share now 93%in2002 (Off topic news))

2002-06-18 Thread Robert S. Sfeir
On 6/18/02 12:02 PM, "Scott Cadillac" <[EMAIL PROTECTED]> wrote: > Hi Robert, > > Please see my replies below... > - Original Message ----- > From: "Robert S. Sfeir" <[EMAIL PROTECTED]> > To: "Multiple recipients of list witango-talk&q

Re: Witango-Talk: XML is change (was: IE browser share now 93% in2002 (Off topic news))

2002-06-18 Thread Robert S. Sfeir
b-sites with lots of pretty graphics or are loaded > down >>>> with Applets and Plugins. >>>> >>>> Our users that 'Think Different' want meat, functionality, > flexiability >>> and >>>> they want it fast and without has

Re: Witango-Talk: hacked (OT)

2002-06-15 Thread Robert S. Sfeir
or any part of it. If you have received this message in error, please notify the sender immediately by e-mail and delete all copies of the message. =========== R -- Robert S. Sfeir Senior Java Engineer DECA/NIH [EMAIL PROTECTED]