Fiends, i sending JSON String with three parameters to java web service method. but on java side method cant print in console. Please guide me what i have to change from below code?
String json = ""; HttpParams httpParams = new BasicHttpParams(); HttpConnectionParams.setConnectionTimeout(httpParams, 10000); HttpConnectionParams.setSoTimeout(httpParams, 10000); HttpClient httpclient = new DefaultHttpClient(); // Prepare a request object HttpPost httpPost = new HttpPost(url); HttpGet httpGet = new HttpGet(url); JSONObject jsonObject = new JSONObject(); try { jsonObject.put("name", "ghanshyam"); jsonObject.put("country", "India"); jsonObject.put("twitter", "ghahhd"); json = jsonObject.toString(); StringEntity se = new StringEntity(json); se.setContentEncoding("UTF-8"); se.setContentType("application/json"); // 6. set httpPost Entity System.out.println(json); httpPost.setEntity(se); httpGet.se // 7. Set some headers to inform server about the type of the content //httpPost.addHeader( "SOAPAction", "application/json" ); httpPost.setHeader("Accept", "application/json"); httpPost.setHeader("Content-type", "application/json"); //String s = doGet(url).toString(); Toast.makeText(getApplicationContext(), "Data Sent", Toast.LENGTH_SHORT).show();