Module SOAP::Processor
In: soap/processor.rb

Methods

Public Class methods

[Source]

# File soap/processor.rb, line 46
    def default_parser_option
      @@default_parser_option
    end

[Source]

# File soap/processor.rb, line 42
    def default_parser_option=(rhs)
      @@default_parser_option = rhs
    end

[Source]

# File soap/processor.rb, line 28
    def marshal(env, opt = {}, io = nil)
      generator = create_generator(opt)
      marshalled_str = generator.generate(env, io)
      unless env.external_content.empty?
        opt[:external_content] = env.external_content
      end
      marshalled_str
    end

[Source]

# File soap/processor.rb, line 37
    def unmarshal(stream, opt = {})
      parser = create_parser(opt)
      parser.parse(stream)
    end

[Validate]

ruby-doc.org is a community service provided by James Britt and Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.

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.