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
2 answers

DataTransfer object not set in dragStart event

I am trying to implement drag-n-drop to change dates in an article scheduling system. I want the user to be able to drag an article entry from one date to another, and the schedules should then automatically be updated. Here is my code:
3
votes
1 answer

Reliable data transfer over an UnReliable Channel

I have a data channel which can transfer some data over it, the channel is a wireless system implemented by myself with a low reliability 90% and very low bandwidth due to physical limitation. In order to overcome this, I'm planning to wrap the…
Kirill Kulakov
  • 10,035
  • 9
  • 50
  • 67
3
votes
1 answer

Best transport mechanism for transferring large amounts of data between ASP.NET MVC websites

I have a scenario that requires me to export a large mailing list (> 1m customers) to an external email system. I have source code and control over both applications. I need a mechanism for transferring the data from one system to another that…
gbro3n
  • 6,729
  • 9
  • 59
  • 100
3
votes
0 answers

Phase Locked Loop: Help and clarification needed

I have been looking at implementing my own FSK modem. I have the modulation done and am satisfied that it thus far. I am now stuck on the demodulation of the signal. I have read that a phase locked loop is one way of demodulating an FSK signal.…
protectedmember
  • 349
  • 5
  • 20
3
votes
5 answers

Recursively PUT files to a remote server using FTP

I'm currently in a situation where I have very limited access to a server, but need to upload and download a significant amount of files contained within a single directory structure. I don't have SSH access, so I can't use SCP - and rsync isn't an…
codeinthehole
  • 8,876
  • 3
  • 25
  • 34
3
votes
1 answer

deciphering WebResponse string into list of arrays

There is a PHP script which is located on the website. I also have a C# winforms program which sends POST messages using WebRequest/WebResponse approach. This PHP script connects to mysql database, grabs some data and sends it back to WinForms app.…
Alex
  • 4,607
  • 9
  • 61
  • 99
3
votes
2 answers

Fat Domain Models => Inefficient?

Looking at DDD, we abstract the database into the various models which we operate on and look at it as a repository where our models live. Then we add the Data Layers and the Service/Business layers on top of it. My question is, in doing so, are…
MunkiPhD
  • 3,636
  • 1
  • 29
  • 51
3
votes
1 answer

On what factors does the download speed of assets from Amazon S3 depends?

How fast can we download files from Amazon S3, is there an upper limit (and they distribute it between all the requests from the same user), or does it only depend on my internet connection download speed? I couldn't find it in their SLA. What other…
amit_saxena
  • 7,450
  • 5
  • 49
  • 64
2
votes
4 answers

SQL code to copy data from 1 database table to another

I have messed up the data. I have been ammended ids and values to the point where i cannot remember what the originals were. (testing a few things). I have a table called query_string_interpretation and its part of the DB called, test1_db I have a…
SOLDIER-OF-FORTUNE
  • 1,634
  • 5
  • 39
  • 66
2
votes
1 answer

Microsoft Codename "Data Transfer" identity column error

I'm using Microsoft Codename "Data Transfer" to transfer data from an Excel (or cvs) file to a SQL Azure database. Everything runs through normally, but when it comes to uploading the data this error is thrown for each row: Exception while loading…
James
  • 1,158
  • 4
  • 13
  • 23
2
votes
3 answers

Start a long running job with a web service call

We have a data transfer between 2 systems that can take upto a few hours. The code for doing this transfer is written in C#. We would like to trigger the transfer with a WCF web service call. Ideally we would like the web service call to return at…
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
2
votes
1 answer

NAT simulation for P2P data transfer

I am currently implemented a P2P data transfer application based on Libjingle, I want to do following simulations to verify the implementation: Simulate different types of NATs (full cone, port restricted cone, address restricted cone, symmetric…
Qinjin
  • 401
  • 4
  • 12
2
votes
2 answers

How to Transfer Large File from MS Word Add-In (VBA) to Web Server?

Overview I have a Microsoft Word Add-In, written in VBA (Visual Basic for Applications), that compresses a document and all of it's related contents (embedded media) into a zip archive. After creating the zip archive it then turns the file into a…
Ian Robinson
  • 16,892
  • 8
  • 47
  • 61
2
votes
1 answer

My VBA code overwrites my last row. How can I write the code to put new information on the next empty row?

I followed a YouTube tutorial to copy data from one sheet into another sheet in the same workbook. Mind you, I have no experience in VBA. I noticed that when I add a new entry it overwrites the previous row. I want the code to find the last empty…
2
votes
1 answer

What is the simplest way to send data to a script after a certain action is completed?

I am building a script that will handle data that is sent to it. This data will be in the form of id=xyz and key=j9ofi902f89djs8if with id and key particular to each script that is sending the data to my script. I am trying to think of a fool proof…
chromedude
  • 4,246
  • 16
  • 65
  • 96