Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have an application mini chat (socket, c#)

server:

 using System;
using System.Collections.Generic;
 using System.ComponentModel;
using System.Data;
using System.Drawing;
 using System.Linq;
 using System.Text;
 using System.Windows.Forms;
 using System.Xml;
   using System.Net.Sockets;
 using System.Net;
 using System.Threading;
 using System.IO;
 using System.Diagnostics;
namespace server
    {
 public partial class Form1 : Form
{
    public static byte[] data;
    public static byte[] data1;
    public static Socket sock;
    public delegate void operation(string s);
    public delegate void operation2();
    public delegate bool verifier();
    public Form1()
    {InitializeComponent();
      this.Show();
        sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        IPAddress adress = IPAddress.Parse("127.0.0.1");
        IPEndPoint iep = new IPEndPoint(adress, 4000);
        EndPoint ep = (EndPoint)iep;
        sock.Bind(iep);
        Thread lis = new Thread(listenning);
        lis.Start();
      }
    public void listenning()
    {
        sock.Listen(1000); sock = sock.Accept(); data1 = new byte[1024];
        data = new byte[1024];
       if (sock.Receive(data) > 0)
        {
             Thread t = new Thread(new ThreadStart(aller));
            t.Start();
        }
    }
     private void effectuer(String s)
    {
        textBox1.Text += "serveur:  " + s + "\r\n";
          message.Text  = "";
    }
    private void effectuer4(String s)
    {
        textBox1.Text += "Client:  " + s + "\r\n"; message.Text = "";
    }
  private void aller() {
      String  s = ASCIIEncoding.ASCII.GetString(data);
      if (this.InvokeRequired) Invoke((operation)effectuer4, s);
        else effectuer4(s);
    byte[] data2 = new byte[1024];
      if (sock.Receive(data2) > 0 && data2 != data)
            {
                data = data2;
                Thread t = new Thread(new ThreadStart(aller));
                t.Start();
            }
        }
       private void buttonDisconnect_Click(object sender, EventArgs e)
    {
        sock.Close();
        Application.Exit();
         }
private void buttonSend_Click(object sender, EventArgs e)
    {
       String s = message.Text ;
        data1 = System.Text.Encoding.ASCII.GetBytes(s);
          sock.Send(data1);Invoke((operation)effectuer, s);
       }
    }
 }

client:

   using System;
   using System.Collections.Generic;
   using System.ComponentModel;
    using System.Data;
   using System.Drawing;
  using System.Linq;
  using System.Text;
  using System.Windows.Forms;
  using System.Net.Sockets;
  using System.IO;
  using System.Diagnostics;
    using System.Threading;
  using System.Net;
   using System.Xml;
   namespace client
     {
   public partial class Form1 : Form
    {
    public static TcpClient SocketPourClient = null;
    public static string ClientMessage;
    public static string ServerMessage;
    Socket sock;
    public static byte[] data;
    public static byte[] data1;
    public delegate void operation(String s);
    public delegate void lancer();
    public delegate bool verifier();
    public IPEndPoint ipEnd = null;
    public Form1(string ip, int port)
    {
        InitializeComponent();
               IPAddress adress = IPAddress.Parse("127.0.0.1");
                 ipEnd = new IPEndPoint(adress, 4000);
              sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
              Thread th = new Thread(listenning);
              th.Start();
    }
    public void listenning()
    {
        try
        {
            sock.Connect(ipEnd);
        }
        catch (SocketException e)
        {
            MessageBox.Show(e.ToString());
            sock.Close();
        }
      data = new byte[1024];
        if (sock.Receive(data) > 0)
        {
            Thread t = new Thread(new ThreadStart(aller));
            t.Start();
        }
    }
    private void aller()
    {
     String s = ASCIIEncoding.ASCII.GetString(data);
      if(this.InvokeRequired) Invoke((operation)effectuer4, s);
        else effectuer4(s);
        byte[] data2 = new byte[1024];
           if (sock.Receive(data2) > 0 && data2 != data)
                {
                    data = data2;
                    Thread t = new Thread(new ThreadStart(aller));
                    t.Start();
                }
      }
    private void envoi()
    {
       String s = message.Text ;
        data1 = System.Text.Encoding.ASCII.GetBytes(s);
        sock.Send(data1);
        effectuer(s);
     }
   private void effectuer(String s)
{
    textBox1.Text += "client:  " + s + "\r\n";
  message.Text = "";
}
   private void effectuer4(String s)
 {
     textBox1.Text += "Server:  " + s + "\r\n";
     message.Text = "";
   }
        private void buttonDisconnect_Click(object sender, EventArgs e)
{
    sock.Close();
    Application.Exit();
}
      private void buttonSend_Click_1(object sender, EventArgs e)
{
    String s = message.Text ;
    data1 = System.Text.Encoding.ASCII.GetBytes(s);
    sock.Send(data1);
    Invoke((operation)effectuer, s);
  }
}
 }

my problem is how can the server identify the client ? if N clients are connected and the server wait for a message from client 1 how can it detect incoming message from it? any suggestions?

share|improve this question
2  
Nobody wants to read that much code. – spender Apr 26 '12 at 14:01
Your code is very confusing. It looks like you are starting multiple threads to process 1 client - you start a thread every time you receive data. You should change your code so that all data processing is done in 1 thread. This way you'll know that whatever data you read from the socket belongs to that client. – Daniel Gabriel Apr 26 '12 at 14:09
no, some good programmers can test it and give me advices!!!! – Lamloumi Afif Apr 26 '12 at 14:10
@LamloumiAfif, that's not how this site works. – Escobar Ceaser Apr 26 '12 at 14:59

closed as not a real question by Robert Harvey Apr 30 '12 at 15:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

you must add an infinite loop for listener:

public void listenning()
{
    while (true)
        {
         sock.Listen(1000); sock = sock.Accept(); data1 = new byte[1024];
         data = new byte[1024];
         if (sock.Receive(data) > 0)
         {
             Thread t = new Thread(new ThreadStart(aller));
             t.Start();
        }
    }
}
share|improve this answer
thanks you saeed sheikholeslami but my problem is not the communication between server and client because it works! my problem is how server identify every client connected to it and know the source of every message. – Lamloumi Afif Apr 26 '12 at 16:56
maybe you didn't try.this code is for your manner.sock.Accept() blocks until new client wants to join our server and then with new ThreadStart we command to work.the only problem i should notice is that the thread t will work but in memory it will be lost in future. – saeed sheikholeslami Apr 26 '12 at 17:05
you can make collection of new socks for further communication operations or don't touch and let the server to talk only new one defined as sock. – saeed sheikholeslami Apr 26 '12 at 17:24
but i must work by one port and one @ip because i must test the performance of the server – Lamloumi Afif Apr 26 '12 at 18:36
no don't mistake neither IP and port of your server will not be changed. in the line :sock = sock.Accept() you capture client's socket. – saeed sheikholeslami Apr 26 '12 at 19:21
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.