Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

send multiple messages from TCP server to Client(C sharp to Android)

I am developing an app, in which c sharp server communicates with android client. Server needs to send multiple message to the Android tcpClient. As to send message I have to close the tcpClient Object on the server. otherwise it does not send. Once tcpClient is closed how can i communicate with my client again , how can i keep track and send multiple messages, once i close tcpClient, or there is any other way of sending without closing it. If the question is still unclear, please comment below

it sends one message easlity but i need to send more messages from time to time

Here is the snippet of code for server

//in a thread
void receivingMessages(object param)
    {
        try
        {
            var paramArray = (object[])param;
            var id = paramArray[0];
            var client = paramArray[1] as TcpClient;

            var stream = client.GetStream();

            while (true)
            {
                byte[] buffer = new byte[2048];
                int bytesRead = stream.Read(buffer, 0, 2048);

                if (bytesRead > 0)
                {
                    StringBuilder sb = new StringBuilder();
                    string v = Encoding.ASCII.GetString(buffer);

                    int index = v.IndexOf('\0');
                    string trimmedXml = v.TrimEnd(new char[] { '\0' });

                    var root = XDocument.Parse(trimmedXml).Root;
                    //to get the type of xml like it is login register or message
                    string xmlType = root.Name.ToString();

                    //some checks     
                    string result = " server messages";
                    SendMessage(client, result);

                }

                //Thread.Sleep(10);
            }
        }
        catch (Exception)
        {

        }

    }


    public void SendMessage(TcpClient client, string message)
    {

        byte[] buffer = Encoding.ASCII.GetBytes(message);

        NetworkStream stream = client.GetStream();
        stream.Write(buffer, 0, buffer.Length);

        client.Close();
    }
}
}
like image 520
Raheel Sadiq Avatar asked Oct 13 '12 18:10

Raheel Sadiq


1 Answers

Try this:

public void SendMessage(TcpClient client, string message)
{

    //byte[] buffer = Encoding.ASCII.GetBytes(message);

    NetworkStream stream = client.GetStream();
    StreamWriter writer = new StreamWriter(stream);
    writer.WriteLine(message);
    writer.Flush();

}
like image 145
0_______0 Avatar answered Oct 17 '22 22:10

0_______0