.NET Remoting in a Simple Way

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
For creating Remoting we have to create 3 applications:
  • class Library (Of which Remote Object will be created)
  • Server Application (Console Application)
  • Client Application (Window Application)
RemoteClass
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4.    
  5. namespace remoteclass  
  6. {  
  7.     public class xx:MarshalByRefObject  
  8.     {  
  9.         public int sum(int a, int b)  
  10.         {  
  11.              return a + b;  
  12.         }  
  13.     }  
Remote Server
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4. using System.Runtime.Remoting;  
  5. using System.Runtime.Remoting.Channels;  
  6. using System.Runtime.Remoting.Channels.Tcp;  
  7.    
  8. namespace remoteserver  
  9. {  
  10.     class Program  
  11.     {  
  12.         static voidMain(string[] args)  
  13.         {  
  14.             TcpChannel ch=new TcpChannel(8085);  
  15.             ChannelServices.RegisterChannel(ch);  
  16.             RemotingConfiguration.RegisterWellKnownServiceType(typeof  
  17.                            (remoteclass.xx),"rahul",WellKnownObjectMode.Singleton);  
  18.             Console.Write("Sever is  Ready........");  
  19.             Console.Read();   
  20.         }  
  21.     }  
  22. }   
When the user runs this Remote Server application. 
 
Server.jpg
Figure 1:  Server Application.
 
Remote Client
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8. using System.Runtime.Remoting;  
  9. using System.Runtime.Remoting.Channels;  
  10. using System.Runtime.Remoting.Channels.Tcp;  
  11.    
  12. namespace remoteclient  
  13. {  
  14.     public partial class Form1 : Form  
  15.     {  
  16.         //TcpChannel ch = new TcpChannel();  
  17.         remoteclass.xx obj = new remoteclass.xx();  
  18.        public Form1()  
  19.        {  
  20.            InitializeComponent();  
  21.        }  
  22.    
  23.         private void button1_Click(object sender, System.EventArgs e)  
  24.         {  
  25.             //ChannelServices.RegisterChannel(ch);  
  26.             obj = (remoteclass.xx)Activator.GetObject(typeof(remoteclass.xx),  
  27.                            "tcp://localhost:8085/rahul");  
  28.             int x = Int32.Parse(textBox1.Text);  
  29.             int y = Int32.Parse(textBox2.Text);  
  30.             textBox3.Text = (obj.sum(x, y)).ToString();  
  31.         }         
  32.     }  
When the user runs the application.
 
ClientApplication.jpg
 
Figure 2: Client Application.