transfer is the process of moving data from one physical or virtual location to another
Questions tagged [transfer]
1194 questions
15
votes
3 answers
Client-Server: File transfer from Android to PC connected via socket
I'm trying to send a picture I choose from the gallery on my phone, and send that picture from the phone to my PC, when I click on the button it should take the picture's path and put it in a file, and transfer it to my PC. I've checked the code on…

Arwa A
- 259
- 2
- 5
- 11
13
votes
3 answers
What happens when you start the same service twice in Android?
I am developing an android app that has a button and two EditTexts. When the button is pressed, a service starts and the data from the two EditTexts pass to it. If the user changes the data and presses again the button, what will happen?? Will the…

Manos Varesis
- 145
- 1
- 1
- 6
12
votes
2 answers
How to transfer complete videos between Youtube accounts?
I have following problem. I have changed my service name and now have a different youtube account. I would like to transfer all of my videos along with rating and comments from that old account to the new one, is this possible?
Regardz,
Mladjo

Mladen
- 25,578
- 11
- 39
- 48
12
votes
5 answers
how do I transfer my iPhone application to my real iPhone?
I am a registered iOS developer. How do I get my iPhone application transferred to my personal iPhone?

DeShawn Terrell
- 295
- 2
- 4
- 7
12
votes
2 answers
Resumable.js can't save file to server side directory
I'm using Resumable.js with my Node.js-express application. I can get to the point where I know the file transfer was successful because I can console.log(req.body) and see this below...
{ resumableChunkNumber: '77',
resumableChunkSize:…

Nodedeveloper101
- 421
- 1
- 9
- 24
11
votes
5 answers
Bluetooth data transfer between two Android devices
I have been following this Android guide for Bluetooth communication
To explain exactly what I want to do, when the two devices are paired, two different activities open up on each device (server and client) where on the server activity I have…

Simpsons
- 476
- 1
- 7
- 17
9
votes
7 answers
PHP ftp_put warning Warning: ftp_put() [function.ftp-put]: Type set to I. in
When i try to upload files using PHP's ftp_put function, earlier it was erroring:
Warning: ftp_put() [function.ftp-put]: No data connection
Now, i tried to put passive mode on:
ftp_pasv($conn_id, true);
then comes error:
Warning: ftp_put()…

Aditya P Bhatt
- 21,431
- 18
- 85
- 104
9
votes
2 answers
FTP file into docker container on remote server
How can I transfer transfer files into a Docker container running on a remote Ubuntu server using an FTP client? I can SSH into the server and use docker cp, which works fine. But I have a client who needs to be able to do so with something like…

rurp
- 1,376
- 2
- 14
- 22
8
votes
4 answers
Faster file transfer than FTP
FTP is a pure TCP-connect protocol, and thus AFAIK "as fast as it gets" when considering TCP file transfer options.
However, there are some other products that do not run over TCP - examples are the commercial products BI.DAN-GUN, fasp and…

stolsvik
- 5,253
- 7
- 43
- 52
8
votes
2 answers
How does Dropbox synchronization work?
I want to know how dropBox is able to synchronize the large data files without replacing or re-uploading the files again to the dropbox server
Example: an encrypted zip archive
Suppose I've a 1GB encrypted zip archive file Fully synchronized on my…

Michael Emad
- 81
- 1
- 2
8
votes
0 answers
UCMA Send File & File Transfer Sample
There are no samples using for UCMA to send file from applicationendpoint to userendpoint or vice versa.
I've tried below sample but it didn't work. See code and error:
if (e.State == MediaFlowState.Active)
{
byte[]…

Kadir Lüzumlar
- 169
- 9
8
votes
2 answers
How can I electronically transfer money to another account using Bank Transfer (BACS)
I'm working on a project where we collect payments from users using credit/debit/PayPal payments.
The service is taking payments from users on behalf of a 3rd party organisation.
Once we take the payment, minus fees, we want to transfer the amount…

Mooktakim Ahmed
- 1,021
- 1
- 10
- 17
8
votes
3 answers
Capistrano 3.0 file transfers?
Seems like Capistrano used to have an extensive file transfer package.
However, it seems to be gone in version 3.0 after the rewrite. Any idea if there is some alternative way to still transfer files to/from servers?

shaimo
- 376
- 3
- 17
8
votes
4 answers
Peer to Peer file transfer c#
Hey, I have been looking on google and I cannot seem to find anything about peer to peer transfer.
Basically, I want to be able to send a file from my computer to someone else's computer. Does anyone know of any guides that can help me with…

Crazyd22
- 783
- 5
- 10
- 24
8
votes
3 answers
Accepting image files via email from any address.
I am trying to build a service where anybody can send an image file from an email address/client and process it. Think about the service a bit like Flickr showing the image in a dashboard that comes via emails
From a usability standpoint this…

Quintin Par
- 15,862
- 27
- 93
- 146