I migrated to 1.8.7 Ruby and now I keep getting this error and it is driving me crazy. I try installing it manually using gem install soap4r and also include it as a config.gem 'soap4r' and rake gem:install and still nothing....
It's blowing up on my heroku install too....
...
I have a WSDL file and want to load it into ruby somehow so I can navigate through it.
Anyone know how to do this?
...
I've been trying to figure out how to consume a SOAP service in Rails using certs, but currently my question is much more basic. In other tutorials I've seen a bunch of references to a property file called "soap/property" I just don't understand what that is (a standard text properties file?) and where it goes (/lib/soap/property?)
An...
I have a connection open and am doing:
values = [1, 'test']
connection.return_response_as_xml = true
response = connection.send(method_name.to_sym(), *values)
and that works fine and all. but I want to see the raw request sent across... is this possible?
...