I'm creating a windows desktop sharing app and have everything working except the virtual channels for sending chat messages. I can send messages from the host to the Viewer but not vice versa. The Viewer is using the ActiveX RDPViewer. The problem is I can't get the OnChannelDataRecieved event to fire on the host. I know some people have had trouble with this before but any help would be appreciated.
Here is some snippets that might help. Viewer
RDPCOMAPILib.IRDPSRAPIVirtualChannel chan;
chan = rdpViewer.VirtualChannelManager.CreateVirtualChannel(name, RDPCOMAPILib.CHANNEL_PRIORITY.CHANNEL_PRIORITY_HI, 0);
Then when sending i call
chan.SendData(message, (int)RDPCOMAPILib.RDPENCOMAPI_CONSTANTS.CONST_ATTENDEE_ID_HOST, 0);
Host
chan = rdp.VirtualChannelManager.CreateVirtualChannel(name, RDPCOMAPILib.CHANNEL_PRIORITY.CHANNEL_PRIORITY_HI, 0);
foreach(IRDPSRAPIAttendee attendee in rdp.Attendees)
this.vc.SetAccess(attendee.Id, RDPCOMAPILib.CHANNEL_ACCESS_ENUM.CHANNEL_ACCESS_ENUM_SENDRECEIVE);
Then I call this to send data
chan.SendData(message, (int)RDPCOMAPILib.RDPENCOMAPI_CONSTANTS.CONST_ATTENDEE_ID_EVERYONE, 0);
Using
RDPENCOMAPI_CONSTANTS.CONST_ATTENDEE_ID_EVERYONE
didn't work for me. The only way I solved that issue was to useSendData
iterating over session's attendees.While this solves the Host-to-Viewer communication I still can't receive any message from a connected viewer, registed on the same virtual channel and using
RDPENCOMAPI_CONSTANTS.CONST_ATTENDEE_ID_HOST
constant.What I've done server-side is to create a new RDPSession and a virtual channel
create a new handler for
OnChannelDataReceived
event and start the RDP session.Event handler looks like this:
Viewer runs on Windows 10 while server runs on Windows 7 and they both uses RDPCOMAPI generated from Windows 7
rdpcomen.dll
usingtlbimp.exe
tool.