> I currently have an ftp link that does not require a > username/password; meaning, I can cut/paste the link into a > browser url line or a exporer window and view the contents of > the files:
Use anonymous as the username with an e-mail address as the password. We connect to this server without error using CFFTP... variables.ftp_server = "datalink.interealty.com"; variables.ftp_username = "anonymous"; variables.ftp_password = "[email protected]"; variables.ftp_folder = "/DataLinkOutput/MFR/MFR_xxxxxxxxxx/"; ... <cfftp action="open" connection="datalink" server="#variables.ftp_server#" username="#variables.ftp_username#" password="#variables.ftp_password#" stoponerror="yes"> <cfftp action="listdir" connection="datalink" name="remoteFiles" directory="#variables.ftp_folder#" stoponerror="yes"> <cfftp action="close" connection="datalink"> I do not envy anyone who has work download/import data from MLXchange. See my rants about them at http://www.tlson.com/post.cfm/build-a-better-mls-idx. -Justin ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323419 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

