ftps

Powershell ftps upload to box.com using passive mode

守給你的承諾、 提交于 2019-12-13 02:21:11
问题 The problem: A client requires that we upload extracted data from our system to their box.com platform, rather than our normal SFTP utility. I have box.com credentials, and am aware they require FTPS not SFTP, and require passive mode. I've cribbed a fragment from ThomasMaurer's Powershell FTP Upload and Download script. Powershell version on my server is 4.0 Code fragment is: #config $Username = "username@host.com" $Password = "redactedpassword" $LocalFile = "C:\path\to\my\file.csv"

A call to SSPI failed, see inner exception using FileZilla Server and System.Net.FtpClient

China☆狼群 提交于 2019-12-13 01:24:42
问题 I am setting up an FTP Server ( FileZilla ) and using the netftp codeplex project System.Net.FtpClient to connect to it over SSL / TLS using an X509Certificate2 . I've downloaded FileZilla Server from sourceforge. I've downloaded System.Net.FtpClient v14.06.17 from codeplex. I think I have isolated the problem, but maybe someone has some additional thoughts as to the underlying cause. A workaround is provided at the bottom of this post. An exception occurs calling client.GetListing() and

How to connect to a implicit FTPS server with nodeJS?

扶醉桌前 提交于 2019-12-12 16:02:15
问题 For a project I have to connect to a FTPS server over a implicit connection. I tried with node-ftp, because it seems that this is the only library, that supports the implicit connection. I connect using the following code: var ftpC = new FTPClient(); ftpC.on('ready', function () { console.log('Connection successful!'); }); ftpC.on('error', function (err) { console.log(err); }); console.log('Try to connect to FTP Server...'); ftpC.connect({ host: HOST_TO_CONNECT, port: 990, secure: 'implicit',

What would be a recommended choice of SSIS component to perform SFTP or FTPS task? [closed]

吃可爱长大的小学妹 提交于 2019-12-12 08:05:04
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Sometimes normal FTP doesn't quite cut it... When you need to do secure FTP via SSIS packages, which product would you recommend? Before answering, please see if someone has already suggested the same thing and, if so, vote it up. NOTE: Ideally, it needs to handle both SSH and SSL FTP connections, but I'd

Anyone get working FTPS/FTP::TLS Under Ruby 1.9.3?

两盒软妹~` 提交于 2019-12-12 00:37:54
问题 I've tried several gems, examples, etc, and cannot get this working, the more promising gems were: double-bag-ftps and FTPFXP, I can connect but I cannot transfer files, in active or passive mode.. sample code with ftpfxp: @conn2 = Net::FTPFXPTLS.new @conn2.passive = true @conn2.debug_mode = true @conn2.connect('192.168.0.2', 990) @conn2.login('myuser2', 'mypass2') @conn2.chdir('/') @conn2.get("data.txt") @conn2.close sample code with double-bag: ftps = DoubleBagFTPS.new ftps.ssl_context =

Error accessing FTPS site from unix - “curl: (35) Unknown SSL protocol error in connection to <ftp site>”

狂风中的少年 提交于 2019-12-11 23:19:35
问题 I'm using filezilla ftp server on windows server 2008 machine. I have setup the FTPS site on this server. It works fine when i create any fpts account and access it from any ftp windows client. But when i try to access this FTPS site from Unix machine it prompt me error - "curl: (35) Unknown SSL protocol error in connection to " on the client side." I checked the log on the server and it says connection disconnected. Server Log: 150 Connection accepted 226 Transfer OK disconnected. can

ColdFusion FTP Explicit TLS

无人久伴 提交于 2019-12-11 19:18:51
问题 Is it possible to do a ColdFusion FTP connection using Explicit TLS? I have searched on Google but to no avail. 回答1: The Apache Commons has an FTPSClient class as well, and I think it is already available in the later versions of Coldfusion. Just adding an example. It uses a test server that I found available. I am using CF 9.0.2, and did not have to download any additional jars. ftpsClient = CreateObject("java","org.apache.commons.net.ftp.FTPSClient").init(JavaCast("boolean",true));

uploading file on secured FTP over https protocol c#

此生再无相见时 提交于 2019-12-11 05:54:01
问题 I have to upload and download files on FTP with HTTPS. If I am thinking right I have to use HTTPWebRequest class since the ftp is using HTTPS protocol. Now I'm trying to download a file but all the response stream I'm getting is just the "virtual user 'XXX' logged in". May be I'm not setting correct method type or something else is going wrong. WebRequest ftp1 = HttpWebRequest.Create(u1); ftp1.PreAuthenticate = true; ftp1.Credentials = netCred; ftp1.Method = WebRequestMethods.Ftp.DownloadFile

Certificate validation/installation for FTPS (SSL)?

二次信任 提交于 2019-12-11 05:04:29
问题 I am using FileZilla as the server and a DNS service, so that I wouldn't have to use my local machine IP (but I've tried the following methods on both). After trying System.Net.FtpWebRequest to work, I've read around (including a few posts on SO) and found out that the SSL support is not very adequate with that library. It was working with regular FTP, but when I tried forcing SSL, I was getting a certificate validation error saying: The remote certificate is invalid according to the

Downloading all files in directory using libcurl

家住魔仙堡 提交于 2019-12-10 20:39:08
问题 I am new to the libcurl and found a way to download a single file from the ftp server. Now my requirement is to download all files in a directory and i guess it was not supported by libcurl. Kindly suggest on libcurl how to download all files in directory or is there any other library similar to libcurl? Thanks in advance. 回答1: You need the list of files on the FTP server. Which isn't straightforward as each FTP server might return a different format of file listing... Anyway, the ftpgetresp