views:

310

answers:

3

I want to write a silverlight page which connects to a tcp/ip server. The server is layering ssl as well. The problem is I don't see a SSLStream in Silverlight.

Is this doable (I need the tcp/ip because this page will constantly get events from the server and no I don't want to poll, in fact I can't the server is third party)

Thanks

A: 

All communication in SL3 is over HTTP. You can communicate over HTTPS too.

SL4 supports TCP endpoints, but this is not available yet.

Best, Mark

Mark Cooper
um SL3 has tcp endpoints I am pretty sure about that , but yeah there is no support for SSL over tcp\ip as I have discovered :-)thanks
Rahul
actually when I say tcp endpoints I mean you can open a socket so same difference :-)
Rahul
+1  A: 

ok bottom line you cannot do this in Silverlight 3.0 apparently

Rahul
A: 

still in SL 4 there is no support of SslStream.. :(

Calvin

related questions