X7ROOT File Manager
Current Path:
/opt/alt/ruby18/lib64/ruby/1.8/soap
opt
/
alt
/
ruby18
/
lib64
/
ruby
/
1.8
/
soap
/
ðŸ“
..
📄
attachment.rb
(1.99 KB)
📄
baseData.rb
(16.73 KB)
📄
element.rb
(5.4 KB)
ðŸ“
encodingstyle
📄
generator.rb
(6.66 KB)
ðŸ“
header
📄
httpconfigloader.rb
(3.15 KB)
ðŸ“
mapping
📄
mapping.rb
(381 B)
📄
marshal.rb
(1.5 KB)
📄
mimemessage.rb
(4.94 KB)
📄
netHttpClient.rb
(4.25 KB)
📄
parser.rb
(6.03 KB)
📄
processor.rb
(1.37 KB)
📄
property.rb
(6.92 KB)
ðŸ“
rpc
📄
soap.rb
(3.75 KB)
📄
streamHandler.rb
(5.86 KB)
📄
wsdlDriver.rb
(15.75 KB)
Editing: processor.rb
# SOAP4R - marshal/unmarshal interface. # Copyright (C) 2000, 2001, 2003 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) SOAPGenerator.new(opt) end def create_parser(opt) if opt.empty? opt = @@default_parser_option end ::SOAP::Parser.new(opt) end end end end
Upload File
Create Folder