12-15-2012 05:48 AM
Hi,
I am using DataSocket (dstp protocol) to connect two VIs remotely and send/receive data. Now I need to incorportate username/password to the project. The user should enter the correct username and password to be able to send data using DataSocket.
Does DataSocket inherently support this? if not, what do you suggest ?
Thanks!
12-15-2012 11:22 AM
I don't believe datasocket would have any password protection built into it.
What you should do is put the password protection into your VI. Have your VI ask the user for a password. If it is valid, then your VI will allow data to be sent to the datasocket. If it is invalid, then your VI will not send data because you would have placed the datasocket calls into the True case of case structures.
12-15-2012 04:47 PM