Class: ChannelAdvisor::OrderServiceSOAP::OrderServiceSoap
- Inherits:
-
SOAP::RPC::Driver
- Object
- SOAP::RPC::Driver
- ChannelAdvisor::OrderServiceSOAP::OrderServiceSoap
- Defined in:
- lib/channel_advisor/order_service/client.rb
Constant Summary collapse
- DefaultEndpointUrl =
"https://api.channeladvisor.com/ChannelAdvisorAPI/v1/OrderService.asmx"- Methods =
[ [ "http://api.channeladvisor.com/webservices/SubmitAmazonFullRefund", "submitAmazonFullRefund", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitAmazonFullRefund"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitAmazonFullRefundResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://api.channeladvisor.com/webservices/SetOrdersExportStatus", "setOrdersExportStatus", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SetOrdersExportStatus"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SetOrdersExportStatusResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://api.channeladvisor.com/webservices/SubmitAmazonPartialRefund", "submitAmazonPartialRefund", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitAmazonPartialRefund"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitAmazonPartialRefundResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://api.channeladvisor.com/webservices/SubmitOrderRefund", "submitOrderRefund", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitOrderRefund"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitOrderRefundResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://api.channeladvisor.com/webservices/GetOrderList", "getOrderList", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "GetOrderList"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "GetOrderListResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://api.channeladvisor.com/webservices/SubmitOrder", "submitOrder", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitOrder"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "SubmitOrderResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ], [ "http://api.channeladvisor.com/webservices/Ping", "ping", [ ["in", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "Ping"]], ["out", "parameters", ["::SOAP::SOAPElement", "http://api.channeladvisor.com/webservices/", "PingResponse"]] ], { :request_style => :document, :request_use => :literal, :response_style => :document, :response_use => :literal, :faults => {} } ] ]
Instance Method Summary collapse
-
#initialize(endpoint_url = nil) ⇒ OrderServiceSoap
constructor
A new instance of OrderServiceSoap.
Constructor Details
#initialize(endpoint_url = nil) ⇒ OrderServiceSoap
Returns a new instance of OrderServiceSoap.
65 66 67 68 69 70 71 |
# File 'lib/channel_advisor/order_service/client.rb', line 65 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 |