How do I deserialize this string that I sent as a json object in asp.net webservice.
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("http://server/NCO/webservice.asmx/GetNRIC");
post.setHeader("Content-type", "application/json");
post.setHeader("Accept", "application/json");
JSONObject obj = new JSONObject();
obj.put("ic", "s1111111b");
post.setEntity(new StringEntity(obj.toString(), "UTF-8"));
HttpResponse response = client.execute(post);