09-11-2009 08:49 AM
Using Test Stand and Lab View, Each one of my tests open a telnet session, runs a test, close the session and then is repeated in the next step but running a different test. Therefore I get a pass/fail for each step.
Is it possible to open up a telnet session in the setup area of Test Stand (using a VI created in lab view) and pass that telnet session to the other Vi's in the Main area of test stand. The test steps (the VI's) in the main would not have to open up a session saving time.
Solved! Go to Solution.
09-14-2009 07:53 AM
09-14-2009 08:42 AM
I prefer to use a functional global VI in LabVIEW with three functions or states "Open Session", "Get Session" and "Close Session" and keep all my references on the LabVIEW side and not pass them back to TestStand.
Omar
09-14-2009 08:47 AM
09-14-2009 09:23 AM
09-14-2009 11:11 AM
I meant to say
Read up on "un-initialized shift registers" if you are new to LabVIEW
09-14-2009 01:13 PM
09-15-2009 12:30 PM
Thanks to everyone that responded. To solve my problem I created a VI that opened a telnet connection. In that Vi I made the Telnet out a control which I mapped to a connector. I placed that VI in my teststand setup area. In teststand I made the telnet out a FileGlobal variable (called it Telnet_Connection). Next in the Main area of teststand I place a VI that runs a test over the telnet with out opening a connection. I made the Telnet in a control and mapped it to a connector in the VI. In teststand I made the telnet in the same variable as the telnet out created in the setup, Telnet_Connection. Ran the test and it worked. My biggest problem was not knowing how to create a variable or pass a variable in Teststand. Thanks again for your help.
09-23-2010 07:04 AM
Hi,
Can you please send your VI and Teststand sequence?
Thanks
09-20-2012 09:42 PM
Thanks for the advice on this! It totally worked for me.