Sending file through TCP/IP

Hi all,
I would like to know whether LabVIEW is able to send file through TCP/IP. Can anyone please enlighten me on this. Thank You
Rgds 

Hi taytay,
Of course it is possible !
Go to function palette >> Communication >> TCP ; I have never used them but here they are.
Go to Help >> Find examples.. and search for TCP, you'll find example code
You can also purchase the "internet toolkit" that provide ready to use FTP VIs to send or copy simple/multiple file(s).
Hope this helps.
When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

Similar Messages

  • I can't send files through bluetooth, but can receive them.

    I can't send files through the bluetooth on my imac 20" any longer...
    I can toggle through all the bluetooth-options though.

    i have exactly the same problem with my macbook, and no solution either...

  • Sending files through lan

    hi
    i want to send text,audio and video files through LAN by using jmf and tcp/ip protocol
    if any body know the answer pls send me the code as early as possible ..pls......it's urgent for me...
    thanks in advance

    Post your question in the iChat disucssions, or just email the files or put them on a server, etc...

  • Send file with TCP/IP

    I would like to transfer a complete file with TCP/IP form a client to a server. I have a working example of using the TCP protocol to transmit data (as a string). I attached this Client-VI to this posting. The server program does nothing more than send the received data back to the client. Is it possible to send complete files with TCP/IP instead of sending strings? If so, would you be so kind and change my VI into a new one and send it back to me?
    If somebody has another idea to solve this problem, feel free to contact me!
    I use LabVIEW 7.0Express and WindowsXP.
    Thnaks, Dennis
    Attachments:
    ipc@chip_1.vi ‏38 KB

    Hi,
    I have a set of Vis that do the job. It's a LV5 Vi and I haven't translated it yet to LV7. It's two SubVis and two Vis that show you how to run the SubVis. The client asks a file that is in the server and the server sends it back. I'm attaching the two libraries llb, the client library and the server library. Please contact me if you have questions.
    Marce
    Attachments:
    TestTCPServerGetFile.llb ‏205 KB

  • Sending files through FTP

    task is to take files or folders and ZIP it and send it through FTP.i was able to take the files and folders and zip it ,I was able to connect to FTP server but to send the file what code shoud i use.

    Multipost:
    http://forum.java.sun.com/thread.jspa?threadID=729985

  • Send files through Sockets

    how do i send an entire file through a socket...?
    thank you....

    [http://forums.sun.com/thread.jspa?forumID=11&threadID=390636] this may help you

  • I tried to send "File:  / / / " through messages...

    I tried to send "File: / / / " without quotes to a friend through the messages application which obviously crashed it. Now, however, File: / / /  is saved as a draft message and will crash the messages app upon opening it. Is there a way to delete draft messages outside of the app?
    <Edited by Host>

    In the Finder choose the "Go" menu and press Option followed by selecting the Library. Then go to the Messages folder and remove the files that begin with "chat.db" in their names. Then re-open the Messages program.

  • Trouble sending files through ichat after 10.4.7 update

    after the 10.4.7 update (at least it was right around the same time as the update), my ichat stopped being able to send files to my friend. the picture or video would appear to be sending, but the next time i said something, i would be informed that it could not be sent. my friend was still able to send me files, successfuly during this time.
    simultaneously, this would happen with EVERYONE on my buddy list. except one difference: they would get the file, and i would be merely informed that it had failed.
    a new discovery i made today is that with the first friend i mentioned, after a failed attempt, he can no longer see anything i write.
    does anyone have a suggestion as to how to make ichat be able to send files normally again? thanks for your help!

    Hi Jorden,
    Try running the Cron scripts as the first option.
    http://discussions.apple.com/thread.jspa?threadID=122021
    Then try running the combo 10.4.7 update
    http://www.apple.com/support/downloads/macosxupdate1047comboppc.html
    11:03 PM Friday; July 28, 2006

  • I' d like to send files through webservice not using XI

    i am trying p2p connection with Webservice.
    sending message success but files not.
    is any way to send files? someone tell that SOAP attach maybe help me.
    but i don't know how to do.
    please let me know how to use SOAP attach in SAP.
    all your comments make me solve my problem.
    thanks.

    InDesign CS4 can open .indd, .indt  and .inx files from earlier versions, but not from later. It should, however, be able to open .idml files saved or exported from newer versions, with the understanding that unsupported features will be lost, text will probably reflow due to differences in texts engines between versions, and that the greater the gap between versions the more likely there are to be noticeable differences from the original. You will need to be sure CS4 is at version 7.0.6 to read the .idml.

  • Skype send file through internet or internal?

    Today, We have a 2 internal user send a large size file from skype. We find our internal network was very busy. How may I control the skype if send files is using internal network or internet network? Thanks a lot 

    I think that skype as a Point-to-Point will try to find the fastest route.
    Even if used the Internet, then it will load your local network twice:
    1. For the upload to the Internet.
    2. For the download from the Internet.

  • Problems sending files throught TCP sockets

    I would like to transfer a file throught a tcp socket, here there is what the sender program does :
    try{
         File localFile = new File("shared/"+fileName);
         DataOutputStream oos = new DataOutputStream(socket.getOutputStream());     
         DataInputStream fis = new DataInputStream(new FileInputStream(localFile));
         while(fis.available() > 0){
              oos.writeByte(fis.readByte());
         catch(Exception e){}here what the receiver program does:
         try{
         File downloadFile = new File("incoming/"+fileName);
         downloadFile.createNewFile();
         ois = new DataInputStream(connectionSocket.getInputStream());
         fos = new DataOutputStream(new FileOutputStream(downloadFile));
         while(ois.available() > 0){
              fos.writeByte(ois.readByte());
         catch(Exception e){}
    }Where i m wrong? it doesnt work :( , it just create the new file in the incoming folder, but its size remains 0 byte :(
    help a newbye please :D

    Your problem is probably related to the use of available. This is the amount that is currently in the buffer that you can read without blocking. For network programming you should expect to have to wait for data. Second, you are copying the data one byte at a time which is not very efficient. Try something like:
    // Sender
    try {
        File localFile = new File("shared/"+fileName);
        OutputStream out = socket.getOutputStream();     
        InputStream fis = new FileInputStream(localFile);
        int length;
        byte[] buffer = new byte[4096];
        while((length = fis.read(buffer)) != -1)
         out.write(buffer, 0, length);
        fis.close();
        out.close();
    catch(Exception e){}
    // Receiver
    try {
        File downloadFile = new File("incoming/"+fileName);
        IntputStream ois = connectedSocket.getIntputStream();     
        OutputStream fos = new FileOutputStream(downloadFile);
        int length;
        byte[] buffer = new byte[4096];
        while((length = ois.read(buffer)) != -1)
         fos.write(buffer, 0, length);
        fos.close();
        ois.close();
    catch(Exception e){}

  • Doesnt iphone have the capability of sending files through bluetooth?

    my bluetooth seems to do NOTHING AT ALL, it keeps trying to find devices and never gets anything, then when i try to send a file from my mac to my iphone it says the device needs more elements and gives me an error, what the **** is going on, can any1 help me out?
    does iphone have the capability of sending pictures youve taken through bluetooth?

    You can try sending feedback here, not that it will do much good > http://www.apple.com/feedback/iphone.html

  • Send File Through Email -- Size Limit?

    Is there a size limit to files that can be sent using SMTP functions?
    I know in different mail servers, there are restrictions on how large attached files can be.
    Is this true in LabVIEW? What server does LabVIEW send through, your default email server or something else?
    Cory K
    Solved!
    Go to Solution.

    It uses the server that you specify.
    Message Edited by Dennis Knutson on 02-26-2009 09:59 AM
    Attachments:
    SMTP File Send.PNG ‏18 KB

  • Sending files through Hyperterminal to the Virtex-5 with OpenSPARC T1?

    Hello everybody,
    I would like to ask you where can I find some information about using Hyperterminal (or any other telnet application suggested) to send a file to the FPGA device once the OpenSPARC T1 is already loaded. The aim is to show the difference in time elapsed between using multi-threading instead of single-threading by means of an simple application, but I can't figure out how to send the C compiled application to the FPGA device. I do appreciate any help.
    Kind regards,
    Rafael Ruiz & Salva Rodríguez

    Thanks Tom for your reply,
    I still have some doubts... Once is already booted, how do you know the FTP address of the FPGA? Could I use any FTP client to access the FPGA or do I need to use a certain application?
    Thanks a lot,
    Salva DJ & Rafa Pocholoski

  • Problems all of a sudden with sending files through MAC mail?

    My .Mac email has acted up over the past week. I used to send documents smaller than 300k every day to whoever with no problems. Now, I'm lucky if they even go. A progress bar will tell me 8% done... 15% done... 21% done and then most of the time I'll get the message 'Could not be delivered... Try Again or Save for Later?'. Every now and then I'll get lucky and one will send, but it's become rare. Even when it does go it takes FOREVER. 5 minutes or more. They used to take 30 seconds... if that. This is a problem on three different G5's with Mail version 1.3.11 (v622/623). I use a high-speed cable connection to the internet, so it's plug and play for me basically. I even created an account with Comcast mail just to test the documents there and they shoot through with no problems (but that defeats the purpose of using my business email address on .MAC).
    Any suggestions?

    Are you saving Sent messages on the server with your .Mac account on all computers?
    No.
    Are you using Port 25 to send messages with the .Mac SMTP server in Mail on all Macs?
    Yes.
    If so, try changing the Server Port from 25 to 587. Go to Mail > Preferences > Accounts and under the Account Information tab for the account preferences at the SMTP server selection, select the Server Settings button below. At the Server Port:, enter 587 in place of 25 in the space provided and when finished, select OK to save the changed setting.
    Tried that with the same result. I'm stumped. Could there be something wrong with my router you think? Thanks for the help!

Maybe you are looking for

  • KM Navigation iView locks files when viewed from a role

    Hello, I have created a file system repository manager that points to a certain folder on the server. This folder contains an excel file. I than created a KM Document iView that points directly to this file and linked it to a certain role's folder. T

  • Amended Columns in IR not showing in Edit Form

    Hi, I Created a IR report using A form on a report wizard. I have now changed the underlying query in the IR and it is showing correct. When I click on Edit, the records are not forwarded to the form. Even the new fields in the IR are not reflected i

  • Junit and Ear file

    I have a ear file ** and want to write junit test cases for some classes in the ear. the ear file has the following structure: ->ear ----> ejb.jar ----> utils.jar ----> some.jar ----> app-inf ------------> lib/third.jar ----> meta-inf ----------->app

  • How do I put files onto a CD?

    I am trying to "burn" five photograph files onto a CD.  I have the first one done with no trouble.  But when I try to place the second on, I get the following message:  Current disc cannot be overwritten.  Please insert a different disc.  What am I d

  • Authorization: Search help is showing all business partners

    Hello, Using FI-CA, the F4 searchhelp is showing all the business partners also the onces which have a special Authorization Groups assigned. The search-result should only list the BPs without a special Authorization Group. Is there any object I can