Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
7k views

what is Data Transfer Object?

what is a Data Transfer Object? In MVC are the model classes DTO, and if not what are the differences and do we need both?
8
votes
4answers
5k views

The best technology to synchronize data between different database schemas?

I have an existing SQL Server 2005 database that runs our accounting/inventory application. We are looking at using a new on-line ordering framework - which has it's own database. If we use this new ...
7
votes
9answers
250 views

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 ...
6
votes
4answers
3k views

Take picture with iPhone API and transfer it to a server

I have written an cocoa application to take a picture on the iPhone. I need to transfer the images taken to somewhere besides the iPhone namely another server. Does anyone know how I can accomplish ...
6
votes
7answers
6k views

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 ...
5
votes
2answers
408 views

How to secure traffic between iOS-app and server?

I am building an app which gets JSON-encoded data from a web server. Right now, anyone can access the server-script that gets the data, and potentially access sensitive data. So, what is the best way ...
5
votes
4answers
965 views

What's the best way to transfer data from python to another application in windows?

I'm developing an application with a team in .Net (C++) and provide a COM interface to interact with python and other languages. What we've found is that pushing data through COM turns out to be ...
4
votes
2answers
294 views

Easiest Way to Transfer Data Over the Internet, Python

I have two computers, both are connected to the internet. I'd like transfer some basic data between them (strings, ints, floats). I'm new to networking so I'm looking for the most simple way to do ...
4
votes
1answer
256 views

What's the best practice for transferring huge binary files with ASP.NET?

Consider an ASP.NET page with this code: while (read) { Response.OutputStream.Write(buffer, 0, buffer.Length); Response.Flush(); } The application should be highly performance-tuned and ...
4
votes
2answers
487 views

What is the best way to transfer an object between two iOS devices running the same app?

I'm trying to give my iOS app the ability to transfer an object to another iOS device running the same app. The object is on the order a few thousand KB of memory. Does anyone have a suggestion as ...
4
votes
4answers
65 views

Transfer data from partner continuously

I’ve been tasked with a implementing a system for continuously receiving large amounts of data from a partner. The data schema on the partners’ side is different from ours, so some transformation has ...
4
votes
4answers
303 views

Tips on building a byte protocol

I'm communicating data between devices, and I have to program the protocol as an array of bytes. Any tips when building protocols at a low-level? .. Eg: Use a 2 byte header, to send the length of ...
4
votes
5answers
1k views

How do I speed up a SSIS Transfer Server Objects task that runs really slow?

Within SSIS 2005 I used the Import/Export wizard to create a package that drops/recreates and replaces the data on some tables between my production server and development machine. The control flow ...
4
votes
2answers
366 views

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 ...
4
votes
3answers
1k views

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 ...
4
votes
16answers
10k views

Remote Linux server to remote linux server dir copy. How? [closed]

What is the best way to copy a directory (with sub-dirs and files) from one remote Linux server to another remote Linux server? I have connected to both using SSH client (like Putty). I have root ...
3
votes
2answers
42 views

SSIS data import with resume

