.NET Communications Component

I'm looking for a component for C # .NET 2008 Professional that is capable of doing most of the network communication work that our application requires, so our programmers don't need that.

This component should function similarly to RealThinClient (RTC). The component must be able to gracefully lose and reconnect. It must have built-in encryption. It should have built-in compression. RTC can also do connection pooling, which is what we would like to have as well.

A little about us: we used to be a Delphi 7 store and are moving to using Visual Studio .NET 2008. We just hosted the RTC before deciding to move to .NET and want to duplicate the functionality available. :-)

Thanks for your help and links are much appreciated.

Michael Beck

+1


source to share


2 answers


FOS,

The Windows Communication Foundation is a set of libraries in the .net framework 3.0 that abstracts the application's communication with your code.

All your messages are abstracted so that you use your business objects as if the actual communication was not taking place.



It also allows you to completely customize what types of communication protocols, security, etc. you want to use without changing your code.

This may not be exactly what you are looking for, but WCF should always be considered when interoperating applications on a .net system.

Start here http://social.msdn.microsoft.com/content/en-us/msft/netframework/wcf/GettingStarted

+1


source


You should look at IPWorks from www.NSoftware.com. They have not only the Dot Net library but also the Delphi component. It can help you convert. If you buy your Red Carpet subscription, you will receive all libraries.



+2


source







All Articles