JSONObject response = webResource.type(MediaType.APPLICATION_FORM_URLENCODED_TYPE).post(JSONObject.class, formData);
System.out.println("answer: "+response.toString());
ObjectMapper mapper = new ObjectMapper();
List<AcoustIdWsResult> results = null;
try {
results = mapper.readValue(response.getString("results"), new TypeReference<List<AcoustIdWsResult>>(){});
} catch (JsonParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JsonMappingException e) {
// TODO Auto-generated catch block