views:

104

answers:

1

Does anybody know any solution/walkaround to provide TLS/SSL support for TCP sockets in Silverlight x.x?

+1  A: 

If you have your Silverlight 4 application as trusted, you can use SSL/TLS components for Silverlight, which are included in SecureBlackbox .NET.

If you have Silverlight 3 application or untrusted Silverlight 4 application, you can also use these components, yet you would be restricted by socket classes to only certain port numbers and only if the destination system has a policy available.

Eugene Mayevski 'EldoS Corp
Thanks for your reply. Have you tried it with your SL applications?
Well, actually we developed these components and yes, we tested them :).
Eugene Mayevski 'EldoS Corp
Thanks for your reply. I will give it a try.