Method: SOAP::RPC::Router#initialize
- Defined in:
- lib/soap/rpc/router.rb
#initialize(actor) ⇒ Router
Returns a new instance of Router.
36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/soap/rpc/router.rb', line 36 def initialize(actor) @actor = actor @mapping_registry = nil @headerhandler = Header::HandlerSet.new @literal_mapping_registry = ::SOAP::Mapping::LiteralRegistry.new @generate_explicit_type = true @external_ces = nil @operation_by_soapaction = {} @operation_by_qname = {} @headerhandlerfactory = [] @filterchain = Filter::FilterChain.new end |