LabVIEW Remote Panel Request For Control Denied

Updated Dec 15, 2025

Reported In

Software

  • LabVIEW
  • LabVIEW Remote Panel Server

Issue Details

I'm using LabVIEW Remote Panel Methods .lvproj and able to connect remote panel on host machine. However, when I tried request control on remote panel, it shown Request for control denied.

Remote Panel control denied.png

How should I solve this permission issue?
 

Solution

This issue happen when Browser Access in Web Server only granted viewing.

To allow client have controlling privilege, you may go to Tools >> Options >> Web Server >> Browser Access, configure browser address as Allow viewing and controlling.

grant control and viewing .jpg


If you are using a LabVIEW Remote Front Panel connection through an executable (EXE) as a server, make sure the EXE’s INI file (e.g., MyApp.ini) includes the following configuration:

WebServer.TcpAccess="c+<your_client_ip>"

For multiple client IP addresses, use:
WebServer.TcpAccess="c+10.155.6.27;c+10.155.14.53"

To allow access from all IP addresses (not recommended for security reasons), use:
WebServer.TcpAccess="c+*"

Additional Information

You can configure the asterisk (*) as shown in browser access list to grants control access to any IP address.