TcpClient client = new TcpClient("69.147.112.160", 443);
SslStream sslStream = new SslStream(client.GetStream(),false,
                                    ValidateServerCertificate,null);
try
{
    sslStream.AuthenticateAsClient("mail.yahoo.com");
}
catch (AuthenticationException e)
{

    return;
}
byte[] messsage = Encoding.UTF8.GetBytes(".<EOF>");
sslStream.Write(messsage);
sslStream.Flush();
byte[] buffer = new byte[4096];
int bytes2 = -1;
do
{
    /**************************************************
     *** JUST A LINE BELOW ALL buffer BYTES ARE ZERO!**
     *************************************************/

    bytes2 = sslStream.Read(buffer, 0, 4096);
    m_sockClient.Send(buffer, bytes2, 0);
} while (bytes != 0);
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

bytes2 = sslStream.Read(buffer, 0, 4096); reads up to 4096 bytes into buffer, not exactly 4096 bytes. It blocks until at least one byte is read and returns the number of bytes read. So after the method call, buffer will have the same content as before the method call (e.g., filled with nulls), except for the first bytes2 bytes, which are the bytes received from the server.

link|improve this answer
Thanks for you answer, but i know this. The main problem is that all bytes are zero not just some of them. – Roozbeh Sharafi Jun 18 '11 at 16:07
feedback

All bytes in buffer that have not been filled in by the Read call will be zero; this is standard C#.

If every last one byte in there is zero, only two things can be responsible:

  • You read real null bytes from the stream (unlikely)
  • Read does not read anything (in which case it returns 0 -- you should definitely be checking the return value)
link|improve this answer
Thanks, your answer seems helpful but can you tell me what's wrong with my code? where's my mistake? – Roozbeh Sharafi Jun 18 '11 at 16:09
@RoozbehSharafi: As I already said, you should be checking the return value of Read. Just like the example documentation does: msdn.microsoft.com/en-us/library/… – Jon Jun 18 '11 at 16:13
feedback

Your Answer

 
or
required, but never shown

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