如何调用XML API
我有一组 XML API ( XSD ) 文件。我想从 C++ 和 C# 程序中调用它们。这是两个不同的应用程序。
我想通过调用api来获取数据。我还想了解一些有关 XML RPC 的信息,
有人可以告诉我如何从 C++ 和 C# 调用 XML api 吗?
谢谢 苏杰
I have a set of XML API's ( XSD ) files. I want to call them from C++ and C# programs. These are two different applications.
I want to get data by calling the api. I would also like to know something about XML RPC
Can someone please let me know how do I call the XML api from C++ and C#.
Thanks
Sujay
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 C#,请使用
中的类System.XML
命名空间。维基百科将告诉您有关 XML-RPC 的信息。
我不知道 C++ XML api 是什么。
With C#, use the classes in the
System.XML
namespace.Wikipedia will tell you about XML-RPC.
I don't know what the C++ XML api is.
默认情况下,C++ 不包含任何 XML 处理库。如果您想要该功能,您将需要一个库。一个这样的库是 http://xerces.apache.org/xerces-c/ / http://xml.apache.org/xalan-c/。它应该可以在大多数平台上运行,没有太多麻烦。
C++ does not have any XML processing libraries included by default. If you want the capability, you will need a library. One such library is http://xerces.apache.org/xerces-c/ / http://xml.apache.org/xalan-c/. It should run on most platforms without too much hassle.