Click here to Skip to main content
15,892,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I am getting above error while reading the data (see marked bold in below code) from tcp client, though my 'Connect' and 'write' is working fine..what can be the issue..here is my client code Please help..
C#
using System;
using System.IO;
using System.Net;
using System.Text;
using System.Net.Sockets;
using System.Threading;
using System.Net.Security;
using System.Timers;

namespace ClientRequest
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                
                TcpClient tcpclnt = new TcpClient();
                Console.WriteLine("Connecting.....");

                IPAddress[] objLocalAddr = null;
                String strHostName = "";
                int port = 2425;
                
                strHostName = Dns.GetHostName();
                IPHostEntry ipEntry = Dns.GetHostEntry(strHostName);
                objLocalAddr = ipEntry.AddressList;

                tcpclnt.Connect(objLocalAddr[0], port);
             

                Console.WriteLine("Connected");
                Console.Write("Enter the string to be transmitted : ");

                String str = Console.ReadLine();
                Stream stm = tcpclnt.GetStream();

                ASCIIEncoding asen = new ASCIIEncoding();
                byte[] ba = asen.GetBytes(str);
                Console.WriteLine("Transmitting.....");

                stm.Write(ba, 0, ba.Length);
                
                byte[] bb = new byte[100];
                int k = stm.Read(bb, 0, 100);                
                for (int i = 0; i < k; i++)
                Console.Write(Convert.ToChar(bb[i]));               

                   tcpclnt.Close();
            }
            catch (Exception e)
            {
                Console.WriteLine("Error..... " + e.StackTrace);
            }
        }
    }
}
Posted
Updated 15-Oct-12 21:48pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900