I have rest webservice that it's programmed in Visual Studio Asp.net project. i want to send Array of String that contain Hebrew language to Android project
In visual studio i only write return array;
In Android i write:
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet();
request.setURI(new URI(url));
HttpResponse response = client.execute(request);
HttpEntity responseEntity = response.getEntity();
xml = EntityUtils.toString(responseEntity7, HTTP.UTF_8);
return xml;
but the problem is that in the Android project i get "??????" instead of Hebrew words i guess the problem is in the encoding.
Thanks