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

915 questions
3
votes
3 answers

Connect to a WCF service from Android - getting 405 - Method not allowed

I've created a WCF service which I intend to use when sending data from an Android app to a MSSQL database. The service is already hosted and contains 2 methods.. Data() and GetData(). The Data method is used to POST JSON to and GetData just returns…
Linora
  • 10,418
  • 9
  • 38
  • 49
3
votes
6 answers

Best Way to Transfer Large Files in Windows

I often have to transfer large files >50GBs sometimes >100GBs between drives both internal and external during backups of our networks email servers. What is the best method of transferring these files? Command Line such as XCOPY? Possibly…
Xap
  • 199
  • 4
  • 4
  • 10
3
votes
2 answers

UART transfer speed

I want to check if my understanding is correct, however I cannot find any precise explanation or examples. Let's say I have UART communication set to 57600 bits/second and I am transferring 8 bit chars. Let's say I choose to have no parity and since…
user1949350
  • 125
  • 3
  • 11
3
votes
0 answers

Is it possible to transfer data through NFC from Iphone to Android?

I'm thinking on developing a web-app using PhoneGap to transfer data from one platform to the other. As I understand NFC core for iphone lets you read tags but is there any way for it to transfer and receive data from an Android device?
Farynx
  • 93
  • 1
  • 7
3
votes
1 answer

BigQuery Data Transfer Services - php client library - and check, backfill the bigquery data transfer automatically?

https://cloud.google.com/bigquery/docs/reference/datatransfer/rest/ I am looking for php client library of "bigquery data transfer services", specially for how to launch the bigquery job to run or schedule a backfill of a defined bigquery data…
searain
  • 3,143
  • 6
  • 28
  • 60
3
votes
1 answer

How to select multiple images from UICollectionView and transfer them to another View Controller?

The code is written in Swift. I'm building a social app where the user can make posts. I'm using Firebase as a backend (database, storage). So, I have a UICollectionView that gets all the photos from the photo library of the device and populate the…
Dani
  • 3,427
  • 3
  • 28
  • 54
3
votes
1 answer

How To Structure A Web/Client Support Chat System

I am looking to build an online customer support system for one of our company sites and had a few queries with regards to the structuring. The scenario is this. We would like users of our site to be able to click a "Live Chat Support" button, at…
Tom Glenn
  • 1,982
  • 4
  • 16
  • 26
3
votes
3 answers

The Best Way For Transfer Data From One DataBase (sql server 2008) To Another db(sql server 2008) With Different Schema

what is the best way For Transfer Data From One DataBase (sql server 2008) To Another db(sql server 2008) With Different Schema? is there a program for doing that ? thanks 4 your future asnwer best regards
LostLord
  • 2,279
  • 10
  • 32
  • 32
3
votes
2 answers

Backspying on spying Website

If you would need to see what Information a Site has on you, based on the Cookie ID that they've stored on your Computer, how exactly would one do that?
3
votes
1 answer

Tuning the cost of data transfer with NGINX

I have a streaming setup using ngnix and i would like to know how to fine tune the data transfer, say i have the following in this diagram. You can see one person is connected via a media player but nobody is watching their stream but it remains…
user1503606
  • 3,872
  • 13
  • 44
  • 78
3
votes
1 answer

How to connect iOS and Android devices and send small data between them?

I am building an iOS app that sends small pieces of data, some personal information like: Name, Phone, Facebook profile between nearby device. I have been researching for about 2 weeks if there's a good way to send data between iOS - iOS / iOS -…
xdevx32
  • 160
  • 9
3
votes
1 answer

how to use MessageParameterAttribute in wcf

I wanted to know what is the use of MessageParameterAttribute in wcf. In my function: [OperationContract] public float GetAirfare( [MessageParameter(Name=”fromCity”)] string originCity, [MessageParameter(Name=”toCity”)] string destinationCity); I…
Archie
  • 2,564
  • 8
  • 39
  • 50
3
votes
1 answer

Bluetooth raw byte data transfer for cordova

How do I send and receive series of data Bytes between a bluetooth device and Android/iOS in Cordova? The details of my project: I have a bluetooth sensor device that I am developing. The device sends data as a series of bytes. It also uses a…
brendan
  • 877
  • 8
  • 9
3
votes
0 answers

Audio file transfer over websocket

I have a wav file created in android mobile and i want to send this file to server over web socket. am using autobahn lib for web socket connection. Used below code to send the file stream. byte [] buffer = new byte [1024]; FileInputStream fis =…
selva
  • 446
  • 1
  • 7
  • 21
3
votes
2 answers

How do I transfer data from one database to another using a DataSet?

As usual, some background information first: Database A (Access database) - Holds a table that has information I need from only two columns. The information from these two columns is needed for an application that will be used by people that cannot…
Jason Down
  • 21,731
  • 12
  • 83
  • 117