0
votes
1answer
12 views

Android - Using Connectivity Manager in a Fragment

Okay so i had the problem of network usage in UI Thread and now using AsyncTask. I am using Fragments and have a problem. When putting this line: ConnectivityManager connMgr = ...
0
votes
4answers
37 views

Android network usage on main thread

So, i have been creating and application for a client and got to the network part. I am currently removing the targetSDK tag from the manifest so i dont get a MainThreadException. I have seen people ...
0
votes
0answers
7 views

Unable to set cookies

I`m struggeling to communicating with a server where I have to login. I manage to log in and get cookies with respect to the session. But when I try to make a new request the login-information seems ...
0
votes
1answer
27 views

How do I respond to user if I have no internet connection?

I am trying to write the code that would read a JSONArray but there is a possibility that the internet server is down and the device is not able to connect or then there is no internet connection on ...
0
votes
2answers
22 views

Prevent Android wrapper to website

Our website is mobile ready and provides service to end uses. Someone has developed a wrapper application around the website and published on playstore. I checked the web request header from this ...
0
votes
1answer
14 views

Android fragment http response

I am trying to get data from a php file in the internet using JSON. It works in a normal class but will not work when using a fragment. public static class MagFragment extends Fragment { ...
0
votes
1answer
21 views

Post request to server. Different responses with different defaultClients

When i try to send post request using Java (JVM on Mac) with correct credentials I got correct response code 302 FOUND. But when using the same code on the android, with SAME correct params, i got ...
0
votes
1answer
23 views

Android: Handle PHP response from HTTP post

I am trying to understand how to deal with the response I'm getting from a PHP login page from a HTTP post. Rather than make this question 3 pages long I posted links to both files you will need to ...
0
votes
1answer
25 views

Cannot convert from BasicCookieStore to CookieStore

I am going to use cookies in my application so I don`t have to re-login for each requst I make to the server. Further on I have been looking on examples, and it seems that this is done in each of ...
0
votes
1answer
224 views

Volley Android Networking Library

I have few questions around using Volley in my projects: 1) Is this library can also be used as networking library in normal Java projects also OR is it strictly for Android Only ? 2) I see multiple ...
1
vote
1answer
38 views

Android Asynchronous Http Client (loopj) and the Persistent Cookie Store

I am new to Android Development. Had a few questions on what is the best way to make the libraries mentioned above work optimally. Currently, I have three activities in my app. MainActivity, ...
0
votes
1answer
29 views

Android - Open URL in background

There is this website for example http://website.com You can like stuff there, with a link like this for example: http://website.com/3020/hype. You have to go to that link to get the article (3020) ...
0
votes
1answer
26 views

FileUpload Without Servlet

I have a very small web server in an Android app which I want to POST a file to in a Multipart POST request. I believe that FileUpload makes this possibly however it requires a servlet which I do not ...
1
vote
1answer
17 views

Why i am getting this: getaddrinfo url returned an error?

I am making an htpp connecton inside the onoptionitemselected function. Here is the function: @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle item selection ...
0
votes
0answers
32 views

Android Posting data on a URL

I'm creating Android app and I want to append data to a URL and use HTTP POST. But it's not working. The URL is for a web service. This is my URL with the variables I want to append String url = ...
0
votes
2answers
26 views

HttpPost request with cookies

I need to make two requests to the server. In the first request I send parameter userID = 1 and the server returns a cookie _session_ID. Now I send a second request with no parameters and the result ...
-1
votes
0answers
21 views

grow heap frag case with BufferedReader

While processing multipart/form-data, i am getting error on BufferedReader What should be done to overcome the high memory consumption while handling big files, this error comes at the end of the ...
1
vote
0answers
71 views

Couldn't send the image to the web server database for android

I was instructed to send a report in this format Name=tan ah kow Email=myemail@google.com Contact=81234567 Block=123 Street=Tampines Central Description=Dirty water puddle ...
-2
votes
1answer
43 views

How to generate this kind of JSON response? [closed]

I'm developing an application that needs to connect to a server to get data from a database. Currently, I'm using PHP on my server to return the results of the query. Currently, the URL that my ...
0
votes
0answers
28 views

How do I connect my android app with google app engine?

I am having trouble inputing data into my google app engine data store. I have a button on my app (virtual android), and when pushed this string "Value my user entered" should be inputed into my ...
0
votes
1answer
32 views

Apache Http Client in Android

I'm trying to get the whole html from a web page in Android. In java console aplication I used to do like this: DefaultHttpClient httpclient = new DefaultHttpClient(); String busca = "kindle"; ...
0
votes
2answers
38 views

Is there some way to determine mobile operation system (iOS,Android, etc.) from the http request to the server?

I have RESTful web service and mobile clients (applications)for Android, iOS, WinPhone 8 and BlackBerry. Interaction with the server is implemented by sending http requests with parameters to the ...
0
votes
1answer
29 views

Will the entire picture be load while I just read the first few bytes using Apache HTTP Client,Java,Android

I am using Apache HTTP Client to get file stream from url on Android,I want to check header of the stream to determine whether I should load the entire file, to avoid meaningless cost of network ...
0
votes
2answers
74 views

How to create nanohttpd server in android?

Actually ,I had searched some questions and go to the github. But I'm new ,I cannot understand the example. I want to create the http server in android so I can access it in PC browser. I had ...
-7
votes
0answers
60 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
52 views

java android - download file http authentication

