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 8755667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:53:58+00:00 2026-06-13T13:53:58+00:00

I want to call a rest webservice with POST method.Below is the service url

  • 0

I want to call a rest webservice with POST method.Below is the service url and its parameters which I need to pass

 Rest Service: https://url/SSOServer/SSO.svc/RestService/Login

Json Object {"ProductCode":"AB","DeviceType":"android Simulator","UserName":"","ModuleCode":"AB_MOBILE","DeviceId":"device-id","Version":"1.0.0.19","CustomerCode":"w","Password":""}

Here is my post request code:

public void sendHttpPost() throws ClientProtocolException, IOException{
        HttpPost httpPostRequest = new HttpPost(url + buildParams());

        // add headers
        Iterator it = headers.entrySet().iterator();
        Iterator itP = params.entrySet().iterator();
        while (it.hasNext()) {
            Entry header = (Entry) it.next();
            httpPostRequest.addHeader((String)header.getKey(), (String)header.getValue());
        }

        HttpClient client = new DefaultHttpClient();
        HttpResponse resp;

        resp = client.execute(httpPostRequest);

        this.respCode = resp.getStatusLine().getStatusCode();
        Log.i(TAG, "response code: " + getResponseCode());
        this.responsePhrase = resp.getStatusLine().getReasonPhrase();
        Log.i(TAG, "error msg: " + getErrorMsg());
        HttpEntity entity = resp.getEntity();

        if (entity != null){
            InputStream is = entity.getContent();
            //Header contentEncoding = resp.getFirstHeader("Content-encoding");
            //Log.i(TAG, "endoding" + contentEncoding.getValue());
            response = convertStreamToString(is);
            //response = response.substring(1,response.length()-1);
            //response = "{" + response + "}";
            Log.i(TAG, "response: " + response);
            is.close();
        }
    }

My question is how to add json data to this request??

  • 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-13T13:53:59+00:00Added an answer on June 13, 2026 at 1:53 pm

    Use below class

    public class RestClient
    {
        private ArrayList<NameValuePair> params;
        private ArrayList<NameValuePair> headers;
    
        private String url;
    
        private int responseCode;
        private String message;
    
        private String response;
    
        public String getResponse()
        {
            return response;
        }
    
        public String getErrorMessage()
        {
            return message;
        }
    
        public int getResponseCode()
        {
            return responseCode;
        }
    
        public RestClient(String url) {
            this.url = url;
            params = new ArrayList<NameValuePair>();
            headers = new ArrayList<NameValuePair>();
        }
    
        public void AddParam(String name, String value)
        {
            params.add(new BasicNameValuePair(name, value));
        }
    
        public void AddHeader(String name, String value)
        {
            headers.add(new BasicNameValuePair(name, value));
        }
    
        public void Execute(RequestMethod method) throws Exception
        {
            switch (method)
            {
            case GET:
            {
                // add parameters
                String combinedParams = "";
                if (!params.isEmpty())
                {
                    combinedParams += "";
                    for (NameValuePair p : params)
                    {
                        String paramString = p.getName() + "" + URLEncoder.encode(p.getValue(),"UTF-8");
                        if (combinedParams.length() > 1)
                        {
                            combinedParams += "&" + paramString;
                        }
                        else
                        {
                            combinedParams += paramString;
                        }
                    }
                }
    
                HttpGet request = new HttpGet(url + combinedParams);
    
                // add headers
                for (NameValuePair h : headers)
                {
                    request.addHeader(h.getName(), h.getValue());
                }
    
                executeRequest(request, url);
                break;
            }
            case POST:
            {
                HttpPost request = new HttpPost(url);
    
                // add headers
                for (NameValuePair h : headers)
                {
                    request.addHeader(h.getName(), h.getValue());
                }
    
                if (!params.isEmpty())
                {
                    request.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));
                }
    
                executeRequest(request, url);
                break;
            }
            }
        }
    
        private void executeRequest(HttpUriRequest request, String url) throws Exception
        {
    
            HttpParams httpParameters = new BasicHttpParams();
            HttpConnectionParams.setConnectionTimeout(httpParameters,15000);
            HttpConnectionParams.setSoTimeout(httpParameters, 15000);
            HttpClient client = new DefaultHttpClient(httpParameters);
    
            HttpResponse httpResponse;
    
    
    
    
    
                httpResponse = client.execute(request);
                responseCode = httpResponse.getStatusLine().getStatusCode();
                message = httpResponse.getStatusLine().getReasonPhrase();
    
                HttpEntity entity = httpResponse.getEntity();
    
                if (entity != null)
                {
    
                    InputStream instream = entity.getContent();
                    response = convertStreamToString(instream);
    
                    // Closing the input stream will trigger connection release
                    instream.close();
                }
    
    
        }
    
        private static String convertStreamToString(InputStream is)
        {
    
            BufferedReader reader = new BufferedReader(new InputStreamReader(is));
            StringBuilder sb = new StringBuilder();
    
            String line = null;
            try
            {
                while ((line = reader.readLine()) != null)
                {
                    sb.append(line + "\n");
                }
            }
            catch (IOException e)
            {
    
                e.printStackTrace();
            }
            finally
            {
                try
                {
                    is.close();
                }
                catch (IOException e)
                {
                    e.printStackTrace();
                }
            }
            return sb.toString();
        }
        public InputStream getInputStream(){
            HttpParams httpParameters = new BasicHttpParams();
            HttpConnectionParams.setConnectionTimeout(httpParameters,15000);
            HttpConnectionParams.setSoTimeout(httpParameters, 15000);
            HttpClient client = new DefaultHttpClient(httpParameters);
    
            HttpResponse httpResponse;
    
            try
            {
    
                   HttpPost request = new HttpPost(url);
    
                httpResponse = client.execute(request);
                responseCode = httpResponse.getStatusLine().getStatusCode();
                message = httpResponse.getStatusLine().getReasonPhrase();
    
                HttpEntity entity = httpResponse.getEntity();
    
                if (entity != null)
                {
    
                    InputStream instream = entity.getContent();
                    return instream;
                 /*   response = convertStreamToString(instream);
    
                    // Closing the input stream will trigger connection release
                    instream.close();*/
                }
    
            }
            catch (ClientProtocolException e)
            {
                client.getConnectionManager().shutdown();
                e.printStackTrace();
            }
            catch (IOException e)
            {
                client.getConnectionManager().shutdown();
                e.printStackTrace();
            }
            return null;
        }
        public enum RequestMethod
        {
            GET,
            POST
        }
    }
    

    Here is the code how to use above class

    RestClient client=new RestClient(Webservices.student_details);
    JSONObject obj=new JSONObject();
    obj.put("StudentId",preferences.getStudentId());
    client.AddParam("",obj.toString());
    client.Execute(RequestMethod.GET);
    String response=client.getResponse();
    

    Hope this will help you

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to call a rest service written in WCF (which can support both
I have a WCF Web Api Restful webservice. I want every single service call
We are looking for a tool which can call Windows Azure Service Management REST
I want to call a Spring REST WebService with JQuery. I have two methods
I want to call a webservice using google closures, via jsonp since i am
I want to call a method say success(message) of javascript from android activity. I
I want to call a web service that requires an authentication cookie. I have
I want to call an existing commandlet with a dynamic number of parameters. So
I want to call a function which is in another php class that I
I want to call a method of my class inside a lambda expression: void

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.