在 Java 中将 XML-RPC 生成为字符串
这就是我想要做的:我有一个方法名称和参数类型,并且我希望将 XML-RPC 作为字符串(而不是发送它!)。
像这样... String someGreatThing.generate("bla.doStuff", String, int) 这就是我想要的:
<?xml version="1.0"?>
<methodCall>
<methodName>bla.doStuff</methodName>
<params>
<param>
<value><string></string></value>
</param>
<param>
<value><int></int></value>
</param>
</params>
</methodCall>
我只需要字符串。
知道某个图书馆是否可以做到这一点吗?最好是来自 Apache 的 XML-RPC 库,因为无论如何我都会使用它们。
谢谢你!
This is what I want to do: I have a method name and parameter types and I want to have the XML-RPC as a String (and not send it!).
Like this... String someGreatThing.generate("bla.doStuff", String, int) and this is what I want to have then:
<?xml version="1.0"?>
<methodCall>
<methodName>bla.doStuff</methodName>
<params>
<param>
<value><string></string></value>
</param>
<param>
<value><int></int></value>
</param>
</params>
</methodCall>
I just need the String.
Any idea if some library can do that? Preferably the XML-RPC libs from Apache, because I use them anyway.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XStream 执行类似的操作: http://x-stream.github.io/ 。但它具有更通用的目的,而不是特定于 XML-RPC 的。
You can do something like that with XStream: http://x-stream.github.io/ . But it is more general purpose, not XML-RPC specific.