data-transfer

ASP.NET web services and Blackberry -- need assistance with returning complex data

I need to transfer a significant amount of structured data that goes something like this in XML - <person> <fname></fname> <lname></lname> <DOB></DOB> . . </person> Each person record has 5 fields, and each time the app is opened, about 30-40 (possibly more) person records will be loaded. Will XML be a good imple...

Data transfer via the system keyboard buffer? (VFP9).

Using a Visual FoxPro 9 executable file, (EXE), I need to be able to place data into the system keyboard buffer which is then to be picked up by another program, (non-FoxPro). I've already tried using the KEYBOARD command, however, that only seems to work with fields and controls within the FoxPro application! Does anyone have any ideas ...

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 sentence you sent? If not, how can I check when I should stop the stream.read? If yes...

How can 4,000 products be easily transfered from one ecommerce solution to another?

A potential client has a slow ecommerce site using Joomla/Virtuecart which takes 6-10 seconds for any page to load. I've seen faster solutions and would like to transfer the 4,000+ products with little hassle to a speedier, more full-featured open-source solution. Is there a good way to transfer thousands of products between ecommerce ...

Lowest Latency small size data Internet transfer protocol? c#

Hello All. 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 understand TCP, UDP are the popular ones. TCP is reliable but slower than UDP while UDP is not safe and I have to implement my own ...

Transfer CSV files from iPhone to MacBook

My application creates CSV files, stored in the documents directory, with the purpose of being later imported into Microsoft Excel. What is the best way to transfer these files in an end-user-friendly way, via the iPhone USB cable, to a MacBook? If there is some way to do this exclusively with code on the phone itself (doubtful) that w...

Is this how I design REST, and is REST what I want to be using?

In short, I am writing an Android application that I want to have pull data from a remote database. I was looking into .NET web services, but this http://stackoverflow.com/questions/297586/how-to-call-web-service-with-android question pointed me away from that direction. Is REST as simple as writing some short PHP to handle something li...

Read value from one aspx page to another

hi, i have two pages: 1) web control(ascx page) and 2) web page(aspx page without master page). Now i calculate some values on page2 through google api through Javascript on render, and i need to transfer these values to page 1 in a hidden field through code. please help Khushi ...

How can we send a large size of data (>2038 char) from client to Server using ajax?

How can we send a large size of data (>2038 char) from client to Server using ajax? I like to send an array of key-pair values of size more than 10KB. I am currently using cookies, is there any other prefered way by which we can send it through an Ajax Call. ...

iPhone: Best Method for Passing Data to and from a Server

I am developing an iPhone application that downloads data from a website. The website database is implemented in SQL and the site itself uses the classic ASP interface. I am unsure as to which method would be best for transferring data to and from the server. Both JSON and SOAP require XML processing and I'm not sure how that affects p...

Transferring objects between two independed applications (C#)

Hi, 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 initialize the object only once in App1 and call it up from App2 whenever I need it. Any ideas? Thanks! ...

How can I pass an HTML file content from PHP to CGI (Perl) Script

The content of the an HTML file generated by a PHP is stored in a string variable called $output I am trying to send the contents in $output to a CGI script. I have tried the following CURL in PHP... $output = "long string, with strange non HTML characters..." $c = curl_init(); curl_setopt($c, CURLOPT_URL, 'http://www.example.com/cg...

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 data on network) in terms of data transfer. Any suggestions. ...

Transfer files using java

I need to transfer lots of small files to a remote computer within my java program. I was wondering if somebody could suggest the best way to do so... I need to transfer lots of small files and it has to be really fast. Should I use some existing protocol implementation? maybe ftp? One important thing is that most files would be the sam...

how to use MessageParameterAttribute in wcf

hello, 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 dont use fromCity or toCity anywhere in the implementation or even while using a...

[C# .NET] Simple way to obtain data from other programs?

Is there a simple way to fetch data from other programs running in the background? Like for instance i want my program to read the temperature values from Speed Fan and so on... So basicly reading data from controls that are present in a diffrent application. ...

Using GameKit to transfer CoreData data between iPhones, via NSDictionary

I have an application where I would like to exchange information, managed via Core Data, between two iPhones. First turning the Core Data object to an NSDictionary (something very simple that gets turned into NSData to be transferred). My CoreData has 3 string attributes, 2 image attributes that are transformables. I have looked throu...

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? ...

My "Send files to Host" and "Receive files from host" is not working

Hi, Whenever I am trying to click either the "Send files to host" or "Receive files from host" on client Access Emulator, it is not working. I dont know what is the problem. I have installed the full version on Client Access on my PC Can anyone help me in this? I would appreciate your help. Regards Arpit Srivastava ...

Simple robust error correction for transmission of ascii over serial (RS485)

I have a very low speed data connection over serial (RS485): 9600 baud actual data transmission rate is about 25% of that. The serial line is going through an area of extremely high EMR. Peak fluctuations can reach 3000 KV. I am not in the position (yet) to force a change in the physical medium, but could easily offer to put in a simpl...