Existing FTP server code?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • nonamehkg@hotmail.com

    #1

    Existing FTP server code?

    Hi, I'm writing a program that needs to upload files to a server
    (probably using FTP), that also needs to be secured and be able to
    setup username/password programmaticall y.

    I wonder if there are already well written base code I can work on.

    The reason I choose FTP is because it is well known/supported and I
    don't need to write much code at all. Any better ideas?


    Thank you


    =======
    kychan

  • Mateusz So³tysek

    #2
    Re: Existing FTP server code?

    nonamehkg@hotma il.com wrote:[color=blue]
    > Hi, I'm writing a program that needs to upload files to a server
    > (probably using FTP), that also needs to be secured and be able to
    > setup username/password programmaticall y.
    >
    > I wonder if there are already well written base code I can work on.
    >
    > The reason I choose FTP is because it is well known/supported and I
    > don't need to write much code at all. Any better ideas?
    >
    >
    > Thank you[/color]

    Hi,

    Use paramiko SSH2 protocol module (http://www.lag.net/paramiko/)

    Regards

    Comment

    • gene tani

      #3
      Re: Existing FTP server code?


      Mateusz Soltysek wrote:[color=blue]
      > nonamehkg@hotma il.com wrote:[color=green]
      > > Hi, I'm writing a program that needs to upload files to a server
      > > (probably using FTP), that also needs to be secured and be able to
      > > setup username/password programmaticall y.
      > >
      > > I wonder if there are already well written base code I can work on.
      > >
      > > The reason I choose FTP is because it is well known/supported and I
      > > don't need to write much code at all. Any better ideas?
      > >
      > >
      > > Thank you[/color]
      >
      > Hi,
      >
      > Use paramiko SSH2 protocol module (http://www.lag.net/paramiko/)
      >
      > Regards[/color]

      or flip thru twisted book
      http://www.oreilly.com/catalog/twistedadn/toc.html

      Comment

      • vglass@jscape.com

        #4
        Re: Existing FTP server code?

        Depending on which language and protocol you want to use consider the
        following

        SFTP (FTP over SSH)

        http://www.jscape.com/sftp/ (Java classes)

        http://www.jscape.com/sshfactorydotnet/ (.NET classes)

        FTPS (FTP over SSL)

        http://www.jscape.com/sftp/ (Java classes)

        http://www.jscape.com/sftpdotnet/ (.NET classes)

        Comment

        Working...