11-02-2005 10:54 PM
11-03-2005 01:14 PM
You can move data between systems that both run CVI using datasockets.
http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B45EACE3E3C556A4E034080020E74861
There is a help file in <your cvi directory>\DataSocket\help\
If datasockets do not have enough features to meet your needs, you would probably want to look at the winsock library in the windows SDK.
11-06-2005 09:19 PM
11-07-2005 07:43 AM - edited 11-07-2005 07:43 AM
The network connection between cities is your plain old IP connection. Anything with a routable IP address will work, which you would get from your ADSL connection. On top of the IP connection you need a way to transport the data, like ftp or any of the standard internet protocols. Datasockets are a communication protocol NI developed to handle data exchange in the test world. You could use any of the common internet protocols, but since you are using CVI, data sockets are also an option. If you do not need to exchange data in realtime, and just need to move data files between systems, FTP would probably work just as well.
This link may explain it better:
http://www.ni.com/datasocket/ds_what.htm
Message Edited by mvr on 11-07-2005 07:51 AM
11-12-2005 08:52 AM
11-14-2005 07:59 AM
11-15-2005 04:31 AM