需要有关 VNC 及其代码的帮助
我想做的是假设在 Windows 7 计算机上打开 10 个画图应用程序窗口。我想在 10 个不同的触摸设备上显示这 10 个不同的窗口。我计划在这些运行 android 并在 Windows 计算机上使用 VNC 服务器的设备上使用 androidVNCviewer。
我希望这个 VNC 服务器能够通过不同的端口向各个客户端共享各个窗口(应用程序窗口)。所以我想知道这是否可能,如果可以的话我应该如何继续(我似乎无法了解代码的头部和尾部,并且非常需要帮助来理解代码的流程)。 有替代解决方案吗?
Devesh
p.s:我只想要一种共享这 10 个应用程序的方法,而不是 Web 服务或类似的允许协作工作的东西,因为我已经编写了一个应用程序(在 .net 中),其各种实例需要共享。
What I want to do is suppose open 10 windows of paint application on a Windows 7 computer. I would like to show these 10 different windows on 10 different touch enabled devices. I am planning to use androidVNCviewer on these devices which run android and use VNC server on the windows computer.
I want this VNC server to be able to share individual windows(application windows) to individual clients via different ports. So I would like to know if this is possible and if so then how should I proceed ( I can't seem to be able to make head and tail of the code and need help badly to understand the flow of the code ).
Any alternate solutions?
Devesh
p.s : I only want a way to share these 10 applications and not a webservice or something like that which allows collaborative work because I already have an application written(in .net) whose various instances need to be shared.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以执行您所描述的操作,但可能无法使用任何现有的 vnc 服务器。您需要下载 libvnc,它本质上是一个 vnc 服务器库。使用它,您可以为库的每个实例提供一个缓冲区,并且每个客户端都连接到一个实例。
It's possible to do what you describe but probably not with any existing vnc servers. You will need to download libvnc, which is essentially a vnc server library. Using it, you provide a buffer to each instance of the library, and each client connects to a single instance.