Class SOAP::Response
In: lib/soap/netHttpClient.rb
Parent: Object

Methods

new  

Attributes

content  [R] 
contenttype  [R] 
reason  [R] 
status  [R] 

Public Class methods

[Source]

     # File lib/soap/netHttpClient.rb, line 180
180:     def initialize(res)
181:       @status = res.code.to_i
182:       @reason = res.message
183:       @contenttype = res['content-type']
184:       @content = res.body
185:     end

[Validate]