I would like to write and run Shiny apps using Remote Desktop on Windows Server 2019. This is normally possible without any issues - you can test it on VM remote server (as I did). However in my real world case running shiny app:
runApp(path,port=open_port)
where open_port is open port number, results in
Listening on http://127.0.0.1:open_port
and blank page:
As far as I can recognise running app does not result in having port open and listening i.e. I have checked in cmd using:
netstat -na | find "open_port"
that there is no activity on the port. Therefore it seems that something is blocking shiny from running the app. As mentioned before this is not a case if you try do in on clean Windows Server 2019 installation. Any help would be greatly appriciated.

host = '0.0.0.0'argument:runApp(host = '0.0.0.0', path, port = open_port)and test ifservr::httd(port = open_port)shows you an index of files.host = '0.0.0.0'has the same result as described in the question.servrshows in the console that is started server on localhost, however it results either in blank page in Rstudio viewer or "cannot make a connection" in firefox or "this site is unaviable" in chrome