Top "Httpwebrequest" questions

HttpWebRequest is a class for .NET Framework applications that provides a HTTP-specific implementation of the WebRequest class.

HttpWebRequest cookie with empty domain

I have an ASP.NET MVC action that sends a GET request to another server via HttpWebRequest. I'd like to …

httpwebrequest cookiecontainer
WebClient restful Delete

I have a simple Restful service being called from a console app so am using WebClient. I am wondering if …

c# httpwebrequest webclient
What makes this HTTPS WebRequest time out even though it works in the browser?

Here's my request: var request = (HttpWebRequest) WebRequest.Create("https://mtgox.com/"); request.CookieContainer = new CookieContainer(); request.AllowAutoRedirect = false; request.Accept = "…

c# .net https httpwebrequest webrequest
Web API Authorization via HttpWebRequest

I have a function to call my Web API. It works well if TestCallingRemotely is set to [AllowAnonymous]. var httpWebRequest = (…

c# asp.net-web-api httpwebrequest aspnetboilerplate http-request-parameters
c# - http web request with https and basic authentication

I'm trying to do a webrequest over a https url with basic authentication. And its not working! below is my …

c# https httpwebrequest basic-authentication webrequest
Does .NET's HttpWebResponse uncompress automatically GZiped and Deflated responses?

I am trying to do a request that accepts a compressed response var request = (HttpWebRequest)HttpWebRequest.Create(requestUri); request.Headers.…

c# .net httpwebrequest gzip deflate
c# httpwebrequest getResponse() freezes and hangs my program

I was trying to use httpwebrequest to use a rest like service on a remote server and from the first …

c# httpwebrequest webrequest getresponse
Sending HTTP DELETE request in Android

My client's API specifies that to remove an object, a DELETE request must be sent, containing Json header data describing …

android httpwebrequest
how to send url parameter in POST request without form

I have to pass a parameter in url. I can't send it in as usual GET request the variable and …

django url httpwebrequest url-parameters