HttpClient client = new HttpClient();
PostMethod method = new PostMethod(SMS_SERVICE_URL);
String dataParameter = getDataParameter(from, toList, text, userName, password);
Above is the code for which iam able to send sms message in english using a third party API but iam unable to send sms in regional language like hindi .Any help would be greatly appreciated .
If i send hindi message to the API iam not able to get the SMS also i have logged the message in logger on server getting ????????! ??????? characters in logger files.
Please comment if anything else required for further understanding.
Thanks in advance