Beantwortet FTP from Azure

Alle Antworten

  • Dienstag, 19. Oktober 2010 17:13
     
     Beantwortet

    In a nutshell - no. Azure doesnt really have any concept of FTP - you can use Azure Storage to hold data and write a program that can upload data to blob storage or the tables or queues.

    For general FTP - see this attempt - http://blog.maartenballiauw.be/post/2010/03/15/Using-FTP-to-access-Windows-Azure-Blob-Storage.aspx

    If you are looking to simply connect to other FTP services - no reason why the standard FTPWebRequest/Response shouldn't work.

  • Dienstag, 19. Oktober 2010 18:12
     
     
    Great thanks.  I am looking to setup an ftp client so the FTPWebRequest/Response should work fine.
  • Sonntag, 4. September 2011 04:49
     
     
    Did using FTP Request/Response work using Azure worked role? We are having issues with such a request.
  • Donnerstag, 24. Mai 2012 08:18
     
     
    We also have issue with FTPWebRequest/Response from Azure instance to outside Ftp server.
  • Donnerstag, 24. Mai 2012 22:53
     
      Enthält Code

    We set up a VM role and can FTP to and from just fine. You just need to set up the endpoints for FTP in the service definition if you want to FTP in. As for FTP out, I didn't think there were any restrictions on ports going out.

              <InputEndpoint name="FTP" protocol="tcp" port="21" localPort="21" />
              <InputEndpoint name="FTPPassive1" protocol="tcp" port="1024" localPort="1024" />
              <InputEndpoint name="FTPPassive2" protocol="tcp" port="1025" localPort="1025" />
              <InputEndpoint name="FTPPassive3" protocol="tcp" port="1026" localPort="1026" />
              <InputEndpoint name="FTPPassive4" protocol="tcp" port="1027" localPort="1027" />


    • Bearbeitet atilekt Donnerstag, 24. Mai 2012 22:58
    •