Creating a VI Server Application
- Updated2026-05-01
- 2 minute(s) read
Use the LabVIEW VI Server to programmatically control front panel objects, VIs, and LabVIEW, and to dynamically load, edit, and run VIs on a computer or remotely across a network. You can control browser access to the VIs and configure which VIs remote applications can control.
Complete the following steps to create a VI Server application.
- Configure the VI Server to allow the TCP/IP protocol.
- Use the Open Application Reference function to open a reference to a local or remote application instance.
- Use the Open VI Reference function to open a reference to a VI on the local or remote computer that already exists in memory for the application instance, or to dynamically load a VI from disk. However, be aware that if the input to vi path is a file path, this function waits until the user interface is idle to load the VI from disk.
- Use the
Property Node
to get or set properties or the
Invoke Node
to invoke methods.
- Property Node
- Invoke Node
- Use the Close Reference function to close any open references.
Refer to labview\examples\viserver for examples of using the VI Server.
Find related examples
Related Information
- Controlling Front Panel Objects Programmatically from a SubVI
- Allowing and Denying Web Browser Access for Remote Front Panels
Configure access to remote front panels on the LabVIEW Web Server with the browser access list.
- Specifying Which VIs You Can Control Remotely
- Configuring the VI Server
- Working with Application Instances
Learn how LabVIEW uses application instances to isolate VIs by project target, shared library, or the main environment. Identify an instance, manage VIs open in multiple instances, and use application references.
- Managing a Project in LabVIEW
- Dynamically Loading and Dynamically Calling VIs
You can dynamically load VIs instead of using statically linked subVI calls.