简体   繁体   中英

C++ xml-rpc client with utf-8 support for windows

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)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM