C++支持 Windows 的 xml-rpc 客户端,支持 utf-8
是否有适用于 Windows 且支持 UTF-8 的 C++ XML-RPC 客户端?
我查看了 XMLRPC++,但它不支持任何编码。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想看看 gSoap。
http://www.cs.fsu.edu/~engelen/ soapdoc2.html#tth_sEc19.1
You may want to take a look at gSoap.
http://www.cs.fsu.edu/~engelen/soapdoc2.html#tth_sEc19.1
创建 UTF-8 的原因之一是对大多数现有应用程序透明,xmlrpc++ 也是如此,但我猜如果在 Visual Studio 项目中启用 Unicode 字符集,您会遇到麻烦。
如果您提供 xmlrpc++ UTF-8,它会传递它,如果您收到 UTF-8,同样的情况。 (请记住,所有 ascii 字符在 UTF-8 中都编码为自身)
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)