Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.