Users Online

· Guests Online: 96

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

C# Program to Implement UDP

C# Program to Implement UDP

 

This C# Program Implements UDP. Here name of the employee is entered in the client side window and the job the specified employee is displayed.

 

Here is source code of the C# Program to Implement UDP. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

  1. /*
  2.  * C# Program to Implement UDP
  3.  */
  4.  
  5. //SERVER SIDE PROGRAM
  6.  
  7. using System;
  8. using System.Net;
  9. using System.Net.Sockets;
  10. using System.Text;
  11. using System.Configuration;
  12.  
  13. class EmployeeUDPServer
  14. {
  15.     public static void Main()
  16.     {
  17.         UdpClient udpc = new UdpClient(2055);
  18.         Console.WriteLine("Server started, servicing on port 2055");
  19.         IPEndPoint ep = null;
  20.         while (true)
  21.         {
  22.             byte[] rdata = udpc.Receive(ref ep);
  23.             string name = Encoding.ASCII.GetString(rdata);
  24.             string job = ConfigurationSettings.AppSettings[name];
  25.             if (job == null) job = "No such employee";
  26.             byte[] sdata = Encoding.ASCII.GetBytes(job);
  27.             udpc.Send(sdata, sdata.Length, ep);
  28.         }
  29.     }
  30. }//XML CODING
  31.  
  32. <?xml version="1.0" encoding="utf-8" ?>
  33. <configuration>
  34.   <appSettings>
  35.     <add key = "mickey" value="manager"/>
  36.     <add key = "bob" value="tester"/>
  37.     <add key = "tom" value="clerk"/>
  38.     <add key = "jerry" value="manager"/>
  39.   </appSettings>
  40. </configuration>
  41.  
  42. //CLIENT SIDE PROGRAM
  43.  
  44. using System;
  45. using System.Net;
  46. using System.Net.Sockets;
  47. using System.Text;
  48. class EmployeeUDPClient
  49. {
  50.     public static void Main(string[] args)
  51.     {
  52.         UdpClient udpc = new UdpClient("Win7-PC", 2055);
  53.         IPEndPoint ep = null;
  54.         while (true)
  55.         {
  56.             Console.Write("Name: ");
  57.             string name = Console.ReadLine();
  58.             if (name == "") break;
  59.             byte[] sdata = Encoding.ASCII.GetBytes(name);
  60.             udpc.Send(sdata, sdata.Length);
  61.             byte[] rdata = udpc.Receive(ref ep);
  62.             string job = Encoding.ASCII.GetString(rdata);
  63.             Console.WriteLine(job);
  64.         }
  65.     }
  66. }

Here is the output of the C# Program:
output

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 1.04 seconds
10,863,673 unique visits