oobjective-C 的数据操作消耗
我有一个非常简单的 WCF 服务操作 GetCurrentBalance。它返回一个小数。
我还在项目中包含了 odatagen 生成的实体文件,其中包含返回字符串的 GetCurrentBalance 操作的实现。调用此方法会返回一个 XML 字符串,其中包含所需的值。
我还尝试在生成的类中使用executeServiceOperation 方法并将操作名称作为参数传递,返回的值再次是相同的XML 字符串。
有没有办法提取这个值?或者我必须为其编写一个自定义解析器?
提前致谢。
I have a really simple WCF service operation GetCurrentBalance. It returns a decimal.
I also have the odatagen generated entity files included in the project, which contains an implementation of the GetCurrentBalance operation returning a string. Calling this method returns me an XML string with the desired value in it.
I also tried using executeServiceOperation method in the generated class and pass in the operation name as a parameter, the returned value again is the same XML string.
Is there a way to extract this value? Or do I have to write a custom parser for it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有更多信息,如果返回的值是格式化的 XML 字符串,您可以尝试使用 XPath 查询提取值,请查看 这个 让您开始
Without further informations, if the returned value is a formatted XML string you may try extracting the value using XPath queries, have a look at this to get you started