Class: Virtuozzo::SOAP::Drivers::OpLog
- Inherits:
-
SOAP::RPC::Driver
- Object
- SOAP::RPC::Driver
- Virtuozzo::SOAP::Drivers::OpLog
- Defined in:
- lib/virtuozzo/soap/drivers/op_log.rb
Constant Summary collapse
- DefaultEndpointUrl =
"https://localhost:4646"
- Methods =
[ [ nil, "get_ops", [ ["in", "parameter", ["::SOAP::SOAPElement", "http://www.swsoft.com/webservices/vzl/4.0.0/op_log", "get_ops"]], ["out", "parameter", ["::SOAP::SOAPElement", "http://www.swsoft.com/webservices/vzl/4.0.0/op_log", "get_opsResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ] ]
Instance Method Summary collapse
-
#initialize(endpoint_url = nil) ⇒ OpLog
constructor
A new instance of OpLog.
Constructor Details
#initialize(endpoint_url = nil) ⇒ OpLog
Returns a new instance of OpLog.
23 24 25 26 27 28 29 |
# File 'lib/virtuozzo/soap/drivers/op_log.rb', line 23 def initialize(endpoint_url = nil) endpoint_url ||= DefaultEndpointUrl super(endpoint_url, nil) self.mapping_registry = Virtuozzo::SOAP::MappingRegistries::OpLog::EncodedRegistry self.literal_mapping_registry = Virtuozzo::SOAP::MappingRegistries::OpLog::LiteralRegistry init_methods end |