blastramp 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -0
- data/lib/blastramp/inventory_count_query.rb +1 -1
- data/lib/blastramp/session.rb +0 -4
- data/lib/blastramp/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -16,7 +16,7 @@ module Blastramp
|
|
16
16
|
|
17
17
|
def find(sku)
|
18
18
|
# Get a list of InventoryCounts from Blastramp
|
19
|
-
endpoint = "http://www.ioperate.net/ws/
|
19
|
+
endpoint = "http://www.ioperate.net/ws/inventory/inventoryws.asmx?wsdl"
|
20
20
|
response = session.request endpoint, 'InventoryCountQuery' do
|
21
21
|
http.headers["SOAPAction"] = "http://chrome52/webservices/InventoryCountQuery"
|
22
22
|
|
data/lib/blastramp/session.rb
CHANGED
@@ -13,10 +13,6 @@ module Blastramp
|
|
13
13
|
def client
|
14
14
|
@client ||= Savon::Client.new do
|
15
15
|
wsdl.document = self.endpoint
|
16
|
-
# wsdl.document = "http://www.ioperate.net/ws/inventory/inventoryws.asmx?wsdl"
|
17
|
-
#
|
18
|
-
# wsdl.endpoint = "http://www.ioperate.net/ws/inventory/inventoryws.asmx"
|
19
|
-
# wsdl.namespace = "http://chrome52/webservices"
|
20
16
|
end
|
21
17
|
end
|
22
18
|
|
data/lib/blastramp/version.rb
CHANGED