1

I am using ruby version 2.0.0, and Using soap4r (1.5.8). But i couldn't able to load require "soap/wsdlDriver".

I am trying to use with in rails console,

irb(main):001:0> require 'soap/rpc/driver'
=> false
irb(main):002:0> require 'soap/rpc/driver'
=> false
irb(main):003:0> require "soap/wsdlDriver"
=> false
Pez
  • 1,091
  • 2
  • 14
  • 34
  • 1
    `require` returns false when the library has been loaded. Check if you can use the utility in soap4r directly. – Arie Xiao Nov 06 '13 at 07:22

1 Answers1

2

The standard soap library was removed from Ruby. You will need to find an other solution. Perhaps this gem: https://rubygems.org/gems/soap4r-ruby1.9

Or you refactor you code to use a more up-to-date client. Find a list here: https://www.ruby-toolbox.com/categories/soap

spickermann
  • 100,941
  • 9
  • 101
  • 131