HiI need to call a web service with Japanese characters, basically i need to
read data from database where data will be in Japanese, then create an java
object file and then call web service with this java object.
Currently when i convert this java object to XML file, i can see
the Japanese characters, but in the web service i get garbage data.
what may be the issue,
In my class i am converting data from database into UTF-8 as below
String data = new String(tdatafromDatabase.getBytes("UTF-8"));Ashish
