How to send data over TCP/IP.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • GhOsTTeCh
    New Member
    • Dec 2008
    • 22

    How to send data over TCP/IP.

    Hello, firstly i appologize if i posted in the wrong section seeing as my script is for VBscript.

    How do i send a few bytes of data to an internal server.

    I have an application that monitors all USB's inserted into a computer and so i want the script to send the USB serial number to the server, i already know how to get the serial number i just dont know how to send it.

    Thankyou
  • vacvac
    New Member
    • Jun 2009
    • 6

    #2
    You should use WinSock. It's usefull. It's using TCP and UDP and it's working with ports. So you can open port in the server application and make the application listen on some port (ex. 123) and on the client application will send bytes on servers app. on port (ex. 123). Google it, you can find how it works

    Comment

    Working...