Witango-Talk: OT - FTP interactions

2010-11-22 Thread WebDude
This is way off topic, but I have a client who is asking some questions that I am having a hard time answering. I was hoping some of you with more knowledge then I can give me some direction. I see all sorts of probems with this, but am trying to figure out what to say to him. I believe the files

RE: Witango-Talk: OT - FTP interactions

2010-11-22 Thread Robert Shubert
This doesn’t seem too hard. I think I would first try using the FTP site as if it were a database. This may be too slow, however, depending on the amount of content in the FTP server and the load on the site, but I would probably add simple memory caching rather than trying to sync a db.

RE: Witango-Talk: OT - FTP interactions

2010-11-22 Thread WebDude
M... This FTP site is not in my control. It is housed by a third party and as far as I know it has no http capabilities. We will not be able to add meta-data or control the directory/file structure in any way. Nor will we know ahead of time what the file structure is or the filenames within

RE: Witango-Talk: OT - FTP interactions

2010-11-22 Thread Robert Shubert
Well, I’m not sure how you would generate a thumb of a specific PDF. I suppose your could use a tool that renders PDF to JPEG, but that could get a little complex. Other than that, this is straight forward. Simply traverse the FTP structure through the FTP protocol. Think of it like working

RE: Witango-Talk: OT - FTP interactions

2010-11-22 Thread WebDude
Well, call me dumb, but where could I get information on how to do this. I am having a hard enough time just trying to display a directory of images thorugh the http protocol. Are you saying that we could let the customer traverse the ftp site via the ftp protocol (i.e.

RE: Witango-Talk: OT - FTP interactions

2010-11-22 Thread Robert Shubert
Here’s the part that I think you missing: Your user goes to the page: www.yoursite.com/ftp_cart.taf ftp_cart.taf in turn logs into the FTP server, reads the root directory and displays an HTML page of options (files and folders) to the user. The user then clicks a

Witango-Talk: Detect javascript variables

2010-11-22 Thread MC Tay
Hi: Is a way to check the value of javascript variable using the witango IF action? Thanks! MC To unsubscribe from this list, please send an email to lists...@witango.com with unsubscribe witango-talk in the body.

RE: Witango-Talk: Detect javascript variables

2010-11-22 Thread Robert Shubert
MC, If you are referring to a JavaScript variable that is resident in the user's browser, then no, Witango can't access the browser like that. That said, it is possible in certain circumstances, so please let us know a little more about the situation. Robert -Original Message- From:

RE: Witango-Talk: OT - FTP interactions

2010-11-22 Thread WebDude
Well I am hosed then since I am working with Witango 2000. Maybe that was why I was so confused. Very cool with this new functionality in 6.0. I am going back to the client to see of the importance of this. I may be upgrading sooner then I thought! _ From: Robert Shubert

Re: Witango-Talk: Detect javascript variables

2010-11-22 Thread Ben Johansen
MC, the only way you can communicate var value back to witango is 1. put the value in the get arg on the redirect 2. assigning the var value to like a hidden input 3. using ajax to make the call in the background. There is no direct way to get JS vars (browser side) to work with witango vars

Re: Witango-Talk: OT - FTP interactions

2010-11-22 Thread Robert Garcia
I used to use witango pretty successfully with FTP, but I was using a special FTP server that came with a com object that worked with witango. It was TitanFTP. Another way, is just working with command line tools. Once you get it working, you can make an ftp class with chdir, ls, put, get