Class: Sirius::Client::Internal::Internal

Inherits:
SOAP::RPC::Driver
  • Object
show all
Defined in:
lib/sirius/internal/InternalServiceDriver.rb

Constant Summary collapse

DefaultEndpointUrl =
"http://localhost:21212/internal"
Methods =
[
  [ "",
  "stop",
  [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://server.sirius.org/", "stop"]],
  [ SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://server.sirius.org/", "stopResponse"]] ],
  { :request_style =>  :document, :request_use =>  :literal,
  :response_style => :document, :response_use => :literal,
  :faults => {} }
  ]
]

Instance Method Summary collapse

Constructor Details

#initialize(endpoint_url = nil) ⇒ Internal

Returns a new instance of Internal.



20
21
22
23
24
25
26
# File 'lib/sirius/internal/InternalServiceDriver.rb', line 20

def initialize(endpoint_url = nil)
  endpoint_url ||= DefaultEndpointUrl
  super(endpoint_url, nil)
  self.mapping_registry = InternalServiceMappingRegistry::EncodedRegistry
  self.literal_mapping_registry = InternalServiceMappingRegistry::LiteralRegistry
  init_methods

end