2
votes
5answers
50 views
need help with bizarre java.net.HttpURLConnection behavior
I am attempting to download a jpg using HttpURLConnection and am encountering a very peculiar bug.
Here's the url:
http://www.vh1.com/sitewide/promoimages/shows/m/my%5Fantonio/vid …
0
votes
6answers
120 views
Use HTTPClient or HttpUrlConnection?
We're implementing a REST client on JRE 1.4.
Seems two good options for a client REST framework are HttpClient and HttpUrlConnection.
Is there a reason to use HttpClient over …
0
votes
2answers
392 views
authenticate with ntlm (or kerberos) using java UrlConnection
I need to consume a rest web service with java, passing the credentials of a domain user account.
right now I'm doing it with classic asp
set xmlHttp = server.createObject( "msx …
0
votes
4answers
510 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/passw …
0
votes
1answer
32 views
How do I differentiate between request and response in an HTTPURLConnection?
Hi I need to evaluate if a server supports gzip compression.
Therefore I want to set gzip as Accept-Encoding in my request and evaluate if the response of the server containts "Co …
1
vote
3answers
279 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 conn …
0
votes
0answers
15 views
Check for response codes in URL Connection to determise if a user is authorized to view a document
Hi, We have URLs to a list of documents and we would like to check if a user is authorized to view those documents. Since the server requires NTLM authentication, we are using the …
0
votes
2answers
39 views
Check if a user has access to a document using URLConnection
Hi,
We have URLs to a list of documents and we would like to check if a user has access to those documents. These documents require user login and password to access. Since the ser …
0
votes
2answers
64 views
Disconnect URL connection based on file size or time - Java
Hi, We have a requirement to download multiple documents, zip them and allow user to download zip file. The documents are downloaded sequentially and the number of documents can be …
1
vote
2answers
56 views
How do I count the number of 100 Continues the server sent me?
I am using Apache Commons HttpClient 3.1, and I found that HttpURLConnection from Sun drops the 100 Continues from the stream.
So therefore I don't seem able to get the 100 Contin …
0
votes
2answers
119 views
Does HttpsURLConnection.getOutputStream() retry on connect timeout?
I was having a problem where HttpURLConnection.getOutputStream() took 2-3 seconds. I set the connect timeout using HttpURLConnection.setConnectTimeout, expecting a SocketTimeoutExc …
0
votes
1answer
62 views
IOException: “Received authentication challenge is null” (Apache Harmony/Android)
Hi,
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 respon …
1
vote
2answers
228 views
How to optimally clean up outgoing UrlConnection objects in high use multithreaded environment?
I have a use case where a servlet (that has reasonably high concurrent use) makes an outgoing URLConnection to retrieve some data REST style as part of its normal server-side proce …
2
votes
1answer
620 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 HTT …
2
votes
2answers
124 views
Is there any thing similar to HttpURLConnection in Perl?
I want to create an HTTPURLConnection to a PHP script and get the HTTP response returned by the script. Is there a way to do this in Perl?
In short i want Perl equivalent to follo …
