Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

162
votes
2answers
76k views

How to use java.net.URLConnection to fire and handle HTTP requests?

This subject is pretty often asked here and the Sun Oracle tutorial is too concise about the subject. So I thought, let's post a CW question and answer about this so that it can if necessary be ...
31
votes
6answers
26k views

Android download binary file problems

I am having problems downloading a binary file (video) in my app from the internet. In Quicktime, If I download it directly it works fine but through my app somehow it get's messed up (even though ...
16
votes
3answers
25k views

How to send PUT, DELETE HTTP request in HttpURLConnection? Looks like not working

I want to know if it is possible to send PUT, DELETE request (practically) through java.net.HttpURLConnection to HTTP-based URL. I have read so many articles describing that how to send GET, POST, ...
13
votes
0answers
838 views

HttpURLConnection buffering rather than streaming, despite setting chunked streaming mode? [closed]

I am using HttpURLConnection to write files, some of which are quite large, to a server. final HttpURLConnection conn = (HttpURLConnection) url.openConnection(); A while back I had issues writing ...
11
votes
6answers
2k views

How to check if InputStream is Gzipped?

Is there any way to check if InputStream has been gzipped? Here's the code: public static InputStream decompressStream(InputStream input) { try { GZIPInputStream gs = new ...
10
votes
3answers
9k views

HttpURLConnection.getResponseCode() returns -1 on second invocation

I seem to be running into a peculiar problem on Android 1.5 when a library I'm using (signpost 1.1-SNAPSHOT), makes two consecutive connections to a remote server. The second connection always fails ...
10
votes
1answer
3k views

IOException: “Received authentication challenge is null” (Apache Harmony/Android)

I am trying to send a GET via Android's HttpURLConnection (which is an org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection), and upon receiving the response, an IOException is ...
8
votes
5answers
1k views

Why do you have to call URLConnection#getInputStream to be able to write out to URLConnection#getOutputStream?

I'm trying to write out to URLConnection#getOutputStream, however, no data is actually sent until I call URLConnection#getInputStream. Even if I set URLConnnection#doInput to false, it still will not ...
8
votes
4answers
6k views

httpclient vs httpurlconnection

Wich are the main differences between the two? thanks
8
votes
2answers
8k views

How to modify the header of a HttpUrlConnection

Im trying to improve the Java Html Document a little but i'm running into problems with the HttpUrlConntion. One thing is that some servers block a request if the user agent is a Java VM. Another ...
6
votes
1answer
308 views

Tomcat, HTTP Keep-Alive and Java's HttpsUrlConnection

I have two Tomcat servers that need to maintain a persistent connection to cut down on SSL handshaking. One server (the proxy) sits in a DMZ while the other one is safely behind another firewall. The ...
6
votes
2answers
225 views

What is the difference between httpconnection on J2ME and HttpUrlConnection on Android (http error 401)

I connect to two servers (PROD is https, test server is http) on my applicaitons. on J2ME: I can connect to this two servers without a problem. on Android I can't connect to test-server. When ...
6
votes
2answers
7k views

How to set Content Type on HttpURLConnection?

Do you know how to set Content-Type on HttpURLConnection? Following code is on Blackberry and I want the Android equivalent: connection.setRequestProperty("content-type", "text/plain; ...
6
votes
1answer
6k views

HttpURLConnection fail on Android

(Solved - see comment below) I have a class that implements a multipart file upload. The code works on every java client I've tried it on except for Android, and it's the only HTTP request code in my ...
5
votes
6answers
5k views

HttpUrlConnection.openConnection fails second time

I know this issue should be fixed with System.setProperty("http.keepAlive", "false"); before openConnection, but that didn't work to me. First try on this code works, second one fails. Even if i try ...
5
votes
1answer
286 views

java httpurlconnection cutting off html

Hey, I'm trying to get the html from a twitter profile page, but httpurlconnection is only returning a small snippet of the html. My code for(int i = 0; i < urls.size(); i++) { URL url = new ...
5
votes
3answers
3k views

HttpsURLConnection stalling out when getInputStream() is called

[Java 1.5; Eclipse Galileo] HttpsURLConnection seems to stall when the getInputStream() method is called. I've tried using different websites to no avail (currently https://www.google.com). I should ...
5
votes
1answer
2k views

Java: HTTP PUT with HttpURLConnection

How do you do do an HTTP PUT? The class I'm using seems to think it is doing a PUT but the endpoint is treating it as if I did a GET. Am I doing anything wrong? URL url = new URL("https://..."); ...
5
votes
4answers
8k views

Connecting to remote URL which requires authentication using Java

How do I connect to a remote URL in Java which requires authentication. I'm trying to find a way to modify the following code to be able to programatically provide a username/password so it doesn't ...
4
votes
3answers
330 views

Preloaded database corruption issue in Android application

I have an android application that begins by downloading a large database to the sdcard (a little over 50mb) in an asynctask. The download code is as follows. HttpURLConnection conexion = ...
4
votes
1answer
675 views

Cannot fetch PDF file as binary data

I'm trying to fetch a PDF file from: URL : https://domain_name/xyz/_id/download/ wherein it doesn't points to a direct pdf file and each unique file gets downloaded interpreting a particular ...
4
votes
3answers
5k views

Java - sending HTTP parameters via POST method easily

I am successfully using this code to send HTTP requests with some parameters via GET method function void sendRequest(String request) { // i.e.: request = ...
4
votes
5answers
2k views

HttpURLConnection implementation question

I have read that HttpURLConnection supports persistent connections, so that a connection can be reused for multiple requests. I tried it and the only way to send a second POST was by calling ...
4
votes
1answer
1k views

Limitation in Java HttpUrlConnection getting content length

Right so, I started my project on creating a Java download manager which is going nicely. The only problem I am seeing at the moment is when i request the content length of the URL. When i use the ...
4
votes
1answer
2k views

Java Authenticator on a per connection basis?

I'm building an Eclipse plugin that talks to a REST interface which uses Basic Authentication. When the authentication fails I would like to popup my plugin's settings dialog and retry. Normally I ...
3
votes
1answer
91 views

Java HTTP full duplex

I have a RESTful web service running on Jersey (GlassFish 3.1.1). This one's a bit unusual - it uses HTTP streaming. The client and server have a long running conversation in which they keep sending ...
3
votes
2answers
237 views

In Java, thread hangs in SocketRead0, what can I do?

I'm developing a webcrawler, but often after a short time executing (minutes), some threads stop to do their work. Running a debugger, I found that it stop in SocketRead0. This occurs when the thread ...
3
votes
2answers
451 views

Use Server cache for 15 minutes

I want to use server cache for 15 minutess so what i have to use in setRequestProperty() ? Please Help me.. Here is my code which i used.. private HttpURLConnection httpCon = null; httpCon = ...
3
votes
1answer
601 views

how to interact with website using HttpURLConnection?

Here is the story: There is a website with some form fields. After filling in the fields the user can click on search. By clicking the search button a list of links will be returned and shown ...
3
votes
1answer
1k views

How to handle HTTP authentication using HttpURLConnection?

I'm writing a Java client that POSTs to a HTTP server that requires authentication. I have to support at least the following three authentication methods: Basic, Digest or Negotiate. Additionally the ...
3
votes
5answers
846 views

How to simulate a site down in Java?

My app accesses info on the web, during my development how do I simulate a site is down in Java ? If the url gets me the page my app processes it, but if a site for some reason is temporarily down, or ...
3
votes
1answer
1k views

android, httpurlconnection error

I'm running the following test Java script from the Android HttpURLConnection docs: URL url = new URL("http://www.android.com/"); HttpURLConnection urlConnection = (HttpURLConnection) ...
3
votes
1answer
1k views

HTTPUrlConnection error (Can't open OutputStream after reading from an inputStream)

I am new to Java and am running into the above mentioned error while using HTTPURLConnection to send multiple post requests on Android. I have written an HTTPTransport class in which I would like to ...
3
votes
1answer
2k views

What could cause socket ConnectException: Connection timed out?

We have a Webstart client that communicates to the server by sending serialized objects over HTTPS using java.net.HttpsURLConnection. Everything works perfectly fine on my local machine and on test ...
3
votes
3answers
496 views

HttpsURLConnection Connection Problems

I'm a problem with a HttpsURLConnection that I can't seem to solve. Basically, I'm sending up some info to a server and if some of that data is wrong, the server sends me a 500 response code. However, ...
3
votes
1answer
206 views

Need help in getting HTML of a website in Java

I got some code from http://stackoverflow.com/questions/3285077/java-httpurlconnection-cutting-off-html and I am pretty much the same code to fetch html from websites in Java. Except for one ...
3
votes
3answers
869 views

HttpURLConnection does not read the whole respnse

I use HttpURLConnection to do HTTP POST but I dont always get back the full response. I wanted to debug the problem, but when I step through each line it worked. I thought it must be a timing issue so ...
3
votes
2answers
712 views

httpURLConnection vs apache commons http

I just wanted to know if any of you had any problems using java default HttpURLConnection class. Some kind of bug that made you switch to apache commons. Or is it just the (ugly) interface that class ...
3
votes
5answers
4k views

Parse Exception: At line 1, column 0: no element found

I have a weird issue. I receive the following error that causes a force-close: org.apache.harmony.xml.ExpatParser$ParseException: At line 1, column 0: no element found at ...
3
votes
3answers
2k views

HttpsURLConnection and intermittent connections

I'm hoping someone could help me out with intermittent connections I'm getting using code with HttpsURLConnection. The code I'm using is below: HttpsURLConnection conn = (HttpsURLConnection) ...
3
votes
2answers
1k views

HttpURLConnections ignore timeouts and never return

We are getting some unexpected results randomly from some servers when trying to open an InputStream from an HttpURLConnection. It seems like those servers would accept the connection and reply with a ...
2
votes
3answers
39 views

How to kill a BufferedInputStream .read() call

I'm working on writing a program to download very large files (~2GB) from a server. I've written the program to be able to resume partially finished downloads, In order to simulate a bad internet ...
2
votes
3answers
78 views

How to switch from HttpURLConnection to HttpClient

this is my first question, so please, bear with me. I have a Swing application, which gets data in a for of XML from a server through HttpURLConnection. Now I'm trying to create a constant ...
2
votes
1answer
150 views

HttpURLConnection fails on Android 4.0

I am using this code to fetch my changelog from the net. InputStream content = null; try { URL url = new URL("http://dreamhawk.blinkenshell.org/changelog.txt"); ...
2
votes
2answers
128 views

JVM-based longpoll/comet client: routers killing idle connections

I currently have a JVM-based network client that does an HTTP long poll (aka comet) request using the standard java.net.HttpURLConnection. I have timeout set very high for the connection (1 hour). For ...
2
votes
3answers
139 views

Following google “I'm feeling lucky” redirect with httpURLConnection

I want to get the URL that the I'm feeling lucky button redirects to (aka the first result). I pass in the url: http://www.google.com/search?&btnI=745&pws=0&q=hello which by now, goes to ...
2
votes
1answer
243 views

How to disable buffering in Java HttpURLConnection for multi-part form post?

(This is for a signed applet and I have decided against HTTPClient to keep my jar very small) I am using HttpURLConnection to successfully upload a file from the user to a server using multi-part ...
2
votes
1answer
1k views

Java HttpURLConnection - POST with Cookie

I´m trying to send a post request with cookies. This is the code: try { String query = URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode("value", "UTF-8"); String cookies ...
2
votes
4answers
526 views

how to access https sites in java

I have to access an https site through my java code. But it returns 401 response. I included my code below. try { URL u = new URL(url); HttpURLConnection http = ...
2
votes
0answers
3k views

Java HttpURLConnection - POST with Cookie - corrupt header?

I'm encountering a very strange behaviour with the following workflow. First I'm creating a GET-HttpURLConnection in order to retrive an HTML page from a given URL. In the header I receive the field ...

1 2 3 4 5 6