Witango-Talk: Migrating from W2K to Linux

2006-06-05 Thread Jason Schulz
Folks,Does anyone have any tips that they can share about migrating a Witango app from windows to linux (specifically Red Hat)?Thanks,Jason. WITH IMAGINATION Planning, Implementation and Management of Web Applications  160 Pacific Highway North Sydney NSW Australia 2060 phone + 612 9929 9229 fax

Witango-Talk: Testing New Account

2006-06-05 Thread WebDude
I have recently changed employment and I am checking to see if I am on the list with a new email address.   Thanks!   TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

Re: Witango-Talk: Migrating from W2K to Linux

2006-06-05 Thread John McGowan
Jason, We've made that conversion of all of our apps, and the Windows to Linux part was nothing compared to the Witango 5 to Witango 5.5 part.  Obviously you need to be aware of Linux's case sensitive file system.  I honestly can't think of anything about the switch relating to the OS chang

RE: Witango-Talk: Migrating from W2K to Linux

2006-06-05 Thread Michael Dittbrenner
Jason:   Did you have to buy a new witango license for linux or did with allow you to move over. I have contacted [EMAIL PROTECTED] and NEVER got a response. I have emailed it twice actually and never got a response either time.     Mike D  

Witango-Talk: Case Sensitivity

2006-06-05 Thread Willochell, Mike
Hello,   Would anyone know of a simple way in Tango to make a case sensitive comparison of alpha-numeric strings?   What I really need to do is check passwords that get submitted though forms against values stored in a database table using a Search or Direct DBMS action. I know I can e

RE: Witango-Talk: Case Sensitivity

2006-06-05 Thread David Shelley
Mike,   One way to do it would be to do a hash encryption on the values then compare them in an IF tag. The encrypted value of ABC will be different than the encrypted value of AbC.   I haven’t done it before, so there may be other ways too.   Dave   -Original Message- From:

RE: Witango-Talk: Case Sensitivity

2006-06-05 Thread Willochell, Mike
Dave,   Thanks for the suggestion.   I was actually looking at hash encryption, but my concern was how unique it would really be. In other words, is there even the remotest of possibility that the hash of a wrongly entered password could equal the hash of the correct password? What rais

Re: Witango-Talk: Case Sensitivity

2006-06-05 Thread Robert Garcia
Convert both to hex with <@cipher, and compare. This will just convert the ascii character of each letter to its hex value, and since 'a' and 'A' have different ascii values, it will work. --  Robert Garcia President - BigHead Technology VP Application Development - eventpix.com 13653 West Park D

RE: Witango-Talk: Case Sensitivity

2006-06-05 Thread Willochell, Mike
Robert,   Does the 5.0 version support this? I didn’t see hex as an option in the <@cipher> documentation. The only methods listed are BitRoll, Caesar, OneTimePad, Rot13, and Hash. None of these seem to do what you mentioned, but this is exactly what I need.   Thanks.   Mike  

Re: Witango-Talk: Testing New Account

