XML-RPC 标准和 XML 数据类型
我正在研究一个项目的 XML-RPC。如果我错了,请纠正我,但 XML-RPC 似乎没有 XML 数据类型。你应该作为字符串传递吗?或者其他什么?
我错过了什么吗?看来这是 SOAP 的想法。
I was looking at XML-RPC for a project. And correct me if I'm wrong, but it seems like XML-RPC has no XML datatype. Are you supposed to pass as a string? or something else?
Am I missing something? Looks like this was though of with SOAP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据您使用的语言,您可以使用不同的数据类型。这是针对JAVA的。
这里是xml-rpc中的所有数据类型
其中之一是org.w3c .dom.Node。这可以是你的 xml。
虽然恕我直言。您不需要具有 xml 数据类型。查看维基百科上的示例
Depending on the language you are using you can work with different data types. This is for JAVA.
Here are all the data types among xml-rpc
One of them is the org.w3c.dom.Node. Which can be your xml.
Although IMHO. You don't need to have a data type of a xml. Take a look at the example on wikipedia