I want to download the content of html and json files from a webserver with http authentication on android. On the browsers I always used http://username:passwort@example.com/path/to/something, which ...
0
votes
0answers
38 views

Android login unauthorized

I work on android project that connect to web service. There a function to show data after user login. Login function call web service using http post method. Here is my login code to connect to ...
0
votes
0answers
33 views

Requests with AndroidHttpClient (newInstance(), close())

I write an application which retrieves data from server (using AsyncTask). In doInBackground I simply request some data (json) and process it. I noticed that the first request takes some time. ...
0
votes
1answer
45 views

Http Request Status 400

I am trying to send a request to a web service on Android and it returns status 400 I know status 400 means bad request, but I cant see anything wrong. How can I fix this? Here is my request code: ...
0
votes
1answer
36 views

How to make Android can access HTTPS request?

Hello every professional, I'm a new in Android development, recently, I just get into Android area, now I encountered a problem when I tried to access server application with HTTPS request (Like ...
-1
votes
3answers
77 views

Sending Json message using gson on android

I want to send a json message over http to a php server.I used the gson library as you can see. Gson gson = new Gson(); String[] data = {"value1", "value2", "value3"}; String json = ...
0
votes
0answers
39 views

Android Set System Proxy

All, I would like to have all internet data go through a proxy that is external to the android device. I am currently able to read the proxy settings using the following void getProxySettings() { ...
0
votes
1answer
88 views

sending data in Post Method from Android Client to Java Servlet

I implement client server code with java android. the problem is I couldn't be able to connect to servlet. Where is my problem? Here is my code: android code: .... HttpClient client=new ...
0
votes
2answers
74 views

Change HTTP post request to HTTPS post request:

I have this method: public static String getReportMetadata (String reportId, String sessionId, String url) throws Exception{ Map<String, Object> jsonValues = new HashMap<String, ...
0
votes
1answer
36 views

Error in accessing php web service

I am having my webservice wrote in php hosted on byethost.com It is working fine on browser and also on "http://www.jsoneditoronline.org/". But when i make a call to service from android application ...
0
votes
2answers
46 views

how to transfer the curl command to http post request

I am using facebook object api to upload images to facebook staging service. api document is here http://developers.facebook.com/docs/opengraph/using-object-api/ in the doucement, it uses curl to ...
0
votes
0answers
25 views

async url getter using SocketChannel with one thread only

so, i'm trying to write http url getter which operates in one worker thread only, the idea is to use Selector & SocketChannel. but since i didn't use these classes before i have some doubts. ...
-5
votes
1answer
50 views

How to create new thread [closed]

i want to create new thread for call my internet access method Setbutton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // ...
-2
votes
1answer
41 views

Periodically send http requests or socket?

I am trying to implement an android IM program, So far i could send messages from my phone to my webserver and get responses over http but i am using a timer thread which runs once in 5 seconds for ...
0
votes
1answer
27 views

send complex objects as post php java

Is it possible to send all my contact numbers via post to php from my class inside eclipse ? or post is only limited to primitive types and I have to find work arounds to send them as a String ?
0
votes
0answers
62 views

Http Request PUT and GET timeout

According to the Apache documentation, the 2 timeouts used on their sockets are the following: CoreConnectionPNames.SO_TIMEOUT='http.socket.timeout': defines the socket timeout (SO_TIMEOUT) in ...
0
votes
0answers
30 views

Getting data returned from a JavaScript function

I am trying to make an android application which connects to a website and shows validity information for a service. I already have successfully connected to a website using HTTP client on android. ...
0
votes
3answers
123 views

How send data to website by using android app

I'm trying to send some data to my website. When the button is clicked, data need to be sent to the web site but I got some errors when I am running the program when I clicked the button this ...
0
votes
0answers
27 views

How to stop AndroidHttpClient from retrying aborted connections?

The AndroidHttpClient is repeating a connection aborted by the server 3 times. How to stop this from happening? I see that those using the DefaultHttpClient use a: ...
0
votes
0answers
57 views

WCF Service(REST) bad request(400) from Android

I've written a WCF service its working fine in browser! and with Fiddler as well. But when I tried to consume this service in android. The status code is 400. I've tried almost everything on my side! ...
0
votes
0answers
25 views

How to make Database insertion failsafe in android?

The above code inserts multiple rows in a Mysql table. I want to make it fail proof,ie if the connection gets down in between insertion, how to roll back everything? for (int i = 0; i < ...
0
votes
0answers
28 views

using HttpClient to log in to hpps server

I'm trying to log in to a website pragmatically through an android app using the HttpClient class. The first page accessed only requires a user name, after submitting a user name the next page should ...
0
votes
0answers
80 views

Stuck with httpclient.execute(httppost) at android 4.2.2 sdk

please anybody can help? i learn to create a login app with android. and i stuck with httpclient.execute result always null n skip to catch after httpclient.execute this my code : `try { ...
-4
votes
0answers
22 views

Android - what are the exception needs to be captured while communication with server? [closed]

I am creating application that communication with server. In client side I should capture the all the errors what are involved in server related and should show proper messages to user. Can anyone ...
0
votes
0answers
87 views

Sending files to REST server using POST - premature FIN/ACK from server

I'm writing an app for Android which is supposed to send files to REST server using POST request. Reading through wireshark logs, it seems, that the server sends FIN/ACK before client sends whole ...

1 2 3 4 5 28