soap4r

no such file to load -- soap4r -- why?

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.... ...

Ruby: How to load a WSDL file into some data structure?

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? ...

What is the format and location of soap/property using Soap4r in Rails 2.3.x?

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...

Ruby: Soap4r: How do I get the raw request sent to my soap server?

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? ...