Class: VendedorSoap
- Inherits:
-
SOAP::RPC::Driver
- Object
- SOAP::RPC::Driver
- VendedorSoap
- Defined in:
- lib/lw-pagto-certo/defaultDriver.rb
Constant Summary collapse
- DefaultEndpointUrl =
"https://www.pagamentocerto.com.br/vendedor/vendedor.asmx"- Methods =
[ [ "http://www.locaweb.com.br/IniciaTransacao", "iniciaTransacao", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://www.locaweb.com.br", "IniciaTransacao"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://www.locaweb.com.br", "IniciaTransacaoResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://www.locaweb.com.br/PagaTransacao", "pagaTransacao", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://www.locaweb.com.br", "PagaTransacao"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://www.locaweb.com.br", "PagaTransacaoResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://www.locaweb.com.br/ConsultaTransacao", "consultaTransacao", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://www.locaweb.com.br", "ConsultaTransacao"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://www.locaweb.com.br", "ConsultaTransacaoResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ] ]
Instance Method Summary collapse
-
#initialize(endpoint_url = nil) ⇒ VendedorSoap
constructor
A new instance of VendedorSoap.
Constructor Details
#initialize(endpoint_url = nil) ⇒ VendedorSoap
Returns a new instance of VendedorSoap.
35 36 37 38 39 40 41 |
# File 'lib/lw-pagto-certo/defaultDriver.rb', line 35 def initialize(endpoint_url = nil) endpoint_url ||= DefaultEndpointUrl super(endpoint_url, nil) self.mapping_registry = DefaultMappingRegistry::EncodedRegistry self.literal_mapping_registry = DefaultMappingRegistry::LiteralRegistry init_methods end |