A SIMPLE REMOTING EXAMPLE IN C#

來源:互聯網
上載者:User

After looking in vain for an easy example to understand the basics of remoting, I decided to write one myself. I found one or two useful articles, but they had syntax errors and left a lot for the reader to fill in. My example needs no tweaking and can be used as is. For simplicity, I use only one machine. The server and the client reside on the same machine.

Problem statement:

TicketServer holds information about the ticket status of a movie theater. A client needs to know the status of a ticket. Establish a connection between the client and the server so that client gets the information needed.

Solution:

A method called GetTicketStatus is defined in the server space. This method returns the status of the ticket. The server publishes this method which can be used by any client. The server listens to port 9998 over TCP. The client invokes the published method and gets the ticket status.

Implementation:

An interface MovieTicketInterface is defined which contains the GetMovieTicket method signature. This interface is implemented by MovieTicket class. The method GetMovieTicket is also implemented.

The server TicketServer registers the MovieTicket class as a remoting service. It listens to the port 9998 and waits for communication from any client.

The client creates an object of type MovieTicketInterface as a remoting object. As a part of this step, the communication between the server and the client over TCP on port number 9998 is established. It then invokes the method GetTicketStatus and gets the status.

Source code:

Server part:

1. Create a Console Application named TicketServer.
2. Add System.Runtime.Remoting as a reference to the project.
3. Replace the existing code in Class.cs with the following code and build the project.

 

01 using System;
02 using System.Runtime.Remoting;
03 using System.Runtime.Remoting.Channels;
04 using System.Runtime.Remoting.Channels.Tcp;
05  
06 class Program
07 {
08 static void Main(string[] args)
09 {
10 TicketServer();
11 }
12  
13 static void TicketServer()
14 {
15 Console.WriteLine("Ticket Server started...");
16  
17 TcpChannel tcpChannel = new TcpChannel(9998);
18 ChannelServices.RegisterChannel(tcpChannel);
19  
20 Type commonInterfaceType = Type.GetType("MovieTicket");
21  
22 RemotingConfiguration.RegisterWellKnownServiceType(commonInterfaceType,
23 "MovieTicketBooking", WellKnownObjectMode.SingleCall);
24  
25 System.Console.WriteLine("Press ENTER to quitnn");
26 System.Console.ReadLine();
27  
28 }
29  
30 }
31  
32 public interface MovieTicketInterface
33 {
34 string GetTicketStatus(string stringToPrint);
35 }
36  
37 public class MovieTicket : MarshalByRefObject, MovieTicketInterface
38 {
39 public string GetTicketStatus(string stringToPrint)
40 {
41 string returnStatus = "Ticket Confirmed";
42 Console.WriteLine("Enquiry for {0}", stringToPrint);
43 Console.WriteLine("Sending back status: {0}", returnStatus);
44  
45 return returnStatus;
46 }
47 }

 

Client side:

1. Create a Console Application named Client.
2. Add System.Runtime.Remoting and Server.exe [See Note 1] as references to the project.
3. Replace the existing code in Class.cs with the following code and build the project.

 

01 using System;
02 using System.Runtime.Remoting;
03 using System.Runtime.Remoting.Channels;
04 using System.Runtime.Remoting.Channels.Tcp;
05  
06 class MyClient
07 {
08 public static void Main()
09 {
10 TcpChannel tcpChannel = new TcpChannel();
11 ChannelServices.RegisterChannel(tcpChannel);
12  
13 Type requiredType = typeof(MovieTicketInterface);
14  
15 MovieTicketInterface remoteObject = (MovieTicketInterface)Activator.GetObject(requiredType,
16 "tcp://localhost:9998/MovieTicketBooking");
17  
18 Console.WriteLine(remoteObject.GetTicketStatus("Ticket No: 3344"));
19 }
20 }

 

Execution:

1. Execute Server.exe
2. Execute Client.exe

You will see the appropriate messages on the client side and the remote side.

Note 1: If you are using Visual Studio 2003, you cannot add a reference to an exe file. Make a copy of Server.exe, rename it to Server.dll and this can be added as a reference in your client project.

 

http://generally.wordpress.com/2007/05/31/a-simple-remoting-example-in-c/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.