Как прослушивать клиентом сервер - C#

Узнай цену своей работы

Формулировка задачи:

Всем привет, столкнулся с проблемой, что клиент подключается к серверу передавая имя подключившегося пользователя. Но далее дело не заходит , не получается клиентом прослушивать отправления сервера и заполнять текстбокс(для чата) и не работает отправка на сервер. Вот код клиента.
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14. using System.Threading;
  15. using System.Net;
  16. using System.Net.Sockets;
  17. using System.IO;
  18.  
  19. namespace Game_Client_V._0._0._1
  20. {
  21. /// <summary>
  22. /// Логика взаимодействия для MainWindow.xaml
  23. /// </summary>
  24. public partial class MainWindow : Window
  25. {
  26. Thread tUpdateChat;
  27. string PlayerName;
  28. string KeyAddPlayer = "Player: ";
  29. public static Socket Client;
  30. private IPEndPoint ipEndPoint;
  31. private IPAddress IP_Server = null;
  32. private int Port;
  33. public MainWindow()
  34. {
  35. InitializeComponent();
  36. TB_CHAT.Visibility = Visibility.Collapsed;
  37. TB_CHAR_R.Visibility = Visibility.Collapsed;
  38. B_SendMessage.Visibility = Visibility.Collapsed;
  39. EL_INFO_COLOR_1.Visibility = Visibility.Collapsed;
  40. B_EXIT.Visibility = Visibility.Collapsed;
  41. try
  42. {
  43. var rd = new StreamReader("server_info.conf");
  44. string Config = rd.ReadLine();
  45. rd.Close();
  46. string[] ConfigSplit = Config.Split(':');
  47. IP_Server = IPAddress.Parse(ConfigSplit[0]);
  48. Port = int.Parse(ConfigSplit[1]);
  49. LB_INFO_CONNECTION.Foreground = Brushes.Green;
  50. EL_INFO_COLOR.Stroke = Brushes.Green;
  51. EL_INFO_COLOR.Fill = Brushes.Green;
  52. LB_INFO_CONNECTION.Content = "Настройки успешно инициализированы \n" + "IP адрес сервера: " + ConfigSplit[0] + "\nПорт: " + ConfigSplit[1];
  53. }
  54. catch
  55. {
  56. EL_INFO_COLOR.Stroke = Brushes.Red;
  57. EL_INFO_COLOR.Fill = Brushes.Red;
  58. LB_INFO_CONNECTION.Foreground = Brushes.Red;
  59. LB_INFO_CONNECTION.Content = "\nОшибка инициализации настроек";
  60. B_CHANGE_CONFIG.Background = Brushes.Red;
  61. }
  62. }
  63. private void RecvMessage()
  64. {
  65. byte[] Buffer = new byte[1024];
  66. for (int i = 0; i < Buffer.Length; i++)
  67. {
  68. Buffer[i] = 0;
  69. }
  70. for (;;)
  71. {
  72. try
  73. {
  74. string Message;
  75. int bytesRec = Client.Receive(Buffer);
  76. Message = Encoding.UTF8.GetString(Buffer, 0, bytesRec);
  77. TB_CHAR_R.Text = Message;
  78. Thread.Sleep(1000);
  79. }
  80. catch
  81. {
  82. }
  83. }
  84. }
  85. private void SendMessage (string Message)
  86. {
  87. if (Message != String.Empty && Message != " ")
  88. {
  89. byte[] ByteMessage = Encoding.UTF8.GetBytes(Message);
  90. int bytesSent = Client.Send(ByteMessage);
  91. }
  92. }
  93. private void Button_Click(object sender, RoutedEventArgs e)
  94. {
  95. Client = new Socket(IP_Server.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
  96. ipEndPoint = new IPEndPoint(IP_Server, Port);
  97. if (IP_Server != null)
  98. {
  99. Client.Connect(ipEndPoint);
  100. PlayerName = TB_NAME.Text;
  101. if (PlayerName == String.Empty)
  102. {
  103. MessageBox.Show("Введите имя пользователя");
  104. }
  105. else
  106. {
  107. EL_INFO_COLOR_1.Visibility = Visibility.Visible;
  108. EL_INFO_COLOR_1.Stroke = Brushes.Green;
  109. EL_INFO_COLOR_1.Fill = Brushes.Green;
  110. LB_INFO.Content = "Соединение установлено";
  111. LB_INFO.Foreground = Brushes.Green;
  112. TB_NAME.Visibility = Visibility.Collapsed;
  113. B_Connect.Visibility = Visibility.Collapsed;
  114. TB_CHAT.Visibility = Visibility.Visible;
  115. TB_CHAR_R.Visibility = Visibility.Visible;
  116. B_SendMessage.Visibility = Visibility.Visible;
  117. B_EXIT.Visibility = Visibility.Visible;
  118. byte[] ByteMessage = Encoding.UTF8.GetBytes(KeyAddPlayer + PlayerName);
  119. int bytesSent = Client.Send(ByteMessage);
  120. tUpdateChat = new Thread(RecvMessage);
  121. }
  122. }
  123. }
  124. private void B_SendMessage_Click(object sender, RoutedEventArgs e)
  125. {
  126. SendMessage(PlayerName + ": " + TB_CHAT.Text + "\n");
  127. TB_CHAT.Text = String.Empty;
  128. }
  129. private void B_EXIT_Click(object sender, RoutedEventArgs e)
  130. {
  131. tUpdateChat.Abort();
  132. Environment.Exit(0);
  133. }
  134. }
  135. }
__________ Код сервера
Листинг программы
  1. using System;
  2. using System.Text;
  3. using System.Net;
  4. using System.Net.Sockets;
  5. using System.Collections.Generic;
  6. namespace SocketServer
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. List<string> Players = new List<string>();
  13. int Count_Clients;
  14. string KeyPlayer = "Player: ";
  15. // Устанавливаем для сокета локальную конечную точку
  16. //IPHostEntry ipHost = IPAddress.Parse("127.0.0.1")//Dns.GetHostEntry("localhost");
  17. IPAddress ipAddr = IPAddress.Parse("127.0.0.1");//ipHost.AddressList[0];
  18. IPEndPoint ipEndPoint = new IPEndPoint(ipAddr, 11000);
  19. // Создаем сокет Tcp/Ip
  20. Socket sListener = new Socket(ipAddr.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
  21.  
  22. // Назначаем сокет локальной конечной точке и слушаем входящие сокеты
  23. try
  24. {
  25. sListener.Bind(ipEndPoint);
  26. sListener.Listen(10);
  27. // Начинаем слушать соединения
  28. while (true)
  29. {
  30. Console.WriteLine("Ожидаем соединение через порт {0} \n", ipEndPoint);
  31. // Программа приостанавливается, ожидая входящее соединение
  32. Socket handler = sListener.Accept();
  33. string data = null;
  34. Console.WriteLine("Запрос на подключение нового клиента выполнен! \n");
  35. // Мы дождались клиента, пытающегося с нами соединиться
  36. byte[] bytes = new byte[1024];
  37. int bytesRec = handler.Receive(bytes);
  38. data += Encoding.UTF8.GetString(bytes, 0, bytesRec);
  39. if (data.Contains(KeyPlayer))
  40. Players.Add(data);
  41. Count_Clients = Players.Count;
  42. // Показываем данные на консоли
  43. Console.Write("Полученный текст: " + data + Players.Count + "\n\n");
  44. // Отправляем ответ клиенту\
  45. string reply = "";
  46. reply += data;
  47. byte[] msg = Encoding.UTF8.GetBytes(reply);
  48. handler.Send(msg);
  49.  
  50. if (data.IndexOf("<TheEnd>") > -1)
  51. {
  52. Console.WriteLine("Сервер завершил соединение с клиентом.");
  53. break;
  54. }
  55. handler.Shutdown(SocketShutdown.Both);
  56. handler.Close();
  57. }
  58. }
  59. catch (Exception ex)
  60. {
  61. Console.WriteLine(ex.ToString());
  62. }
  63. finally
  64. {
  65. Console.ReadLine();
  66. }
  67. }
  68. }
  69. }

Решение задачи: «Как прослушивать клиентом сервер»

textual
Листинг программы
  1.         private void SendMessage (string Message)
  2.         {
  3.             if (Message != String.Empty && Message != " ")
  4.             {
  5.                 byte[] ByteMessage = Encoding.UTF8.GetBytes(Message);
  6.                 int bytesSent = Client.Send(ByteMessage);
  7.                
  8.             }
  9.         }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

15   голосов , оценка 4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы