adspace


Explain what are possible implementations of distributed applications in .net?

Answer Posted / Ajay Kumar Jaiswal

In .NET, you can implement distributed applications using various approaches:n
1. Windows Communication Foundation (WCF): WCF is a framework for building service-oriented architecture (SOA) solutions. It provides support for multiple communication protocols and binding options, making it suitable for creating distributed applications.
2. Remoting: .NET remoting allows objects in one AppDomain to be marshalled and passed to another AppDomain on the same or different machine. However, it is being phased out in favor of WCF.
3. SignalR: SignalR is a library for real-time web functionality such as chat applications and live updates. It can be used for building distributed applications that require real-time communication between clients and servers.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1141