Questions tagged [data-transfer]

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Examples of such channels are copper wires, optical fibres, wireless communication channels, storage media and computer buses. The data are represented as an electromagnetic signal, such as an electrical voltage, radiowave, microwave, or infrared signal.

While analog transmission is the transfer of a continuously varying analog signal, digital communications is the transfer of discrete messages. The messages are either represented by a sequence of pulses by means of a line code (baseband transmission), or by a limited set of continuously varying wave forms (passband transmission), using a digital modulation method. The passband modulation and corresponding demodulation (also known as detection) is carried out by modem equipment. According to the most common definition of digital signal, both baseband and passband signals representing bit-streams are considered as digital transmission, while an alternative definition only considers the baseband signal as digital, and passband transmission of digital data as a form of digital-to-analog conversion.

Data transmitted may be digital messages originating from a data source, for example a computer or a keyboard. It may also be an analog signal such as a phone call or a video signal, digitized into a bit-stream for example using pulse-code modulation (PCM) or more advanced source coding (analog-to-digital conversion and data compression) schemes. This source coding and decoding is carried out by codec equipment.

Wikipedia: http://en.wikipedia.org/wiki/Data_transmission

805 questions
8
votes
2 answers

dataTransfer is null when creating drag event programmatically

I am trying to create a dragEvent and fire it programmatically using this code on Chrome: var ev = document.createEvent("MouseEvents"); ev.initEvent("dragstart"); and then fire it this way: element.dispatchEvent(ev); The element has draggable…
Assaf
  • 710
  • 2
  • 9
  • 22
8
votes
4 answers

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 local IP addresses, and they each know each…
Robin Rodricks
  • 99,791
  • 133
  • 372
  • 575
8
votes
5 answers

Move data/images between two iOS apps using custom URL handler

After googling around and searching SO for a while, I stil couldn't find an answer - I've wondered, How could I transfer data between two of my apps using custom URL handlers? Specifically images or an NSData object for that matter. I know about…
Shai Mishali
  • 7,846
  • 4
  • 48
  • 75
7
votes
6 answers

What's the best way to send a file over a network using C#?

Can anyone point me to a tutorial on the best way to open a connection from client to server, read in a binary file and send its contents reliably across the network connection? Even better, is there an open source library that already does this…
screenglow
  • 1,806
  • 4
  • 19
  • 22
7
votes
1 answer

How to download a big file directly to the disk, without storing it in RAM of a server and browser?

I want to implement a big file downloading (approx. 10-1024 Mb) from the same server (without external cloud file storage, aka on-premises) where my app runs using Node.js and Express.js. I figured out how to do that by converting the entire file…
Mike B.
  • 10,955
  • 19
  • 76
  • 118
7
votes
3 answers

Is endian conversion required for wchar_t data?

In C/C++, if a multi-byte wide character (wchar_t) value is transmitted from a big-endian system to a little-endian system (or vice-versa), will it come out the same value on the other side? Or will the bytes need to be swapped?
An̲̳̳drew
  • 11,737
  • 12
  • 45
  • 44
7
votes
9 answers

Should I manually embed the data size info in a TCP transfer?

Imagine that you and me are sending a quite long sentence (say, 1024000 bytes) through TCP. If you write a 1024000 bytes sentence to me, you actually use NetworkStream to write those bytes in. When I receive, should I know in advance the size of the…
Jack
  • 3,833
  • 8
  • 37
  • 65
6
votes
2 answers

Third party datasource implementation for BigQuery data transfer

I want to create a custom datasource for Marketo for google bigquery data transfer. I don't see any specific document to integrate a third party datasource. Kindly provide the steps to integrate a third party datasource.
6
votes
0 answers

Data Transfer size from server to browser (Data downloaded/bandwidth usage)

I am working on a video streaming application in javascript, i want to tell user how much mbs of data user have consumed/used or how much data has been transferred from server to your browser. I can see the data transfer size in network tab of…
cobra87
  • 71
  • 2
6
votes
6 answers

what is more secure -- Data transfer using socket programming OR SSH/SCP/FTP

I am still learning socket programming (using Perl) but I have both options ( socket programming and SSH/SCP/FTP) available to transfer the data from remote machines to my local servers. But I have to select one which is more secure ( encrypted…
Space
  • 6,637
  • 6
  • 43
  • 68
6
votes
3 answers

Send Data From Arduino to Android App via Bluetooth

Hello i can send data from android to arduino but i cant send data from arduino to android via Bluetooth on procesing i dont get any Error but I cant see anything on display of android app.. i used for blueToothSerial.print(XXX); for arduino side ..…
Burak
  • 97
  • 1
  • 2
  • 4
6
votes
1 answer

Sending Data To Server While App is Running in Background in iOS 7

I wish to send a little data (location Co-ordinates) to my server from the application which is running in background in iOS 7. I am using NSURLSessions for this purpose. I am confused regarding the type of session I should use for this purpose…
aMother
  • 843
  • 8
  • 19
6
votes
2 answers

What is the easiest way to export a SQLServer 2000 database to XML?

I have an old SQL Server 2000 database that I want to get into XML so I can from there import parts of it into an SQLite database for a PHP website. I've accessed the SQL Server 2000 database via SQL Server Management Studio 2008 Express, I can open…
Edward Tanguay
  • 176,854
  • 291
  • 683
  • 1,015
6
votes
5 answers

How would one connect two clients behind firewalls?

When using an instant messaging application like Live Messenger or the desktop client for Google Talk, computers can transfer files between one another. I can't say for sure, but I'm fairly certain that the data being transferred between computers…
user149100
  • 1,041
  • 3
  • 12
  • 16
5
votes
1 answer

htons & ntohl in datatransfer

I have always wondered, why don't I have to use htons/ntohl when using write/read? (At least all examples I have seen so far don't.) How do I know that the bytes received have the correct endianness?
gaddomn
  • 125
  • 2
  • 4
1 2
3
53 54