Converting FTP data sync to Azure services -


i have old legacy application built on .net remoting, , transferring data via xml via ftp.

esentially, crm system sending xml files directory on web server, has windows service uses filewatcher process incoming xml file, updating database. similarly, changes on web application serialize down xml file out folder, crm polls via ftp every 5 minutes.

trying map best services convert azure.

you use azure blobs or azure files this.

azure blobs: lowest cost option, while still providing high throughput. however, note azure blobs not have file watcher functionality, have poll directory every few minutes check new file. if delete files after processing them, easy - have list , see if there files. if want retain files, might have more, since file list big on time. let me know if case , can suggest options.

azure files: smb share can mount vm in same region. map pretty closely exising filesystem based code, including filewatcher. however, note azure files can mounted vm in same region.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -