Windows process - .Net Remoting

Define windows process.

- A process is an instance of a running application.

- Each process is allocated its own block of available RAM space.

- No process can access another process code or data.

- If the process crashes, it dies alone without taking the entire OS or a bunch of other applications down.

- It can initiate a subprocess, which is called a child process.

- A child process is a replica of the parent process and shares some of its resources, but cannot exist if the parent is terminated.

- Processes can exchange information or synchronize their operation through several methods of Interprocess Communication (IPC).
Channels in .NET Remoting - Remoting.NET
.Net Remoting - Channels represent the objects that transfer the other serialized objects from one application domain to another and from one computer to another...
Security means for .NET Remoting in System.Runtime.Remoting - Remoting.NET
.Net Remoting - Cryptography and other security techniques can be applied at application or server level....
What is a formatter in .Net Remoting? - Remoting.NET
.Net Remoting - A formatter is an object that is responsible for encoding and serializing data into messages on one end....
Post your comment