I use the SOAP pearl in Ruby 1.8.7, and I am looking for functionality similar to PHP, where after the call is completed I can find the XML request and response.
For example, in your own PHP SOAP library, you can call __getLastResponse()and __getLastRequest(). Is there any similar functionality in Ruby?
My goal is to provide an XML context error. In PHP, you must enable "tracing" when building the object. In Ruby, I see that you can configure wiredump, but there seems to be no real “trace” option that naturally digests calls and answers and provides these nice helper methods. Does this mean that I will have to connect to a specific file, mistakenly run this file and respond?
Mike source
share