如何使用 XML-RPC.NET 返回多个参数?
由于规范,我正在 XML RPC 中的 ASP.NET 自定义服务器协议中实现。我使用 XML-RPC.NET 库。
我陷入了一种方法的困境,因为自定义协议的规范表明方法 X 有两个输出参数(整数和布尔值)。如何使用 C# 和 XML-RPC.NET 做到这一点?
I am implementing in ASP.NET custom server protocol in XML RPC due to specification. I use library XML-RPC.NET.
I got stuck on one method, because the specification of the custom protocol says that the method X has two output parameters (integer and boolen). How can I do that using C# and XML-RPC.NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很久之后我才回答我自己的问题。有两种可能性。
返回特殊类型 XmlRpcStruct (http://xmlrpc.sourceforge.net/javadoc/redstone/xmlrpc/XmlRpcStruct.html)
返回具有参数名称等属性名称的结构。
I answer my own question after long time. There are two possibilities.
return special type XmlRpcStruct (http://xmlrpc.sourceforge.net/javadoc/redstone/xmlrpc/XmlRpcStruct.html)
return Struct which have properties names like param names.
XML-RPC 响应只有一个
。返回值。要返回两个值,如您的情况,返回值必须是结构体或数组值。An XML-RPC response only has a single <param> return value. To return two values, as in your case, the return value would have to be a struct or array value.