| Class | SOAP::HTTPStreamHandler |
| In: |
soap/streamHandler.rb
|
| Parent: | StreamHandler |
| Client | = | HTTPAccess2::Client |
| RETRYABLE | = | true |
| Client | = | SOAP::NetHttpClient |
| RETRYABLE | = | false |
| MAX_RETRY_COUNT | = | 10 |
| client | [R] | |
| wiredump_file_base | [RW] |
# File soap/streamHandler.rb, line 83 def initialize(options) super() @client = Client.new(nil, "SOAP4R/#{ Version }") @wiredump_file_base = nil @charset = @wiredump_dev = nil @options = options set_options @client.debug_dev = @wiredump_dev @cookie_store = nil @accept_encoding_gzip = false end
# File soap/streamHandler.rb, line 99 def accept_encoding_gzip=(allow) @accept_encoding_gzip = allow end
# File soap/streamHandler.rb, line 112 def reset(endpoint_url = nil) if endpoint_url.nil? @client.reset_all else @client.reset(endpoint_url) end @client.save_cookie_store if @cookie_store end
# File soap/streamHandler.rb, line 107 def send(endpoint_url, conn_data, soapaction = nil, charset = @charset) conn_data.soapaction ||= soapaction # for backward conpatibility send_post(endpoint_url, conn_data, charset) end
ruby-doc.org is hosted and run by James Britt and Happy Camper Studios, a Ruby application development company in Phoenix, Arizona. Ruby-doc.org was created in 2002 to promote the Ruby language and to help other Ruby hackers.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.