将 WSDL 与 Ruby 结合使用
我收到此错误:
WSDL::XMLSchema::Parser::UnknownElementError
unknown element: {}HTML
at 'new'
当我使用 Ruby 使用 Web 服务时。下面是代码片段:
require 'soap/wsdlDriver'
wsdl = url
driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
driver.options["protocol.http.basic_auth"] << [url, user_name, password]
url 指向格式良好的 xml。
有什么解决办法吗?
I'm getting this error:
WSDL::XMLSchema::Parser::UnknownElementError
unknown element: {}HTML
at 'new'
when I consume webservices using Ruby. Here is the code snippet:
require 'soap/wsdlDriver'
wsdl = url
driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
driver.options["protocol.http.basic_auth"] << [url, user_name, password]
the url points to a well-formed xml.
Any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以分享
wsdl
文件吗?也许这会帮助我们更好地回答这个问题。无论如何,我建议首先使用
wsdl2ruby
生成驱动程序类。然后将它们加载到您的 Ruby 文件中(通过require
)。示例(来自手册页):Can you share the
wsdl
file? Maybe that would help us answering it better.In any case, I'd suggest generating the Driver classes first using
wsdl2ruby
. And then loding them in your Ruby file (throughrequire
). Examples (from the man pages):如果您在 Web 浏览器中加载 URL,它是否会被重定向到其他位置?
根据我的经验,出现错误“未知元素:{}HTML”的原因之一是 WSDL 解析器尝试解析 HTTP 重定向的 HTML 部分,但未能成功。因此,您应该自己处理重定向(通过代码或手动)并向 WSDL 驱动程序提供最终 URL。
If you load the URL in a web browser, does it get redirected to a different location?
In my experience, one reason the error "unknown element: {}HTML" comes up is the WSDL parser is trying to parse the HTML portion of the HTTP redirect and failing to do so. Therefore, you should deal with the redirect yourself (either in code or manually) and give the WSDL driver the final URL.