Hello everyone,
I am using the following code to read a string. The content of message is ends with a lot of \0 characters. Why and how to remove them?
(context is an instance of HttpListenerContext, and my code is read Http request from begin to end)
[Code]
using (StreamReader requestStream = new StreamReader(context.Request.InputStream))
{
message = requestStream.ReadToEnd();
}
[/Code]
thanks in advance,
George
George GeorgePosted Jun 25, 2008, 6:13 AM
Thanks all the same, Jan!
regards,
George
Jan MontanoPosted Jun 25, 2008, 5:59 AM
George GeorgePosted Jun 25, 2008, 4:36 AM
Thanks Jan!
Your solution works! Do you know why there is pending \0 in input stream of Http Request? Could client send \0 through Http communication? :-)
regards,
George
Jan MontanoPosted Jun 25, 2008, 12:05 AM