Top "Httpurlconnection" questions

HttpURLConnection instance is used to make a single request but the underlying network connection to the HTTP server may be transparently shared by other instances.

Send PUT, DELETE HTTP request in HttpURLConnection

I have created web service call using java below code. Now I need to make delete and put operations to …

java web-services http-post httpurlconnection http-delete
Java: HttpURLConnection Issues with IllegalStateArgument: Already Connected

This question seems clear what is happening: I already have a connection open, the problem is I don't know why. …

java httpurlconnection illegalstateexception
how to keep multiple Java HttpConnections open to same destination

We are using HttpURLConnection API to invoke a REST API to the same provider often (kind of an aggregation usecase). …

java http servlets tcpclient httpurlconnection
Using HttpURLConnection and HttpsURLConnection to connect to an https?

What are the differences if I try to connect to an "https" using HttpURLConnection and HttpsURLConnection? I was able to …

android httpurlconnection
Getting HTTP 415 error on HttpURLConnection connect

I'm using the following code to send a GET request and then receive response: try { URL url = new URL(strurl); …

java httpurlconnection http-status-code-415
Android HttpURLConnection throwing EOFException

Here's the question in simplest way. I create a HTTPS connection to my server through proxy using HttpUrlConnection Object. My …

android httpurlconnection eofexception
send header value using HttpUrlConnection

I have trying to send response to server using authentication value which, it provides me at login time. The server …

android get httpurlconnection http-token-authentication
Maintain session between HttpUrlConnection Calls (Native/Webview)

Let me start with what I desire: I want to make an app which is part native and part webviews. …

java php android session httpurlconnection
Why timeout value is not respected by android HttpURLConnection?

I have the following code block: try { URL url = new URL("http://site-to-test.com/nonexistingpage.html"); HttpURLConnection urlc = (HttpURLConnection) url.…

android timeout httpurlconnection
HttpURLConnection GET request with http-header "Accept"

I have read some relative questions, but unfortunately they do not answer my one, since I have specific requirements. Maybe …

java json httpurlconnection http-get