Top "Httpwebrequest" questions

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

How to make an HTTP POST web request

Canonical How can I make an HTTP request and send some data using the POST method? I can do a …

c# .net post httpwebrequest httprequest
How to send HTTP request in java?

In Java, How to compose a HTTP request message and send it to a HTTP WebServer?

java html http httpwebrequest
The request was aborted: Could not create SSL/TLS secure channel

We are unable to connect to an HTTPS server using WebRequest because of this error message: The request was aborted: …

c# asp.net windows-8 windows-7 httpwebrequest
How to post JSON to a server using C#?

Here's the code I'm using: // create a request HttpWebRequest request = (HttpWebRequest) WebRequest.Create(url); request.KeepAlive = false; request.ProtocolVersion = HttpVersion.…

c# json post httpwebrequest
No connection could be made because the target machine actively refused it 127.0.0.1:3446

I'm using the WCF4.0 template -REST. I'm trying to make a method that uploads a file using a stream. The …

c# wcf rest httpwebrequest
Make an HTTP request with android

I have searched everywhere but I couldn't find my answer, is there a way to make a simple HTTP request? …

android httpwebrequest androidhttpclient
Upload files with HTTPWebrequest (multipart/form-data)

Is there any class, library or some piece of code which will help me to upload files with HTTPWebrequest? Edit 2: …

.net upload httpwebrequest
How to properly make a http web GET request

i am still new on c# and i'm trying to create an application for this page that will tell me …

c# .net httpwebrequest
Pure JavaScript Send POST Data Without a Form

Is there a way to send data using the POST method without a form and without refreshing the page using …

javascript post httpwebrequest xmlhttprequest http-post
What does %5B and %5D in POST requests stand for?

I'm trying to write a Java class to log in to a certain website. The data sent in the POST …

java post httpwebrequest