Remoting Interview Question and Answers
26. |
What distributed process frameworks outside .NET do you know? |
|
- Distributed Computing Environment/Remote Procedure calls (DEC/RPC),
- Microsoft Distributed component Object Model (DCOM),
- Common Object Request Broker Architecture (CORBA), and
- Java Remote Method Invocation (RMI).
|
|
|
27. |
Can you configure a .NET remoting object via XML file? |
|
- Yes, via machine.Config and application level.config file (or web .config in ASP .NET).
- Application – level XML settings take precedence over machine.config
|
|
|
28. |
What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services? |
|
- Remoting is a more efficient communication exchange when you can control both ends of the application involved in the communication process.
- Web Services provide an open-protocol-based exchange of information.
- Web Services are best when you need to communicate with an external organization or another (non-.NET) technology.
|
|
|
29. |
What are the channels and Formatters? |
|
Channels- HTTP and TCP
- Binary over TCP is most efficient
- SOAP over HTTP is most interoperable
Formatters- Binary and SOAP
|
|
|
30. |
What are the two activation modes for .NET Remoting? |
|
|
|
|