Re: [Gambas-user] My first rodeo in using the network component

2009-03-27 Thread M0E.lnx
But there has to be a way to do this using gambas objects, at least I would imagine. Of couse, I could use external commands to to get the results I want. Like curl -G url store the output in a string or string[] and work my way off of there. but I was kind of hoping there was a way to do this

Re: [Gambas-user] My first rodeo in using the network component

2009-03-25 Thread M0E.lnx
But it's not even reporting an authentication error... It doesn't even try to connect. All I need it to do is to get me something like the result of curl -G ftp://ftp.some.ftp.site.com/; -- Apps built with the Adobe(R)

Re: [Gambas-user] My first rodeo in using the network component

2009-03-25 Thread Gianni Piccini
On Tue, 24 Mar 2009 15:49:15 -0500 M0E.lnx m0e@gmail.com wrote: and since it's anon access, I figured I'd leave the user and pass properties empty. Sure? If I don't err, you should put anonymous as user and your email (or fake email) for password...

Re: [Gambas-user] My first rodeo in using the network component

2009-03-25 Thread M0E.lnx
Even after feeding it user name and passwords, the peek() method returns nothing -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

[Gambas-user] My first rodeo in using the network component

2009-03-24 Thread M0E.lnx
So i've decided to try out the network component in gambas. I'm trying to get a listing of the contents of an FTP URL so I'm using a FTPclient object. I've set it's .URL and since it's anon access, I figured I'd leave the user and pass properties empty. From what I read in the documentation, I

Re: [Gambas-user] My first rodeo in using the network component

2009-03-24 Thread Olivier Cruilles
Hi, I don't use the FTP component but I do FTP transfert by building an FTP command file and I use it by the unix command line FTP command. It's not really interactive and It's necessary to analyse the ftp command log result but It work in any case. Olivier Cruilles Mail:

Re: [Gambas-user] My first rodeo in using the network component

2009-03-24 Thread M0E Lnx
How exactly do you do this? What I need is to get the listing of a FTP directory and analyze it.. I can do that in gambas code, but I thought I could use the net component to get the listing. Would you mind explaining how your method works?