Is there any XML-RPC client for windows for C++ with UTF-8 support?
开发者_高级运维I looked at XMLRPC++, but it doesn't support any encoding.
You may want to take a look at gSoap.
http://www.cs.fsu.edu/~engelen/soapdoc2.html#tth_sEc19.1
One of the reasons UTF-8 was created was to be transparent to most existing applications, and so will xmlrpc++ though I guess you get in trouble if you enable Unicode character set in the visual studio project.
If you feed xmlrpc++ UTF-8, it'll pass it through, same thing if you receive UTF-8. (And remember that all ascii characters encode as themselves in UTF-8)
精彩评论