Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 0 down vote accepted

I use savon. https://github.com/rubiii/savon You can get the response as a hash, which you should be very happy about. Error handling is easy too, I suggest you check it out.

share|improve this answer

the Soap library offers a wiredump option to output the soap call/response to a buffer (stdout or FileIO/StringIO buffer).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.