FTP from Azure
-
Dienstag, 19. Oktober 2010 15:35
I'm interested to know if I can ftp from Azure. I have a solution now that collects photos and ftp's them to different locations from a windows service. I would like to move this solution to Azure and I am wondering if that part is possible. I am using enterprisedt as an ftp client. (http://www.enterprisedt.com/products/edtftpnet/doc/api/EnterpriseDT.Net.Ftp.html)
Thanks.
Alle Antworten
-
Dienstag, 19. Oktober 2010 17:13
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.
- Als Antwort markiert Mog LiangModerator Dienstag, 26. Oktober 2010 09:15
-
Dienstag, 19. Oktober 2010 18:12Great thanks. I am looking to setup an ftp client so the FTPWebRequest/Response should work fine.
-
Sonntag, 4. September 2011 04:49Did using FTP Request/Response work using Azure worked role? We are having issues with such a request.
-
Donnerstag, 24. Mai 2012 08:18We also have issue with FTPWebRequest/Response from Azure instance to outside Ftp server.
-
Donnerstag, 24. Mai 2012 22:53
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

