# File lib/soap/netHttpClient.rb, line 230 def self.from_httpresponse(res) status = res.code.to_i reason = res.message contenttype = res['content-type'] content = res.body new(status, reason, contenttype, content) end