Tagged Questions

Is a generic term for the act of transmitting files over a computer network or the Internet.

learn more… | top users | synonyms

9
votes
14answers
2k views

Sender and receiver to transfer files over ssh on request?

I created a program that iterates over a bunch of files and invokes for some of them: scp <file> user@host:<remotefile> However, in my case, there may be thousands of small files that ...
8
votes
4answers
15k views

rsync error: failed to set times on “foo.txt”: Operation not permitted

I'm getting a confusing error from rsync and the initial things I'm finding from web searches (as well as all the usual chmod'ing) are not solving it: rsync: failed to set times on "/foo/bar": ...
6
votes
2answers
2k views

How to send file from Android device to other device through Bluetooth by code

I want to develop application that sends image/txt or any file from one android device to another none android device using Bluetooth. Please anyone can give help or source code for that?
6
votes
8answers
312 views

When is it good to use FTP?

In my experience I see a lot of architecture diagrams which make extensive use of FTP as a medium for linking architectural components. As someone who doesn't make architectural decisions but tends ...
6
votes
1answer
2k views

File transfer through sockets, final size with less bytes

I'm trying to receive some file through sockets in C. But the server sends me 64-byte packets for a 1000000 byte file for example and I get approximately 999902 bytes on the destination file. while ...
4
votes
1answer
53 views

How to implement an HTTP transfer of huge binary files from the file generator to the server (Java)?

Simply put our system consists of a Server and an Agent. The Agent generates a huge binary file, which may be required to be transfered to the Server. Given: The system must cope with files up to ...
4
votes
1answer
5k views

how to achieve transfer file between client and server using java socket

I have implement the simple TCP server and TCP client classes which can send the message from client to server and the message will be converted to upper case on the server side, but how can I achieve ...
4
votes
4answers
372 views

Atomic file copy under .NET

I am building a server app that copies files using System.IO.File.Copy(...) function. My files can be rather large, therefore, it has a fair chance that if the machine crashes, it happens during ...
4
votes
5answers
675 views

Java Sockets - Files transfered simulatanously with other data over one connection

I have a multi-threaded server that handles client requests, and makes new threads for each one that is connected. This is working great and I am able to send "text" messages back and forth to the ...
4
votes
7answers
2k views

Which Protocol is best for File Transfer

What is the best protocol I can use to transfer a Big file, Which should be fast and reliable. it might have low bandwidth systems i need a file transmition across the india.the file size may be 100 ...
4
votes
9answers
10k views

Good way to send a large file over a network in C#?

I am trying to build an application that can request files from a service running on another machine in the network. These files can be fairly large (500mb + at times). I was looking into sending it ...
4
votes
6answers
8k views

What is the maximum file size I can transfer using HTTP? And using FTP?

The title says it all. Added: I am conducting a study for a new system we're going to develop in my work. It consists in authenticating users, displaying what files they want to download and ...
4
votes
1answer
2k views

Background Intelligent Transfer Service In C#

Anyone successfully using this in c# or is there a better alternative to this? Also any good working project that I can look at and get a good feel? most projects i have come across is in C++ and was ...
3
votes
4answers
537 views

File transfer between android and iPhone via bluetooth?

I was thinking of developing an iPhone and android application so that they can share data between each other via bluetooth. Is it possible? If yes how? Thanks for your help
3
votes
1answer
115 views

Background File Transfer problems

I have this problem when using the Background File Transfer in WP7. It works perfectly when my application is running, but as soon as I click the Windows button, it stops(and resumes when I activate ...
3
votes
5answers
260 views

Making file transfer more efficient Java

I have two wireless computers connected to an N wireless router. Each of these PCs are connected at between 108-150Mbps. Theoretically, I should be able to transfer at 13.5MB/s to 18.75MB/s, under ...
3
votes
3answers
2k views

Access a Remote Directory from C#

I am trying to access a remote network share from a C# program in asp.net. What I need is something like function download(dirname) { directory = (This is the part I don't know how to do) ...
3
votes
7answers
2k views

TCP Socket file transfer

I'm trying to write a secure transfer file program using Python and AES and i've got a problem i don't totally understand. I send my file by parsing it with 1024 bytes chunks and sending them over but ...
3
votes
1answer
920 views

Ajax for binary data with jQuery?

I have a response which may return text/html or application/octet-stream. If I receive html, I'd like to replace part of the page with the returned response data, and if I receive binary data (a file ...
3
votes
3answers
274 views

How to copy Eclipse app with it's all projects and space from one Mac into another?

I have a new Mac computer at the office. And I need to copy Eclipse from my home Mac. I need to keep all the setting and plugins working fine, as on my home computer. Moreover, I need to have all the ...
3
votes
1answer
629 views

What's a good way to copy files from a PC to a Windows Mobile device?

I have a C# application running on a server, and it needs to copy files out to multiple Windows Mobile 5.0 devices. These devices are connected to the network directly via Ethernet-enabled cradles ...
3
votes
4answers
1k views

Java: BufferedReader reads more than a line?

I'm making a program in Java with Sockets. I can send commands to the client and from the client to the server. To read the commands I use a BufferedReader. To write them, a PrintWriter But now I want ...
3
votes
2answers
1k views

Tips / Examples on sending an Image file (jpeg, png) over socket programming?

I've heard that we can somehow send an image file with binary over a socket... But I have no idea on how to convert an image file into binary or how to even think of sending it over a socket... Was ...
3
votes
4answers
8k views

Simple file transfer over wifi between computer and mobile phone using python

I'd like to be able to transfer files between my mobile phone and computer. The phone is a smartphone that can run python 2.5.4 and the computer is running windows xp (with python 2.5.4 and 3.1.1). ...
3
votes
6answers
667 views

What is going to overtake FTP and why aren't we using it yet?

Is it just me, or does FTP seem a little archaic? It seems slow and inefficient, and its over 30 years old, not that all old things are bad :) What protocols exist out there that might become ...
3
votes
1answer
127 views

Is there a way to get the progress of a file transfer using move function in a Perl script?

I am an ETL developer and I deal with a lot of data that needs to be processed from one form to the other before it can be loaded into tables. Therefore, most of the scripts that I work with, at some ...
3
votes
5answers
3k views

IBM MQ for file transfer

We are facing a choice to use IBM MQ over SFTP for file transfer. I've heard advantages of such approach, but I've never see anyone actually using it for a large files. So main question: how well ...
2
votes
0answers
31 views

Sending multiple files through Bluetooth

I saw your answer about sending file through Bluetooth. (answered Jun 13 '11 at 5:01) Intent i = new Intent(Intent.ACTION_SEND); i.setType("image/jpeg"); i.putExtra(Intent.EXTRA_STREAM, ...
2
votes
2answers
211 views

Phonegap : FileTransfer.upload() fails on Android

I'm currently trying to upload a picture to a server with the FileTransfer.upload() method of PhoneGap. It works fine on the iPhone Simulator over Wifi, but fails on an Android phone over 3G or Wifi. ...
2
votes
0answers
391 views

ios5 iPad: best way to transfer files from PC's over wifi to iPad (network file browser / transfer)

I apologize if this has been answered. We've done a lot of searching and come up with many pieces of the puzzle but no direct answer from someone who has done it. We have an iPad app where we want ...
2
votes
2answers
118 views

Download big files via FTP with python

Im trying to download daily a backup file from my server to my local storage server, but i got some problems. I wrote this code (removed the useless parts, as the email function): import os from ...
2
votes
3answers
204 views

How to send text file from server to client using C programming

I am trying to send a text file from a server to a client, but am not sure on how to proceed with coding this. I have been reading some tutorials and managed to receive data from a client, then send ...
2
votes
1answer
100 views

how to make Communication via USB (phone to PC)?

I have a request where i want to communicate my phone with the windows PC via USB. i have searched at many places but everybody finds problem when it comes to java. can anybody guide me on this i am ...
2
votes
2answers
50 views

Files sent with ssh2_scp_send() are incomplete on remote server

I transfer files with PHP and SSH2 to an remote server. I use this: $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); ...
2
votes
5answers
306 views

UDP File Transfer - Yes, UDP

I have a requirement to create a UDP file transfer system. I know TCP is guaranteed and much more reliable, but I need to transfer huge files between locations and I think the speed advantage in this ...
2
votes
1answer
145 views

Reliable udp in c#

There are several articles on the internet about how to make udp reliable. I have not been able to find one on c#. So maybe I can implement my algorithm. from researching on the internet I believe ...
2
votes
2answers
281 views

How to create an http server on android that a desktop can access (vice-versa) using NanoHTTPD

Using an available WiFi IP (i.e. 192.xxx.x.x, using post 8080), I'd like to create a http server in android that can connect and can be accessed by a desktop so that I can transfer files to the ...
2
votes
1answer
92 views

Links and book about MQFTE?

Hi I am working with MQFTE. I need to know more in detail about how mqfte works and what are the internal process that takes place during a operation. The IBM links about mqfte/red books is good , ...
2
votes
2answers
112 views

Easiest point-multipoint data distribution library/framework in Java

I have a table in a central database that gets constantly appended to. I want to batch these appends every couple of minutes and have them sent to a bunch of "slave" servers. These servers will, in ...
2
votes
1answer
108 views

File transfer with odd requirements : fault tolerant but non-duplicating

I need to come up with a solution for complicated file transfer. I can do this, but I want to know if anybody knows of an open source solution that already does 90% of what I want to do. The ...
2
votes
2answers
1k views

How can I transfer a file via XMPP using Python?

I'm using xmpppy library for my jabber remote administration bot, but I can't find how to send/receive a file and save it inside the directory specified. The documentation is poor and there isn't any ...
2
votes
1answer
844 views

C# copy image form PowerPoint to Word

I need a application to copy text and images form PowerPoint to Word. I use this libraries: Microsoft.Office.Interop.PowerPoint and Microsoft.Office.Interop.Word. The text s easy to transfer, but ...
2
votes
4answers
300 views

Cannot achieve full speed on Symmetrical Internet Connection

We are using a business Ethernet connection (3Mbit upload, 3Mbit download) and trying to understand issues with our tested bandwidth speeds. When uploading a large file we sustain 340 KB/s; ...
2
votes
1answer
1k views

Transfer file over socket

I found this code witch I tried and it works great but(!). I want to store the file in a folder that I will choose and also get it from a folder that I again will chose. Since the Sender get an ...
2
votes
1answer
339 views

Calculating Throughput for a Webservice download

I have a client server application which exchanges XML documents for data requested by the client. Essentially the user enters some search constraints (attributes to match) and the client communicates ...
2
votes
3answers
180 views

Obtaining Files From A Local Web Server or Network Share - Which Is Better

Here's the scenerio. I have to access a web service on the local LAN to obtain a list of files which I then must retrieve from the machine running the web service. The question has arisen whether to ...
2
votes
2answers
614 views

PHP - determine how many bytes sent over http

Is it possible in PHP to get a count of the number of bytes transmitted to the client? For example, if I'm outputting a 10 MB file, is there a way to find out if all 10 MB were sent to the client, or ...
2
votes
3answers
3k views

How can a C# app easily communicate and transfer files on a network?

How can a C# app easily communicate with an instance of itself present on another computer, which is on the same network, and transfer files and data? Assuming the computers on the network have fixed ...
2
votes
1answer
2k views

Some questions about transfering file using WCF

I have a WCF service that is hosted on a Windows Service. Now I want to add file transfer functionality to this service but I have the following questions; considering that transferring files are both ...
2
votes
3answers
239 views

Good, secure encryption

Hi im thinking about developing a sort of File Transfer program and was wondering if i want as good encryption that i can get what should i use? ill be developing this with c# so i got access to the ...

1 2 3 4 5 6