Trying understand, why my POST request not works, i downloaded Fiddler2. Fiddler catch first GET request, but when i sending POST request
using (var streamRequest = request1.GetRequestStream()) //Debugging stops here { streamRequest.Write(encoding.GetBytes(postData), 0, encoding.GetByteCount(postData)); } Fiddler nothing catch, and my app just waiting, no exceptions, no crashes, nothing, just empty console window. But if i close Fiddler, request sending and gets response, but response not what i expected, so i trying to findout, whats wrong in post request, but i cant without Fiddler...
Thank you.