I'm working with with asp.net and writing a few classes (controls for the CMS) to use on my website. At the moment i'm using a text editor (UE) which has sftp support and syntax highlighting to edit the files and save via sftp. Then i just test it out on the test site. It's working well.. but since i'm very new to c# i'm always looking u...
I have been working on a small project on and off for a while and I think I am close but it has 'issues'. The idea is to FTP a file up to a 3rd party, they process it and 5-10 minutes later they generate a result set which needs to get downloaded and processed on our side.
So the code might be a little simple, it's just something I cob...
I'm using delphi6, and our company don't want to upgrade it,
and I found Tidftp lack the MLSD command,
So what is the free ftp component you are using now?
ps : I searched for one on Google, but I don't know which is stable and standard.
...
Dear all,
one my application features is tod download files from our ftp server. And of course this feature reqiures to cancel this operation (Cancel Downloading).
Now, my Download Function is as follows:
try
{
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + uri + "/" + fileName));
reqFTP...
Hello. I am writing a program in C# / VS2005 to back up our production database, compress it, and transfer it to a remote server. I have a simple ftp site set up on the remote server.
The problem is that the file only transfers about half way (~500 - 600 MB) and the program throws the exception:
"An existing connection was forcibly...
I've seen a number of different solutions for doing this but I wonder if anyone can suggest which is the most elegant and secure version of letting users upload their own files to a folder on their own shared hosting? (php.ini etc is out of bounds).
Files will be anything up to 100mb in size, so maybe an FTP based solution would be best...
I'm looking to connect to an existing ftp server, upload a file, wait while the server generates a report on it, and download that report back to the local machine in a vb.net 2.0 winforms project.
Is there an existing FTP library that would be helpful to me for this? My task seems simple enough that I'd rather not get into the world o...
I'm using the following C# code to FTP a ~40MB CSV file from a remote service provider. Around 50% of the time, the download hangs and eventually times out. In my app log, I get a line like:
> Unable to read data from the transport
> connection: A connection attempt
> failed because the connected party did
> not properly respond after ...
I am attempting to programmatically FTP a backup file that is stored on a SAN device. The device has been mapped on the server. I tested the application by running it from an icon on the desktop and it works perfectly. When I run the program through a windows service I get an error message saying that the drive cannot be found. The a...
As we all know (don't we?), the FTP functionality on Dreamweaver is inexcusable for a professional product, but I bear with it because Dreamweaver has other useful stuff that overshadows the FTP.
However, I have a specific FTP situation which has been annoying me for a few years now, and was hoping someone had a solution.
We use the ZE...
Hi there,
We're looking to integrate a file/folder view of a FTP share in a SharePoint portal. We recon the best solution would be to create a webpart that reads the contents of the FTP share and displays it in the portal.
Is there any third party solutions for this? Has anyone done anything like this before.. and might be able to giv...
I'm currently using E-TextEditor. This application is trying very hard to be TextMate for Windows, but unfortunately it isn't very stable. Also, it has some serious problems opening minified files (e.g. 70 kB JavaScript files), which is unacceptable IMHO.
Notepad2 has no problem at all opening these files, and seems to be very stable as...
Someone is FTPing a file of size 10Mb to folder on a linux server.
While the file is in transition a cron wakes up and fires off a Perl script that is designed to look at the ftp folder and move whatever it finds there to some alternate folder. I'm using the move() function from File::Copy. The Perl process actually renames the files as...
How can I run this on linux command line when my username has an @ sign in the middle?
ftp -u user:password@host/destination_folder/ sourcefile.txt
My username is "[email protected]" and it thinks my host is "domain.com".
I am stuck and cannot google my way out. Any help greatly appreciated.
NOTE: This is an unattended upload, so I c...
Note: I'm a newb to Continuous Integration
What is the "best" approach to get these functions:
Build (assemblies and web app)
Testing (MbUnit or NUnit)
and if it passes tests deploy via FTP to the main server (internet).
And what I mean by "best" is cheapest option, and easy to learn (low headache).
...
Hi guys,
For my c# mobile application developed with visual studio 2008, i am trying to use the FTP.
FTP works fine from the real device, but it does not work when i use the device emulator: the connection is successful, but it failed when attenpting to retrieve data. Both use windows mobile 5.
Did some of you already had this problem ...
When you send a file by HTTP, web browsers send the total file size in the http header.
Do you think it's the same with the FTP protocole?
Martin
...
I'm creating a program using WPF that has an FTP like interface with 2 list views and 2 buttons between them. The problem I have is that I don't know how to set the 2 list views to fill up the available space without getting the buttons to do so as well.
...
Error message is:
The server returned an address in response to the PASV command that is different than the address to which the FTP connection was made.
I get this message when I try to call GetResponse() method below...
Please help.
Here is my C# code :
FileStream outputStream = new FileStream(feedXmlPath + "\" +
"testXml", F...
I have been playing around with Python's FTP library and am starting to think that it is too slow as compared to using a script file in DOS? I run sessions where I download thousands of data files (I think I have over 8 million right now). My observation is that the download process seems to take five to ten times as long in Python th...