Class SOAP::StreamHandler::ConnectionData
In: lib/soap/streamHandler.rb
Parent: Object

Methods

new  

Attributes

is_fault  [RW] 
receive_contenttype  [RW] 
receive_string  [RW] 
send_contenttype  [RW] 
send_string  [RW] 
soapaction  [RW] 

Public Class methods

[Source]

    # File lib/soap/streamHandler.rb, line 33
33:     def initialize(send_string = nil)
34:       @send_string = send_string
35:       @send_contenttype = nil
36:       @receive_string = nil
37:       @receive_contenttype = nil
38:       @is_fault = false
39:       @soapaction = nil
40:     end

[Validate]