Parent

Files

Class Index [+]

Quicksearch

SOAP::StreamHandler

Constants

RUBY_VERSION_STRING

Attributes

filterchain[R]

Public Class Methods

create_media_type(charset) click to toggle source
    # File lib/soap/streamHandler.rb, line 61
61:   def self.create_media_type(charset)
62:     "#{ MediaType }; charset=#{ charset }"
63:   end
new() click to toggle source
    # File lib/soap/streamHandler.rb, line 48
48:   def initialize
49:     @filterchain = Filter::FilterChain.new
50:   end
parse_media_type(str) click to toggle source
    # File lib/soap/streamHandler.rb, line 52
52:   def self.parse_media_type(str)
53:     if /^#{ MediaType }(?:\s*;\s*charset=([^"]+|"[^"]+"))?$/ !~ str
54:       return nil
55:     end
56:     charset = $1
57:     charset.gsub!(/"/, '') if charset
58:     charset || 'us-ascii'
59:   end

Public Instance Methods

reset(url = nil) click to toggle source
    # File lib/soap/streamHandler.rb, line 71
71:   def reset(url = nil)
72:     # for initializing connection status if needed.
73:     # return value is not expected.
74:   end
send(url, conn_data, soapaction = nil, charset = nil) click to toggle source
    # File lib/soap/streamHandler.rb, line 65
65:   def send(url, conn_data, soapaction = nil, charset = nil)
66:     # send a ConnectionData to specified url.
67:     # return value is a ConnectionData with receive_* property filled.
68:     # You can fill values of given conn_data and return it.
69:   end
set_wiredump_file_base(wiredump_file_base) click to toggle source
    # File lib/soap/streamHandler.rb, line 76
76:   def set_wiredump_file_base(wiredump_file_base)
77:     # for logging.  return value is not expected.
78:     # Override it when you want.
79:     raise NotImplementedError
80:   end
test_loopback_response() click to toggle source
    # File lib/soap/streamHandler.rb, line 82
82:   def test_loopback_response
83:     # for loopback testing.  see HTTPStreamHandler for more detail.
84:     # return value is an Array of loopback responses.
85:     # Override it when you want.
86:     raise NotImplementedError
87:   end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.