I'm using the SOAP gem in Ruby 1.8.7 and I'm looking for a functionality similar to PHP where, after a call is made, I can find the call and response XML.
For example, in PHP's native SOAP library you would be able to call __getLastResponse(), and __getLastRequest(). Is there a similar functionality in Ruby?
My goal is to provide XML context to an error. In PHP you must turn on "trace" when constructing the object. In Ruby, I see you can set up a wiredump, but there does not seem to be a real "trace" option that digests the calls and responses naturally and provides those nice helper methods. Does that mean I'd have to wiredump to a particular file, on error go parse that file, and respond?