Remoting is the process through which we can access any remote object from one application domain to another application domain.

For creating remote object the class object must be inherited by MarshalByRefObject class.

Application domain is the runtime environment of application, For MicrosoftWord, domain is MS office, For .NET programme, .NET runtime environment.

Terms Used in Remoting

  • Proxy: To avoid conjunction in networking. Main work is task Distributing.There are two type of proxy.
    • Transparent proxy (There is no physical existence , Created by IIS server)
    • Real Proxy (Physical Existence)
  • Channel: Channel provides the medium for transfer data from one location to another location. There are two types of channel.
    • TCP(work with Predefined root Connection oriented)
    • HTTP (No need predefined root)
  1. Formatters: Change the data in an appropriate format that it can traverse through channels. There are two types of formatters
  • Binary
  • SOAP(Simple Object Access Protocol)
  1. Sink: Sink is used for security point of view. Before sending the data, the Data will be encrypted. Some additional bit will be added with the data to secure the data. There are two types of sink
  • Envoy sink
  • Server Context Sink

Object Mode On Server: Two Types of Object Mode .

  • SingleCall
  • Singleton
application
  1. What is .NET Remoting?

    .NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication.

  2. What’s a Windows process?

    It’s an application that’s running and had been allocated memory.

  3. 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 informaion. Web Services are best when you need to communicate with an external organization or another (non-.NET) technology.

  4. What are channels in .NET Remoting?

    Channels represent the objects that transfer the other serialized objects from one application domain to another and from one computer to another, as well as one process to another on the same box। A channel must exist before an object can be ट्रांस्फेर्रेड.

  5. What security measures exist for .NET Remoting in System.Runtime.Remoting?

    None. Security should be taken care of at the application level. Cryptography and other security techniques can be applied at application or server level.

  6. What is a formatter?

    A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other end.

  7. 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.

  8. Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs?

    Binary over TCP is the most effiecient, SOAP over HTTP is the most interoperable.

  9. How do you define the lease of the object?

    By implementing ILease interface when writing the class code.

  10. What’s SingleCall activation mode used for?

    If the server object is instantiated for responding to just one single request, the request should be made in SingleCall mode.

Comments

Popular posts from this blog

How to get motherboard serial number, Processor ID, VolumeSerialNumber using C#?

Fiserv Interview Questions.

AngularJs - Simple Example