解析来自第三方 Web 服务的 Xml 响应
我已经为我的 Rails 2 应用程序安装了 cURB 库,并且我能够将多个 xml 文件作为发布请求发送到 Web 服务的单个 url。除此之外,我还收到来自 Web 服务的 xml 文件形式的收据,我需要由我的应用程序解析该收据,并输出从提交的文件创建的错误。 请有人指导我使用一个好的库和教程来捕获响应和解析 xml 文档。
感谢所有建议。
I have installed cURB library for my rails 2 application and I am able to send multiple xml files to a single url of a web service as a post request. In addition to that I receive an receipt from the web service in an xml file which I need to be parsed by my application and out put the errors that have been created from the submitted file.
Please could some one guide me with a good library and tutorial in capturing the response and parsing the xml document.
All suggestions are appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您已经这样做了,否则我建议您使用 libxml2 库来处理 XML。 libxml2 库在每个主要 Linux 发行版上都作为软件包提供。
下面是一个与 Rails 2.3.14 配合使用的独立示例,展示了如何使用 XML 解析器解析路边对象的结果。然后演示如何使用 XPath 查询从已解析的 XML 文档中选择元素。
提供了 libxml-ruby 的完整文档。
Unless you have already doing so, I recommend you use the libxml2 library for processing XML. The libxml2 library is available as a package on every major Linux distribution.
What follows is a standalone example, that works with Rails 2.3.14, showing how to parse results from curb objects using an XML parser. It then demonstrates how to use XPath queries to select elements from the parsed XML document.
Complete documentation for libxml-ruby is available.