Hi!
I'm trying to navigate through the SOAP Response that I get from Savon using Nokogiri's Gem.
However, I think I'm missing something since:
doc = Nokogiri::XML(response.to_xml)
#response is a Savon::SOAP::Response object
doesn't work because I can't find any nodes when I execute:
doc.at('tagx').text (I always get nil)
I think the .to_xml is not parsing the Savon Response correctly. Am I wrong with that?
Thx!