httpwebresponse Questions
4
I am building a library that allows a user to download files from a URL. One of the options I am considering is letting the user specify the expected MD5 checksum for the file; the library's GetFil...
Antibaryon asked 2/10, 2009 at 20:24
3
Is there any way I can hook Fiddler up to capture requests and responses made using .NET HttpWebRequest and HttpWebResponse?
Hernandez asked 24/9, 2009 at 9:28
3
Solved
I'm making a program which downloads files over http.
I've got it downloading, however I want to be able to pause the downloads, close the program and resume them again at a later date.
I know th...
Glory asked 17/9, 2009 at 19:55
4
Solved
WebResponse response;
try
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Timeout = 20000;
response = request.GetResponse();
request = (HttpWebRequest)WebRequest.Cr...
Slantwise asked 26/7, 2009 at 12:15
2
I am looking for an example of how, in C#, to put a xml document in the message body of a http request and then parse the response. I've read the documentation but I would just like to see an examp...
Consort asked 3/4, 2009 at 23:0
3
Solved
I'm trying to replace this:
void ProcessRequest(object listenerContext)
{
var context = (HttpListenerContext)listenerContext;
Uri URL = new Uri(context.Request.RawUrl);
HttpWebRequest.DefaultWe...
Miriam asked 7/2, 2009 at 15:16
© 2022 - 2024 — McMap. All rights reserved.