Sha256: dd40d50db2da99f3dc9f1e250b7e5c6bab4fd11c15ebef2e97d92b6ae207fa61

Contents?: true

Size: 1.36 KB

Versions: 33

Compression:

Stored size: 1.36 KB

Contents

# SOAP4R - marshal/unmarshal interface.
# Copyright (C) 2000-2007  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.


require 'xsd/datatypes'
require 'soap/soap'
require 'soap/element'
require 'soap/parser'
require 'soap/generator'
require 'soap/encodingstyle/soapHandler'
require 'soap/encodingstyle/literalHandler'
require 'soap/encodingstyle/aspDotNetHandler'


module SOAP


module Processor
  @@default_parser_option = {}

  class << self
  public

    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

    def unmarshal(stream, opt = {})
      parser = create_parser(opt)
      parser.parse(stream)
    end

    def default_parser_option=(rhs)
      @@default_parser_option = rhs
    end

    def default_parser_option
      @@default_parser_option
    end

  private

    def create_generator(opt)
      Generator.new(opt)
    end

    def create_parser(opt)
      if opt.empty?
	opt = @@default_parser_option
      end
      ::SOAP::Parser.new(opt)
    end
  end
end


end

Version data entries

33 entries across 33 versions & 15 rubygems

Version Path
mumboe-soap4r-1.6.0.pre.beta lib/soap/processor.rb
DefV-soap4r-1.5.8.2 lib/soap/processor.rb
mumboe-soap4r-1.5.8.7 lib/soap/processor.rb
soap2r-1.5.8 lib/soap/processor.rb
teo-soap4r-1.5.9b lib/soap/processor.rb
mumboe-soap4r-1.5.8.6 lib/soap/processor.rb
soap4r-spox-1.6.0 lib/soap/processor.rb
soap4r-r19-1.5.9 lib/soap/processor.rb
mumboe-soap4r-1.5.8.5 lib/soap/processor.rb
soap4r-ruby1.9-2.0.5 lib/soap/processor.rb
soap4r-sgonyea-1.6.0 lib/soap/processor.rb
soap4r-straightjacket-1.5.9 lib/soap/processor.rb
soap4r-straightjacket-1.5.8 lib/soap/processor.rb
soap4r-ruby1.9-2.0.3 lib/soap/processor.rb
soap4r-ruby1.9-2.0.2 lib/soap/processor.rb
soap4r-ruby1.9-2.0.1 lib/soap/processor.rb
mumboe-soap4r-1.5.8.4 lib/soap/processor.rb
railsware-soap4r-1.5.8.1 lib/soap/processor.rb
soap4r-ruby1.9-2.0.0 lib/soap/processor.rb
hands-soap4r-1.5.8.4 lib/soap/processor.rb