Tagged Questions

3
votes
2answers
267 views

Alternatives to commons-net FTPSClient?

Do you know any good open source library other than Apache commons-net FTPSClient to interact with a FTPS site Regards,
3
votes
8answers
4k views

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

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 ...
2
votes
0answers
336 views

ftp_ssl_connect with implicit ftp over tls

Can ftp_ssl_connect handle Implicit FTP over TLS? By default it uses explicit. I'm trying to upload to a server that accepts only Implicit ftp over tls on port 990; has anybody run into this as of ...
1
vote
2answers
242 views

PHP - Download from URL and Upload via FTP

Slightly weird concept here... A client of ours wants data pushed to them over FTP/S The idea is that we download one of our reports by downloading from a URL (a CSV File), then push this to the ...
1
vote
1answer
322 views

connect to ftps site via java

I am trying to connect to a clients ftps server via my java code. I am using apache commons library to do so. However, I am not able to do so. Can anyone please help me with this. The client server ...
1
vote
3answers
417 views

ssh tunneling for sftp

I am trying to use sftp over an ssh tunnel I have a homePC, that can use a gatewayPC as a jump host to login to a remoteserver i use the ssh tunnel command $ssh -t userid@gateway ssh remoteserver ...
1
vote
2answers
515 views

Can explicity ftps via Filezilla but not from code

As the title states, I can connect to another machine from my server via FileZilla Client, but I cannot via code (.Net - FTPWebRequest) I know the code is good, as it works from another machine. The ...
1
vote
5answers
3k views

FTP over SSL for C#

I'm using the code below (needs to be .Net 2.0) to connect on a UAT server to a customer FTP server to up/down load files. I need to connect over port 990, using a self signed certificate supplied by ...
1
vote
6answers
639 views

Secure FTP for Windows 2000 Server

Can someone recommend a secure FTP implementation that works well on Windows Server 2000? I'm uploading files into virtual directories and web applications under IIS and the existing provider, ...
1
vote
7answers
1k views

when using a FTPS connection to transfer a file, what is the difference between a 'Binary mode taransfer' and 'ASCII mode transfer'?

I am using a FTPS connection to send a text file [this file will contain EDI(Electronic Data Interchange) information]to a mailbox INOVIS.I have configured the system to open a FTPS connection and ...
0
votes
2answers
45 views

How to get Full Path of source and destination in FTP Upload / Download through packet parsing?

I am using WinPcap for packet capturing through c++ & FileZilla like agent to upload and download stuff. Using FTP commands CWD, PWD, RETR.. etc from captured packets, I can get FTP path of ...
0
votes
0answers
160 views

FTPES (FTP Explicit SSL) client on iPhone

I need to be able to read and write files to an FTPES server from my iPhone app. I have found many libraries for plain FTP but I specifically need FTPES. Does anyone know of any libraries that can ...
0
votes
1answer
314 views

FTPS (FTP over TLS/SSL) Proxy

Is the any proxy server which supports FTPS (FTP over TLS/SSL)?
0
votes
1answer
248 views

FTP Over SSL/TLS and Firewall Support

Is there any open source/commercial FTP client which supports FTPS (FTP over SSL/TLS) over firewall/proxy? Since If we use SSL/TLS, the Control channel is encrypted and the Firewall couldn't ...
0
votes
3answers
693 views

How do I download a file from an FTP server using FTP over SSL using .NET?

My post title almost states it all: How do I download a file from an FTP server using FTP over SSL using .NET? I have read a bit and there are several 3rd party components to purchase that wrap up ...
0
votes
2answers
146 views

Component or Source for Running an FTP Server via C# (with SSL)

I'm surprised by the lack of products out there for running your own FTP server in managed code. I'm looking for either a product or thorough source code for building an FTP server in C# that supports ...
0
votes
2answers
181 views

Looking for a good book covering CURL library under c++

are there any good books/tutorials decscribing how to use CURL library under C++ to implement FTP / SFTP clients ? Thx for help.
0
votes
2answers
333 views

Help! PHP attempting FTPS transfer creates empty files

Hey, all. I'm currently attempting to use PHP to transfer small files between our server and a remote FTPS (FTP over SSL) server. I'm the standard fair to get this done, ie, file_put_contents, ...
0
votes
1answer
769 views

How to use FTP get/put from Solaris to IBM Mainframe?

For some reason when I try to use get or put from a Solaris box to an IBM mainframe, the ftp client appears to hang. I've tried all sorts of different variations (for example, including using quotes ...
0
votes
2answers
842 views

iPhone FTPS client

I have no clue how to make an FTPS (FTP over SSL) on the iPhone. I would like to use the following code ftpStream = CFWriteStreamCreateWithFTPURL(NULL, (CFURLRef) url); ...
0
votes
2answers
563 views

Supress or Ignore Non-Trusted Certificate With FTPS.exe (MoveIT Freely)?

One of the FTP accounts that I use recently began requiring secure FTP connections, which broke a script that I used to upload to it using a 'standard' FTP library. I've written a little batch file ...