I want to communicate with server to run my c# application and so I need to connect with server through sock communication. Is it possible using .net framework 4 ?

link|improve this question

33% accept rate
Do you mean SOCKS (proxy server) or [BSD] sockets? – Coxy Feb 2 '11 at 7:37
I mean SOCKS (proxy server) – Dinu Feb 2 '11 at 8:37
feedback

2 Answers

You could use the System.Net.Sockets class to connect to port on a remote server.

If you are looking for SOCKS C# libs you could go for these which works with HTTP, Socks4, Socks4a, and Socks5 proxy servers and comes with integrated help. It also works with Mono.

http://www.starksoft.com/prod_proxy.html

http://sourceforge.net/projects/starksoftproxyc/

link|improve this answer
feedback

Socks and Sockets are different .. Indeed if you wish to use sockets you could use System.Net.Sockets but, if you wish to use SOCKS (SOCKS client/server that can be used to provide convenient and secure network connectivity) you could use next example http://www.cknotes.com/?p=204

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.