Now that Silverlight 5 (RC) supports P/Invoke, I am thinking of implementing a Socket class with server functionality, i.e. a class that implements the Bind, Listen, Accept methods, etc. With P/Invoke, I would be able to access the socket methods in ws2_32.dll from my Silverlight class library.

If possible, I would like to get a head start. It's a long-shot, but: has anyone implemented a C# wrapper to the Winsock 2 DLL, and in that case, is this effort publicly available?

The Mono project of course provides its own Socket implementation in C#, but this code comes with a little bit of overhead, to say the least. I am looking for a more light-weight solution, if there is any.

link|improve this question

1  
I may be missing something, but is there any reason not to use the built-in System.Net.Sockets class? msdn.microsoft.com/en-us/library/system.net.sockets.socket.aspx – David Stratton Oct 7 '11 at 19:08
1  
In Silverlight, The built-in Socket class does not support server methods such as Bind, Listen and Accept. With P/Invoke in Silverlight I would be able to implement a customized Socket class supporting these methods. – Anders Gustafsson Oct 7 '11 at 19:13
Silverlight isn't listed on the supported platforms (end of the page in your link) – Yahia Oct 7 '11 at 19:15
I was missing something. Thank you! – David Stratton Oct 7 '11 at 19:15
So, you want to open a listening socket in my browser. Thanks to virus scanners/browser securities that they don't allow this. – L.B Oct 7 '11 at 19:20
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

not sure whether this is what you are looking for but on http://www.pinvoke.net/default.aspx/ws2_32.bind# you can find the signatures you are looking for, just look on the left side of the site for ws2_32

EDIT - after comments:

This http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=4043&lngWId=10 seems to be a VB-implemented wrapper for Winsock2 which can be used by C# .

link|improve this answer
Thanks, Yahia. Yes, I know about pinvoke.net. For ws2_32 it is fairly incomplete. My hope is that someone has already gone through the effort of wrapping a larger number of the ws2_32 methods. – Anders Gustafsson Oct 7 '11 at 19:15
see my edit above... – Yahia Oct 7 '11 at 19:28
Thanks again, Yahia. I saw that one as well before writing to SO. I had a look at the code, but at first sight it is not obvious to me if I can make any use of it. I will take a second look to see if I overlooked something the first time. Either way, I really appreciate your efforts with this. – Anders Gustafsson Oct 7 '11 at 20:24
I have looked more closely at the VB-socket wrapper now, and it appears to rely on an ActiveX component mswinsck.osx. This does not really seem like a desirable solution, so I will go for the manual P/Invoke declaration of the relevant methods in ws2_32.dll. – Anders Gustafsson Oct 10 '11 at 7:39
feedback

Your Answer

 
or
required, but never shown

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