2006-06-05 Thread Alan Wolfe
Hey WebDude, reading you loud and clear (: On 6/5/06, WebDude <[EMAIL PROTECTED]> wrote: I have recently changed employment and I am checking to see if I am on the list with a new email address.   Thanks!   TO UNSUBSCRIBE:

RE: Witango-Talk: Testing New Account

2006-06-05 Thread WebDude
Thanks Alan...   From: Alan Wolfe [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 11:14 AMTo: witango-talk@witango.comSubject: Re: Witango-Talk: Testing New Account Hey WebDude, reading you loud and clear (: On 6/5/06, WebDude <[EMAIL PROTECTED]> wrote: I have recently c

Re: Witango-Talk: Migrating from W2K to Linux

2006-06-05 Thread William M Conlon
I don't have a set of tips handy, but if you run into a snag, I'm sure I can answer. Redhat 9, Fedora Core 1, 3 and 4 have been exceptionally reliable. Robert Garcia is running FC5, and seems very pleased with it. Because of gnu licensing issues, there are some things you have to instal

Witango-Talk: TCF debugging

2006-06-05 Thread William M Conlon
I typically rely on the witango.log but it when you return ResultsHTML from a TCF, it all goes into the log, so searching for the particular method call becomes tedious. I've asked for the ability to control logging so one could turn off all logging from a method once it as been debugged,

Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Alexander
Hi,   I’ve got a problem developing application that must be supported by Safari.   The thing is I can not get request parameters (<@arg>) from submitted Form if enctype="multipart/form-data"   When I run the Tango file with debug file it shows all parameters as part of “Application F

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Tom Ferguson
Alexander,   Are you running on a MAC or Windows server platform?   If you will go to:   http://www.pcforge.com/WitangoGoodies.htm   and look under the goodies in the ASP section, you will find a file upload asp component that works well with Witango... From: Alexander [mailto:[EMAI

Re: Witango-Talk: Case Sensitivity

2006-06-05 Thread Ben Johansen
Ha!you never said anything about server side scripting<@assign local$pass1 'Witango'><@assign local$pass2 'witango'><@assign local$X ''><@SCRIPT SCOPE=LOCAL>var pass1 = server.getVariable('pass1', 'local');var pass2 = server.getVariable('pass2', 'local');var isEQ = false;if (pass1 == pass2) {isEQ =

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Alexander
Thanks for reply.   We’re running on Windows server platform.   I’ve downloaded the ASP example. There are 2 classes. Do I need to convert them into DLL in order to use it in Witango?   From: Tom Ferguson [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 6:27 PM To: witan

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Tom Ferguson
Well, its been forever since I looked at it...   I never converted anything to .dll.  You must have _vbscript_ running on the webserver though. From: Alexander [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 06:52To: witango-talk@witango.comSubject: RE: Witango-Talk: quest

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Alexander
The _vbscript_ is running on the server.   How I connect that with Witango?   From: Tom Ferguson [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 6:58 PM To: witango-talk@witango.com Subject: RE: Witango-Talk: question: Upload doesn't work in Safari browser   Well,

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Tom Ferguson
It doesn't integrate with Witango.  It just provides you with a file upload that can be included in your html code.  It is an older example.  The Witango (when it was Tango) upload was very slow and unpredictable, so I used this.  It is not as nice as how Witango handles it now, but since yo

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Alexander
It will work. A bit complicated…   Thanks   From: Tom Ferguson [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 7:10 PM To: witango-talk@witango.com Subject: RE: Witango-Talk: question: Upload doesn't work in Safari browser   It doesn't integrate with Witango.  It just

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Tom Ferguson
That's why we use Witango :) From: Alexander [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 07:18To: witango-talk@witango.comSubject: RE: Witango-Talk: question: Upload doesn't work in Safari browser It will work. A bit complicated…   Thanks  

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Rick Sanders
Alexander,   If you’re having that much trouble with a simple enctype=”multipart/form-data” then check the configuration of your web server, or use a different web server. I’ve never had this problem using Apache or IIS. Rick Sanders President 902-401-7689 www.webenergy-sw.com

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Rick Sanders
You can’t integrate _vbscript_, or ASP.net with WiTango. Why complicate life, just use WiTango completely.   Rick Sanders President 902-401-7689 www.webenergy-sw.com From: Alexander [mailto:[EMAIL PROTECTED] Sent: Monday, June 05, 2006 8:03 PM To: witango-talk@witango.com

Re: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Ben Johansen
You sure about that? I have done both _vbscript_ and ASP calls within a witango results.BenOn Jun 5, 2006, at 6:55 PM, Rick Sanders wrote:You can’t integrate _vbscript_, or ASP.net with WiTango. Why complicate life, just use WiTango completely. Rick Sanders President902-401-7689www.webenergy-sw.com

Re: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Robert Garcia
There was a thread, a long time ago about this. The issues with uploading from safari, were not a problem in witango, or safari, but in IIS 5. Uploading from Safari works just great with witango, but NOT with IIS 5. There were many bugs with http uploading in IIS 5, another was an http upload would

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Tom Ferguson
I guess I should just stop replying to these posts... I've been on this list for almost 10 years I imagine... from Everyware, through Pervasive, and now Witango...   A week or two ago, someone asked about a solution for uploading files using Witango.  I sent that person a taf offline with the

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Scott Cadillac
I'm right with you Tom, I've often thought to myself that the future of community support and "open source" or "free" software is surely doomed, because I predict these concepts may simply implode one day - from the lack of professionalism and respect. If I have ever neglected to say thank you

RE: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Tom Ferguson
Well, thanks for your response Scott. You're one of the ones who gives more than you take in this forum. Glad to know that I wasn't feeling like the Lone Ranger :) > -Original Message- > From: Scott Cadillac [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 06, 2006 12:19 > To: 'witango

Re: Witango-Talk: question: Upload doesn't work in Safari browser

2006-06-05 Thread Ben Johansen
Hey, There are times, I have felt that way. I treat it like a gift you give someone, once you give it, it is out of your hands So take heart, and please don't let this keep you from being active on this list. you would be missed Ben On Jun 5, 2006, at 9:28 PM, Tom Ferguson wrote: Well,