When should we choose .Net Remoting over .Net Web Services? - .Net Remoting

When should we choose .Net Remoting over .Net Web Services?

- .Net Remoting provides distributed solution for a corporate use. So, if you need distributed environment to be implemented for internal use, .Net remoting is the best choice.
- If you require a faster distributed solution, .Net Remoting with TCP protocal using binary format is faster than Web services. .Net Remoting is better solution when large transfer of data is required. Web Services provide an open-protocol-based exchange of information. Web Services are best when you need to communicate with an external organization or non .NET technology.
What are the ways to configure Remoting objects before client can use them? - .Net Remoting
.Net Remoting - There are two ways that the remoting objects can be configured....
Define Delegates and Events - .Net Remoting
.Net Remoting - A delegate acts like a strongly type function pointer.....
What is asynchronous programming? - .Net Remoting
.Net Remoting supports asynchronous programming. In this model, a call is made to a class method while the calling program continues to execute.....
Post your comment