transfer is the process of moving data from one physical or virtual location to another
Questions tagged [transfer]
1194 questions
-1
votes
1 answer
A matter in the method "transfer " in HashMap ( jdk 1.6 )?
the source code is like this:
void transfer(Entry[] newTable) {
Entry[] src = table;
int newCapacity = newTable.length;
for (int j = 0; j < src.length; j++) {
Entry e = src[j];
if (e != null) {
src[j] =…

CAFEBABY
- 1
- 3
-1
votes
1 answer
DNS not working after domain trasnfered to AWS Route53
I have two domains in AWS Route53, both setup with the same DNS entries.
First, that I have registered through Route53 works perfectly fine, while the second, which I have transferred from another provider (originally registered with wordpress)…

Leszek
- 1,290
- 2
- 11
- 21
-1
votes
2 answers
Transfer SSL to new server for the same domain IIS7
I will need to move one web site to a new server that hasn't been prepared yet.
I have a couple of questions:
Can you transfer SSL from one server to another? Domain name will remain the same.
Does it have to be the same server? i.e does it have to…

Budyn
- 563
- 7
- 21
-1
votes
1 answer
Transfer data from .msg files to excel
i got a lot of .msg files which contain information of an mail-form (name, telefon, mail etc.) of my website all saved in one folder. I'm trying to transfer all the information of the .msg-files into one excel file. As there are a lot of .msg files…

manu
- 13
- 4
-1
votes
2 answers
Java Sockets, Receiving Empty File
I am creating an application to Send a File from a Client and Receive it with a Server via Socket.
When I test the Application in my PC (Client-Server on same PC) everything runs Ok, but When I test the application on different PCs I've got the…

Dionisio Barboza
- 1
- 2
-1
votes
1 answer
SQL - Exporting a table with xml colomun into a text file
I need to export a table, that contains a XML column (this xml my contain any special characters, so I can not use them as column delimiters) into a text file.
I am using SQL Server 2014. The XML column may contain special characters like @, |, ,,…

DuroForce
- 87
- 1
- 11
-1
votes
1 answer
How to move a view onto another view with animation
I want to make a button which will move onto a specific view when pressed and will come back when pressed again. How can i achieve this? Is there any library or sample code?

Yunus Sımsıkı
- 55
- 9
-1
votes
2 answers
How can I pass a variable from one view to another easily?
So I want to be able to pass a variable from one view to another view easily. I've seen ways by doing it via a Segue but I was hoping for something simpler than that if possible.
Is there any way to just transfer the content of one variable and save…

cross
- 363
- 1
- 4
- 15
-1
votes
1 answer
How transfer file from pc to a virtual machine?
I have installed Vmware on my PC to create a virtual Linux OS, SUSE. Now, I want to transfer my file, from pc to virtual machine Suse. How can i do? I have to transfer over 10 Gb so it isn't suggested connecting to network. And, at the moment, I…

maurice
- 19
- 3
-1
votes
1 answer
how to migrate my huge website from hosting company to another one?
i want to know what is the fastest way to migrate my site (larger than 70GB) (approx 700MB database) from one server to another i think ftp in this case is a joke what hosting companies uses in this case since i saw many scenarios where big websites…
-1
votes
2 answers
transfer data from one view controller to another view controller
if I fill state,province and town in first view controller, how to get just town or town and state in another view controller, when I press OK button.
https://i.stack.imgur.com/jhwGq.png

tomas t
- 1
- 3
-1
votes
1 answer
How to transfer a file from source server to destination server and delete/move the file from source server
I need to transfer files from one server to another server. In source there will be continuous incoming files. So, when ever I transfer these file to my destination server , I don't need them in the same directory. How can I achieve this?
-1
votes
1 answer
Error 3011 - Transfer Table to Excel Workbook
I've been trying to get this coded to work for about 5 hours now without progress. My code aims to split a large table into several smaller tables and export these into excel (the actual tables will exceed 1000000 records). The code continues to…

Dane I
- 742
- 9
- 22
-1
votes
1 answer
Delay before the file transfer on Linux or Solaris
I would like to put delay before file transfer on Linux or Solaris.
As far as i know scp commands has no delay option.
scp file_name root@dest_ip:/dest_path
So, how can i put delay (it can change between 250ms and 500ms)?

user3560030
- 15
- 1
- 5
-1
votes
1 answer
How to send HTTP formatted file using C
At this moment I'm working on my programming project and I need a server-client protocol, created using C, on which:
The server is just listening to requests from its clients, it just reacts once it receives a request.
The client places the request…

ditmark12
- 111
- 1
- 11