简体   繁体   中英

Unable to post JSON data using HttpPost

I am trying to post JSON data to my API. But after execution I'm getting the following result:

{"name":"Corporate","addr":"Unknown","area":"Unknown","cityId":10,"phone":"--","fax":"--","wooqStoreId":1}]

Response 2 >>{"message":"Blank String","result":"Error","resultCode":"RESULT_CODE_002"}
true

The first 2 lines show my JSON string and response 2 is the message I'm getting. It should be a successful message as I'm getting status code 200.

public static boolean pushtoAPI(String url, String jsonObject) {
            DefaultHttpClient client = new DefaultHttpClient();
            HttpPost request = null;
            HttpResponse response = null;
            String postUrl = getHostUrl() + url;

            try {
                    request = new HttpPost(postUrl);


                    StringEntity postingString = new StringEntity(jsonObject.toString());
                    postingString.setContentType("application/json;charset=UTF-8");
                    postingString.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,
                                    "application/json;charset=UTF-8"));

                    request.setEntity(postingString);


                    request.setHeader("Content-type", "application/json");


                    String custom_cookie = ConstantUtil.authCookie(ConstantUtil.getLoginJsessionId());
                    request.setHeader("Cookie", custom_cookie);

                    response = client.execute(request);
                    System.out.println("Response 2 >>" + EntityUtils.toString(response.getEntity()));
                    if (response.getStatusLine().getStatusCode() == 200) {
                            System.out.println("true");
                            return true;
                    }
            } catch (ClientProtocolException e) {
                    e.printStackTrace();
            } catch (IOException e) {
                    e.printStackTrace();
            } catch (Exception e) {
            } finally {
                    request.abort();
            }

            return false;
    }

It looks like its a server side code issue.

Can you show where you are creating this string?

"message":"Blank String","result":"Error","resultCode":"RESULT_CODE_002"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM