SOAP - 需要了解我收到的错误
我正在尝试初始化一个名为 proxy 的变量,如下所示:
proxy = Savon::Client.new "http://192.168.1.1:8080"
问题是,当我运行代码时,我只收到错误:
NameError: uninitializedconstant NameOfTheClass::Savon
感谢您的帮助!
PD:我正在使用 Ruby 1.9.2
PD2:我正在尝试从控制台运行它。
I'm trying to initialize a variable called proxy like this:
proxy = Savon::Client.new "http://192.168.1.1:8080"
The thing is, when I run my code, I only get the error:
NameError: uninitialized constant NameOfTheClass::Savon
Thanks for any help!
PD: I'm using Ruby 1.9.2
PD2: I'm trying to run this from console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能找到了版本 < 的文档0.8.x。
不幸的是语法已经改变了!看看这里: https://github.com/rubiii/savon/blob/ master/README.md
Savon 现在使用块。
您的示例现在应该如下所示
<代码>
<代码>
You found probably the documentation for versions < 0.8.x.
Unfortunately the syntax has changed! Have a look here: https://github.com/rubiii/savon/blob/master/README.md
Savon works with blocks now.
Your example should now look like this