Click here to Skip to main content
15,881,812 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am creating a help desk program and want to integrate vnc. I want the client to open a custom program wich connects to the help desk program and opens a vnc connection.

Ideas on how to do this would be greatly appreciated!
Posted
Comments
Sunasara Imdadhusen 27-Jun-14 1:55am    
You can create process from your winForms. It will open VNC or any other program you want to call.
Matt Harber 27-Jun-14 1:57am    
how would i connect to the vnc application without client allowing it through firewall.

1 solution

You certainly need to create an explicit hole in Firewall on the client side. If it was not required, firewalls would be totally useless. Isn't that logical?

As to VNC, this is graphical desktop sharing system (http://en.wikipedia.org/wiki/VNC[^]). It's totally unclear why interacting with VNC at the level of application program. It looks like a counter-productive idea to me. The adequate solution would be having some help desk service (specialized, or HTTP based, which would not require any manipulations with the firewalls because the hole for HTTP is prepared by default :-)) and client software (specialized, or just the Web browser).

For such a simple thing as a help desk, the Web-based approach looks the most apparent and attractive. And, as you mention C# in your question tags, the most maintainable and natural project would be an ASP.NET application. Look: http://www.asp.net/get-started[^] :-).

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900