I need to push a large SQL table from my local instance to SQL Azure. The transfer is a simple, 'clean' upload - simply push the data into a new, empty table. The table is extremely large (~100 ...
3
votes
1answer
80 views

how to get file paths from files dragged from windows explorer into JFrame in Java

I need to get the dropped files' paths. I have implemented the drop(DropTargetDropEvent e) method in my JFrame which implements DropTargetListener which has the following code: public void ...
3
votes
2answers
260 views

Periodically run query to transfer data between two SQL Servers

I have two MS SQL Servers, let's call them Source and Destination. I need to bring some data from a database table in Source by making a simple query (a Select and a Sum) and bring the result to a ...
3
votes
3answers
444 views

Techniques to Reduce CPU to GPU Data Transfer Latency

I've been looking into ways to reduce the latency caused by transferring data back and forth from the CPU and GPU. When I first started using CUDA I did notice that data transfer between the CPU and ...
3
votes
2answers
418 views

Transfering data using ultrasound

Yamaha InfoSound and ShopKick application use technologies that allow to transfer data using ultrasound. That is playing an inaudible signal (>18kHz) that can be picked up by modern mobile phones ...
3
votes
1answer
75 views

creating a table in oracle using sql server table

I have a table in sql server 2008 r2, it contains 1M or more records now i want to create the table in oracle with same contents thats in sql.
3
votes
3answers
505 views

Live data transfer over USB

I'm trying to figure out how to transfer frames rendered on a computer to an android phone. Wifi and Bluetooth aren't fast enough for a smooth framerate, but the data transfer speed across the USB ...
3
votes
3answers
269 views

Using shader for calculations

Is it possible to use shader for calculating some values and then return them back for further use? For example I send mesh down to GPU, with some parameters about how it should be modified(change ...
3
votes
4answers
1k views

Sending POST data without form

Can i send for example a string or another piece of information to another .php file without it being exposed [thus not by GET but by POST conform to what i know] without using a form?
3
votes
1answer
202 views

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, ...
3
votes
6answers
967 views

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 ...
3
votes
4answers
497 views

Transferring objects between two independed applications (C#)

is it possible to transfer a object from one application to another (in C#)? I'm working with a CAD API. The initialization of that API takes a few seconds (10 - 15). Would be nice if I could ...
3
votes
1answer
246 views

Streaming, Asynchronous, Language Independent technology to transfer Object data

What are the best-practice / industry standard technologies for the folowing requirements Allow transfer of business objects from one client / server to another Language and platform independent ...
3
votes
3answers
5k views

MySQL: SELECT from another server

I'm afraid that I already know the answer to my question, but I'll ask it anyway: When there are two MySQL DB servers, can I access data that is stored on the other server? In other words: Can I ...
3
votes
2answers
5k views

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 ...
3
votes
5answers
412 views

File Transfer Protocol options?

I am looking for a good way to transfer non-trivial (10G > x >10MB) amounts of data from one machine to another, potentially over multiple sessions. I have looked briefly at *ftp (sftp, tftp, ftp) ...
2
votes
1answer
31 views

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? ...
2
votes
1answer
32 views

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 ...
2
votes
3answers
234 views

centralized / distributed sharing

I would like to make a system whereby users can upload and download files. The system will have a centralized topography but will rely heavily on peers to transfer relevant data through the central ...
2
votes
1answer
313 views

Can we move Google Analytics data to other account?

Started a webpage that now contains a lot of analytic data. Now that I have the client GA Tracking ID I would like to move the data I already have to that account. Is this possible? I get the ...
2
votes
2answers
67 views

Tool for transferring database changes?

Is there a tool (open source / commercial) that can transfer structural and data changes between two databases residing on different Microsoft SQL servers (or MySql servers)?
2
votes
4answers
1k views

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 ...
2
votes
2answers
451 views

C# problem with multi-clients server application

I have a server application and a client application. I'm using socket to communicate between server and client. Everything works fine if there's only one client connect: uploading, downloading all ...
2
votes
3answers
367 views

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 ...
2
votes
3answers
340 views

What is the easiest way to transfer Oracle database from one PC to another?

i want to transfer my oracle database to another PC. What is the easiest way to do it? Are there any GUI tools to do it?
2
votes
3answers
712 views

Lowest Latency small size data Internet transfer protocol? c#

I am doing a Internet Gaming project which involving keeping sending small size of data (between 1K to 50K) over the Internet between two normal home PCs. The key I care about is the latency. I ...
2
votes
4answers
141 views

When should I use transactions in my queries?

I'm reading on web, very detailed tutorials on how to use transactions with database types and database engines, but I haven't found some guide that teach me when and why I should use them. I know ...
2
votes
3answers
198 views

Advice on how to write robust data transfer processes?

I have a daily process that relies on flat files delivered to a "drop box" directory on file system, this kicks off a load of this comma-delimited (from external company's excel etc) data into a ...
2
votes
3answers
3k views

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 ...
2
votes
6answers
288 views

Best ways for transfering data over the Internet (for .NET developers)

I need to read some data from a server, transfer it over the internet (no VPN), and write it to the disk of another server. I could have thought many choices, but in the end I implemented: The ...
2
votes
2answers
124 views

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 ...
2
votes
2answers
1k views

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 ...
2
votes
5answers
2k views

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 ...
2
votes
3answers
2k views

JSON Syntax: Transmitting an array

A valid JSON Syntax is something of the kind: { "username" : "admin", "password" : "123" } But what if I want to transmit an array of 'users' (given the example), instead of a single 'user' ? Is ...

1 2 3 4