06-23-2006 12:39 PM
06-24-2006 03:05 PM
TCP in itself won't help you, because it's just a protocol to define the data transfer itself, not what kind of data is being transferred (FTP implementations normally use TCP to do the data transfer).
What you can do is write your own code to do the data transfer (using the TCP functions, yes). You will need to read the files (in chunks, using the file functions) on one side and write the data on the other side (again using the file functions). Be aware that disk access may ruin your RTism, so be sure to do it when you're not running your TC code.
You may also want to incorporate some data validation into this (although TCP should handle that automatically for you).
The good news is that using TCP in LV is very easy. Search the example finder for "TCP" to see how.