I have a php web service that accepted unicode string like this:
$server = new soap_server;
$server->soap_defencoding = 'UTF-8';
$server->decode_utf8 = true;
For php client, I just set $client->decode_utf8 = true; and it worked fine. But the problem is when I tried in java client (use ksoap2), I don't know how to set unicode character like php. Is there any way to do this?
Any help would be appreciated.