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
0
votes
1 answer

NetLogo - transferring data between neighboring turtles

Is there any way to transfer data between turtles? I would like to send and receive data between a turtle and its neighboring turtles, but I don't know how...
0
votes
1 answer

Android: Monitor an app's data traffic usage

Ok, I know the question is not directly to the point (the kind of questions I prefer asking), but here goes: Can anyone point med in a good direction for learning how I can monitor the data traffic generated by an app? I need to do it in such detail…
user1341676
0
votes
4 answers

Best approach for data transfer from remote database to local database

I am in a scenario where I want to work with many databases. Some are in my project and some are external. My application would transfer data from the external database(one which reside in a remote machine. I know the ip and user credentials) to my…
Shyju
  • 214,206
  • 104
  • 411
  • 497
0
votes
1 answer

Transferring Data in View Controllers

I would like to transfer some data, for example an integer, from ViewController1 to ViewController2. How would I do that? In other words, how would I be able to access the information from ViewController1 in ViewController2? Please specify all the…
0
votes
1 answer

Image ransfer using hessian protocol from client's folder to tomcat server

My goal is to upload a image(.jpg or .png) from client's folder to tomcat6 server through hessian protocol. And do image processing using opencv on server, then return the image back to client. Question1. Is the following transfering steps…
子昂 陳
  • 111
  • 1
  • 2
  • 7
0
votes
1 answer

Send POST data without form to another server

My server does not support json_encode or json_decode, I am wanting to send a 2D array to a different server using serialize(), then process it and print it a json encoded array. I'm afraid that the limitations of GET would not allow for longer…
Ray
  • 2,713
  • 3
  • 29
  • 61
0
votes
2 answers

Transferring data between two sites in php

I want to transfer some data in a variable between two sites using PHP. In my Javascript, When a button clicks, it goes to a php file that saves an image and then i want to redirect to other site and sending it the image name. I have image name in a…
MJQ
  • 1,778
  • 6
  • 34
  • 60
0
votes
1 answer

Transferring perl modules (RHEL)

I have need to install a couple perl modules onto my test environment (JSON and JSON::XS). However, the test environment, which mirrors production, can't have gcc installed. I do have a dev environment with gcc installed. I've used CPAN to download…
AaplMike
  • 343
  • 1
  • 4
  • 15
0
votes
2 answers

data encryption between 2 servers on file request

I've a quick question: I have 2 websites, 1 has some links to file downloads. Those files are hosted on another server. I need to encrypt the request data between the 2 servers..can I do it just using a SSL certificate? Any other/better idea? Those…
fackz
  • 531
  • 2
  • 6
  • 12
0
votes
1 answer

Transfer data between a mono project and a c++ console app?

I have a c# (win form) visual studio project which i am now compiling using mono on Linux and i have a c++ application . I want to transfer some data between these two applications , what are my options ?
rajat
  • 3,415
  • 15
  • 56
  • 90
0
votes
2 answers

Data transfer between Qt and a C++ code

I have a C++ code and now I am thinking to prepare a UI with Qt since its language is also C++. Before attempting to do that I wonder how can I transfer data between my code and UI code. I mean, I do not want to write variables to a textfile and let…
Shibli
  • 5,879
  • 13
  • 62
  • 126
0
votes
1 answer

Much time taken in data read from socket

I'm using sockets for data transfer from one android phone and PC, I am using DataInputStream. But it takes a long time in data transfer, about 10 minutes to transfer a 4 MB file. Could anyone suggest any better way to do that? I did some changes…
Azmat
  • 393
  • 3
  • 15
0
votes
1 answer

python multi threading file transfer with socket

I'm trying to read a file in source computer (client) from multiple points by threading and send the chunks to destination(server). I've finished the client program but in server side I have 3 problems: 1-I can't join the chunks to a file…
0
votes
2 answers

Get the network transforming data bytes and save them

I have an application and I want to save or log the network transforming data bytes. But I have no Idea how to do that. Does anybody know how can I do that?? (It's not for steal data! I just want my network transforming data bytes)
ahmadali shafiee
  • 4,350
  • 12
  • 56
  • 91
0
votes
0 answers

Passing Data from Child Javascript Page to Parent Javascript Page

I am working with Javascript. I was using an alert to get a password from a user. However, as you may know, the alert does not mask the password from other "shoulder surfing". In an attempt to fix this I created a page that only allows a user to…
tpar44
  • 1,431
  • 4
  • 22
  • 35