Microsoft Dynamic Virtual Channels

847 Views Asked by At

I am just exploring Dynamic Virtual Channels. I have couple of concerns on this.

  1. I have a web service running on physical system and I want to access that web service over RDP or from Cloud system (means from the system that is running in different network/domain than the physical system). Is this possible using Dynamic Virtual Channels

  2. Also, by using Dynamic Virtual Channels can I send command line arguments from RDP server to client side and launch specific application that is available on client system.

Thanks

1

There are 1 best solutions below

0
On

A Dynamic Virtual Channel (DVC) is just a pipe for sending data between the RDP Client and the server. The answer to both questions is Yes, but it is probably more work than you are expecting.

Regarding Question #1: The DVC is a "dumb" pipe between the client and the server. Where each is located is irrelevant. Using it to connect to a "Cloud" system is not a problem as long as you can access the server using RDP. To access the Web Service you will need to create at least 3 modules:

  1. The application running on the client PC that wants to access the web service.

  2. The DVC Plugin that will be loaded by the RDP Client

  3. The proxy exe running in the users session on the terminal server that will actually make the call to the Web Service.

App on Desktop --> Calls to endpoint exposed by DVC pluging --> DVC Plugin Sends request to Terminal Server --> Executable on Server Calls Web Service --> Result is returned in reverse.

Regarding Question #2: Yes you can, but you have to write the plugin to do it and the process on the server to initiate it.