Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8043769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T05:00:54+00:00 2026-06-05T05:00:54+00:00

Can anyone tell me which is the best, ease and flexible method to consume

  • 0

Can anyone tell me which is the best, ease and flexible method to consume web service from android? I’m using eclipse.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T05:00:56+00:00Added an answer on June 5, 2026 at 5:00 am

    Since you only care about consuming a webservice, I assume you already know how to send data from the web server. Do you use JSON or XML, or any other kind of data format?

    I myself prefer JSON, especially for Android.
    Your question still lacks some vital information.

    I personally use apache-mime4j and httpmime-4.0.1 libraries for web services.

    With these libraries I use the following code

    public void get(String url) {
        HttpResponse httpResponse = null;
        InputStream _inStream = null;
        HttpClient _client = null;
        try {
    
            _client = new DefaultHttpClient(_clientConnectionManager, _httpParams);
            HttpGet get = new HttpGet(url);
    
            httpResponse = _client.execute(get, _httpContext);
            this.setResponseCode(httpResponse.getStatusLine().getStatusCode());
    
            HttpEntity entity = httpResponse.getEntity();
            if(entity != null) {
                _inStream = entity.getContent();
                this.setStringResponse(IOUtility.convertStreamToString(_inStream));
                _inStream.close();
                Log.i(TAG, getStringResponse());
            }
        } catch(ClientProtocolException e) {
            e.printStackTrace();
        } catch(IOException e) {
            e.printStackTrace();
        } finally {
            try {
                _inStream.close();
            } catch (Exception ignore) {}
        }
    }
    

    I make a request via _client.execute([method], [extra optional params])
    The result from the request is put in a HttpResponse object.

    From this object you can get the status code and the entity containing the result.
    From the entity I take the content. The content would in my case be the actualy JSON string. You retrieve this as an InputStream, convert the stream to a string and do whatever you want with it.

    For example

    JSONArray result = new JSONArray(_webService.getStringResponse()); //getStringResponse is a custom getter/setter to retrieve the string converted from an inputstream in my WebService class.
    

    Depending on how you build your JSON. mine is nested deeply with objects in the array etc.
    But handling this is basic looping.

    JSONObject objectInResult = result.getJSONObject(count);//count would be decided by a while or for loop for example.
    

    You can extract data from the current JSON object in this case like:

    objectInResult.getString("name"); //assume the json object has a key-value pair that has name as a key.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone tell me the best way to call FoxPro 9 code from a
Anyone can tell me which one is better (JAXB or Apache XMLBeans) taking in
can anyone tell me how to select data by date in MS.ACCESS database using
Can anyone tell me, how to make shadow, using UIPageViewController, around of my background
Can anyone tell me the best way to ensure asp.net sites look the same
Can anyone tell me why this code would not be working? $('body').on('test', function() {
Can anyone tell me why the following code fails to submit the form into
Can anyone tell me how I can correctly pass my application context to my
Can anyone tell me how to identify a particular background process (i.e., Already running
Can anyone tell why my jQuery script is not loading here <?php wp_enqueue_script(jquery); ?>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.