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.
0
votes
0answers
40 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
29 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
21 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
65 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
51 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
13 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
42 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
47 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
36 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
42 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
77 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
34 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
77 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
62 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
52 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
52 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
53 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
44 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
27 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
54 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
161 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
46 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
35 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
38 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
54 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
47 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
67 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
31 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
53 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
77 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
50 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
37 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
117 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
83 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
74 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
61 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
66 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
64 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
46 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
187 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
90 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
275 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
85 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:
...
0
votes
1answer
88 views
Send UTF-8 chars via HttpURLConnection failing
I have spent half Sunday on this now I need help:
I want to send a String including special chars UTF-8 encoded to a server using Java HttpURLConnection. The correct encoding of the chars fails.
...
1
vote
1answer
130 views
Receving data form using HttpURLConnection.getOutputStream,chinese encoding wrong(The same code,why the result is not the same?)
everybody:
I try to make a httpRequest for getting data,there's something wrong while response contain chinese characters.I got a String with HttpURLConnection.getInputStream()(see /test code./),I ...
1
vote
1answer
546 views
HttpURLConnection Error opening trace file: no such file or directory
I am trying to connect to an url to get geopoints to draw a route in a mapview for my android app. However I get this error when I try to connect to the url to get the points.
URL url = new ...
0
votes
0answers
357 views
HttpURLConnection App Engine Java Example for POST Request does not work
I am trying to do a POST request using urlfetch under an app engine application.
I have followed the instructions (and code) extracted from the simple example found at the App Engine documentation ...




