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.

learn more… | top users | synonyms

0
votes
0answers
22 views

HttpUrlConnection automaticaly decode the '&'

I am trying to pass string of XML data which contains '&' from applet to servlet using HttpUrlConnection. Although I pass this string after encoding & ,request at servlet side automatically ...
0
votes
1answer
20 views

Ask for credentials during HttpURLConnection without Interrupt the thread

Recently i came across the following issue: I have a webview that loads data in a asynchronous way from a HttpURLConnection, say now that you need from the user to provide credentials so you move on ...
0
votes
0answers
16 views

Android - Express.js cookie is not properly sent after being restored

I am working on an android app using the express.js framework on the server side. I have a problem getting persistent login to work. This is the start of the MainActivity's onCreate: protected void ...
0
votes
0answers
22 views

Android responseCode 400 if Android-version lower than 4

somebody knows why I get the ResponseCode 400 on android 2.x ? In Android 4.x it works and the server returns 200. URL url = new URL(url_in); URI uri = new URI(url.getProtocol(), ...
0
votes
0answers
48 views

HttpUrlConnection overhead

I am developing an application that splits http trafic across two devices. As such, device A sends HEAD requests to specific resources (images) on a webpage, and then device A downloads some of these ...
0
votes
2answers
37 views

Where check/set timeout when java.net.UnknownHostException is thrown?

Where check/set timeout when java.net.UnknownHostException is thrown? Occasionally my code tries to connect to a non-existing location and throws java.net.UnknownHostException what is acceptable case ...
0
votes
1answer
32 views

java httpurlconnection http put error 400

I took the HTTP PUT code pretty much verbatim from this example from stackoverflow -- I am attempting to place an XML file into an ExistDB rest interface but I receive "400 Bad Request" values from ...
0
votes
0answers
73 views

Django - empty QueryDict in request.POST when posting from Android app using HttpURLConnection

The specific goal I am trying to achieve is to upload an image (any file eventually) from an android app using the captured image's uri to a django server (currently running on localhost). So far I ...
-7
votes
0answers
65 views

How to upload zip file from android to web server?

I have xxx.zip file in my app internal storage. i want to upload this zip file into web server when user click the button. that zip file contains text files. i need to send userid and filename when ...
0
votes
0answers
15 views

HttpURLConnection in Google AppEngine throws java.net.URISyntaxException when escaped unicode character is present in the URL

I am creating an application in Google AppEngine which makes many HTTP requests using HttpURLConnection. This works fine for most URLs but when I came across ...
0
votes
2answers
50 views

HTTP URL connection: display specific line of website source code

Im building my first application and im kind of new to this but: I'm sending HTTP Get request using HttpURLConnection. Here's my Activity code: import java.io.BufferedReader; import ...
-1
votes
0answers
51 views

HTTPURLConnection send/receive JSON string

I have a desktop app which is in Java and inserts data into db every 10 mins. The latest data needs to be sent to the web app which visualizes the data. I am using HttpURLConnection in order to ...
-2
votes
0answers
48 views

“java.io.IOException: Server returned HTTP response code: 422 for URL”

when i running the below program i am getting following error java.io.FileNotFoundException: https://api.newrelic.com/api/v1/accounts/661ecb1e9c98dab97f2e646192bef6cd1a4b6dfc/metrics.xml at ...
0
votes
0answers
46 views

OutputStreamWriter writes special characters in HttpURLConnection output stream

There is something strange happening when I write a string to HttpURLConnection output stream. I set the Content-Length request property for HttpURLConnection object as the code below shows, but when ...
0
votes
0answers
83 views

Android: EOFException on empty response

I'm using the following code. (ServiceResponse is an object just to wrap the response) protected ServiceResponse executeHttpPostRequest(URL url, Map<String, String> parameters) throws ...
1
vote
0answers
42 views

Java Connecting URL and downloading a zip but when extracting the zip it's not properly downloaded

I am sending a request XML to the URL and receiving a zip file to the given path. Sometimes I'm facing troubles when the bandwidth is low this zip file, most likely 120MB size is not getting ...
1
vote
2answers
91 views

HttpURLConnection.getResponseCode() freezes execution/doesn't time out

I'm writing an Android app that connects to a cPanel server (Apache 2.2.22) page which is password protected. When the authentication credentials are correct, I have no problem connecting. However, ...
0
votes
2answers
71 views

Android Not Responding throws in Service

I'm developing an app that should track user location from time to time (e.g. every 20 seconds) and at each minute send those locations to a web services. To achieve that, I've created a producer ...
-4
votes
0answers
56 views

Android HttpUrlConnection getInputStream throws a NullPointerException [closed]

On the following line I get a NullPointerException error in Nexus s v4.1.2 but no problem in samsung galaxy s2 v2.3.4.when I change URL to http://www.google.com, it works, but not my personal web ...
0
votes
1answer
63 views

Why does HttpURLConnection.getResponseCode() throws IOException?

I can see that getResponseCode() method is just a getter Method that returns the statusCode already set by the a connect action that happened before. So in this context why does it throw an ...
0
votes
1answer
64 views

HttpUrlConnection getOutputStream have plroblem

i make a android application and used for HttpUrlConnection, POST method, HoloEverywhere Library but i have problem... why happen to problem that i don't know... im think that getOutputStream() error ...
0
votes
1answer
47 views

SOAP to XML conversion and sending it in response object

I am new to webservices,some how i managed to host a service with metro.With the help of SOAP UI and also httpUrlConnection object i am able to get SOAP response.But my next task is to send a response ...
0
votes
1answer
31 views

android HttpsURLConnection not initializing

I have the following code for connecting to a url. My problem, is that when I run it in debug, I see that connected = false and none of the other parameters that I am trying to set are working (such ...
0
votes
1answer
28 views

Multiple HttpExchanges back-to-back, cleaning up from the first exchange using com.sun.net.httpserver.HttpServer

I have two HttpURLConnections going from a client to a server. This is not a typical HttpServer, I'm coding both the client and the server but can only use port 80/443 (for testing any port works). ...
0
votes
1answer
57 views

How to Reuse HttpUrlConnection? [duplicate]

I am interested in reusing an HttpUrlConnection (as part of a statefull protocol between server and client that I'm developing). I know that there is an Connection=keep-alive header for persistent ...
0
votes
0answers
200 views

HttpURLConnection java.io.FileNotFoundException

I am currently using the code below. I am new to this feature so it may just be something simple but I can not seem to get this to work with my server. The code below works great if I connect to seems ...
-1
votes
0answers
18 views

incoming calls cause the crash of the app

My app uses network to get news and bitmaps when loading the text and bitmaps if I receive a call and I answer it. Next thing you need know is that the app doesn't respond anymore and sometimes it ...
0
votes
3answers
53 views

Declaring a variable and its type in a conditional statement

I'm trying to do this in Java: if(this.ssl == true) { HttpsURLConnection connection = (HttpsURLConnection) new URL(address).openConnection(); } else { HttpURLConnection connection = ...
0
votes
1answer
37 views

“document: null” from DocumentBuilderFactory on an XML response?

I am creating jUnit tests to check that my proxy servlet which fetches XMLs for a client application returns them without corruption or any changes. In my jUnit class I have a doGet method which ...
0
votes
1answer
42 views

Keep a permanent connection (same LAN) in the background, without using GCM

I need to keep an open connection in the background, even when the app is not running. It's not possible to use GCM because the connection will be in the same LAN as the server, and the device may not ...
0
votes
1answer
61 views

How to handle cookies in httpUrlConnection using cookieManager

I have a server request that returns multiple cookies, like that: This is how I'm storing these cookies to the cookieManager: HttpURLConnection connection = ... ; static java.net.CookieManager ...
1
vote
1answer
57 views

Using setReadTimeout in HttpURLConnection with proxy settings

I am trying to connect to the internet with the user defined proxy settings. I have set the setReadTimeout to 5 seconds. If the configured proxy is not correct, then we wont be able to connect to ...
0
votes
1answer
74 views

Multipart base64 image posting in java

I have a httpurlconnection code that is meant to post data to server. When I am trying to send small data it's ok but whene i try to send a base64 image string the string is not received properly at ...
0
votes
0answers
32 views

How to download a page in java and save it to UTF-8?

This function sends a request to server in UTF8 and receives in UTF8: public String downloadPage(String _url, String _reqm, String _params) { try { if (_reqm == null || (_reqm == ...
2
votes
1answer
55 views

Java URLConnection - When do I need to use the connect() method?

I have a problem to understand the meaning of the connect() method in the URLConnection class. In the following code, if I use the connect() method, I get the same result if I don't use it. Why (or ...
0
votes
0answers
82 views

Android Request to server returns 400 - Bad Request

So I'm trying to POST data to a server using HttpURLConnection. But I keep getting back Http - 400 Bad Request as a response. Here is what I'm doing: String jsonString = ...
1
vote
1answer
51 views

Second HttpUrlConnection hangs on real device

I'm using basic-http-client in my longpolling library SignalA. basic-http-client is based on HttpUrlConnection. When running in the emulator is it possible to have one longrunning post-request open ...
1
vote
0answers
38 views

Standard Network Request

I was wondering if there is some sort of generic way to make network calls with Java / Android, as I'm struggling with my current tactics. I'm currently trying this: public static File ...
0
votes
1answer
125 views

Android HttpURLConnection with fiddler: IOException: socket is closed

I set up Fiddler2 for Android emulator, it works, I can see the HTTPS traffic through Android browser, but I cannot connect to HTTPS server with my code using HttpsURLConnection: // use Fiddler's ...
0
votes
1answer
93 views

Setting “User-Agent” parameters for URLConnection for querying Google from a Java application

I am trying to get the results back from a Google query, in Java as follows: String urlquery = "https://www.google.com/search?hl=en&gl=us&tbm=nws&q=apples&oq=apples"; URL url = new ...
3
votes
1answer
75 views

How to monitor the size of the data sent by HttpURLConnection?

I tried to display the size of the data already sent by the OutputStreamWriter but seems the write method is kind of like asynchronized which means if the file is 60M and the upload rate is 200K/s, ...
0
votes
1answer
65 views

How to avoid app from crashing in synchronous request

I am posting some JSON data to a server using JSONKit. Before posting the data, I am checking the internet connection. But if the internet connection is lost after sending request, after this line: ...
0
votes
1answer
40 views

Why is HttpUrlConnection not closing?

Why is this connection not closing. When it makes an initial connection, it then sends randomly like 1 or 2 subsequent request, or it might send empty strings like {}. And the server isn't giving any ...
1
vote
1answer
69 views

Persistent connection for repeated API calls

My android application is calling authenticated webservice API to download and sync records from server based on type of data. For example: Application calls the API in loop for different content ...
0
votes
1answer
65 views

Android device is unable to connect to webpage with HttpURLConnection

I am developing an android app which whould take the source code from a webpage and then parse it. I am able to get this to work as long as my device is connected to the pc on which it is developed, ...
0
votes
3answers
49 views

Android HTTP URLConnection..setConnectTimeout(TIME_OUT);

I 'm a android newbie, i 'm following this tutorial:http://www.9android.net/android-http-tutorial/. But i don't understand the TIME_OUT value. Some one can explain to me and tell me a proper value ...
0
votes
1answer
215 views

Setting setChunkedStreamingMode in HttpURLConnection fails to deliver data to server

My server version is as follows on my dev machine: Apache/2.2.21 (Win32) mod_fcgid/2.3.6 I have been testing HttpURLConnection as my project requires easy streaming capabilties. I have read a ...
0
votes
1answer
91 views

Invalid method signature when sending HTTP POST request

Ok this is really frustrating. I'm using my API key perfectly fine. Authentication does just fine, token is generated fine, session key is also OK. But when I run the playlist.create, the playlist is ...
1
vote
2answers
321 views

How to read XML returned by HTTP POST request?

NOT a duplicate of my other question. I am sending a POST request like this: String urlParameters = "a=b&c=d"; String request = "http://www.example.com/"; URL url = new ...
0
votes
1answer
89 views

String object vs. string literal in OutputStreamWriter in Java

I'm making requests to a HTTP server sending JSON string. I used Gson for serializing and deserializing JSON objects. Today I observed this pretty weird behavior that I don't understand. I have: ...

1 2 3 4 5 15