stellae-ruby-api 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +1 -1
- data/README.md +1 -1
- data/lib/stellae/order.rb +71 -67
- data/lib/stellae/request.rb +17 -3
- data/lib/stellae/state.rb +65 -0
- data/lib/stellae/version.rb +1 -1
- data/lib/stellae.rb +2 -0
- data/spec/lib/client_spec.rb +1 -1
- data/spec/spec_helper.rb +7 -7
- data/spec/vcr/stellae_client/inventory_methods_mapped_inventory_returns_an_array_of_quantity_hashes.yml +72 -34
- data/spec/vcr/stellae_client/inventory_methods_upcs_returns_an_array_of_upcs.yml +72 -34
- data/spec/vcr/stellae_client_send_order_request/sends_an_order_request_and_returns_a_parsed_respose.yml +22 -23
- data/spec/vcr/stellae_client_send_order_request/sends_an_order_request_and_returns_a_parsed_respose_old.yml +66 -0
- data/stellae.gemspec +1 -0
- metadata +21 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: c980b130d43d35bffd5e4fbb4f0bb000b8dc3a3d
         | 
| 4 | 
            +
              data.tar.gz: 39fe40a8edb7ccdc326f434163f64013dcbadf90
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 4f362216196d5a5446f2bef1acdf903d46dfaa18bc4e88dac9a2d29b3302c528b0ac6571a3fb596204eab66d827f1fcc549c562d4d85fbf643aea1594ece8021
         | 
| 7 | 
            +
              data.tar.gz: 3fb60a02d1b8cf0bdc3abe3ba30dbaa91e591dec8c57119c67f44fe3aebf3fee4b15d13fc1fa12418106d38f2a2d0cc90ab804e8937f4d39e9c37d922e6bc65e
         | 
    
        data/.gitignore
    CHANGED
    
    
    
        data/.ruby-version
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            2.0.0-p481
         | 
    
        data/.travis.yml
    CHANGED
    
    
    
        data/README.md
    CHANGED
    
    
    
        data/lib/stellae/order.rb
    CHANGED
    
    | @@ -1,88 +1,92 @@ | |
| 1 1 | 
             
            module Stellae
         | 
| 2 2 | 
             
              class Order < Request
         | 
| 3 3 |  | 
| 4 | 
            +
                include State
         | 
| 5 | 
            +
             | 
| 4 6 | 
             
                def build_order_request(order)
         | 
| 7 | 
            +
             | 
| 5 8 | 
             
                  construct_xml "new_order_entry" do |xml|
         | 
| 6 9 |  | 
| 7 | 
            -
                    xml.ohn :"xmlns: | 
| 8 | 
            -
             | 
| 9 | 
            -
                      xml | 
| 10 | 
            -
                       | 
| 11 | 
            -
                      xml | 
| 12 | 
            -
                      xml | 
| 13 | 
            -
                       | 
| 14 | 
            -
                      xml | 
| 15 | 
            -
                      xml | 
| 16 | 
            -
                      xml | 
| 17 | 
            -
                      xml | 
| 18 | 
            -
                      xml | 
| 19 | 
            -
             | 
| 20 | 
            -
                       | 
| 21 | 
            -
                      xml | 
| 22 | 
            -
                      xml | 
| 23 | 
            -
                      xml | 
| 24 | 
            -
                      xml | 
| 25 | 
            -
                      xml | 
| 26 | 
            -
                      xml | 
| 27 | 
            -
                      xml | 
| 28 | 
            -
                      xml | 
| 29 | 
            -
                      xml | 
| 30 | 
            -
                      xml | 
| 31 | 
            -
                       | 
| 32 | 
            -
                      xml | 
| 33 | 
            -
                      xml | 
| 34 | 
            -
                      xml | 
| 35 | 
            -
                      xml | 
| 36 | 
            -
                      xml | 
| 37 | 
            -
                         | 
| 38 | 
            -
                       | 
| 39 | 
            -
                      xml | 
| 40 | 
            -
                      xml | 
| 41 | 
            -
                      xml | 
| 42 | 
            -
                      xml | 
| 43 | 
            -
                      xml | 
| 10 | 
            +
                    xml.ohn :"xmlns:a" => SCHEMA[:datacontract], :"xmlns:i" => SCHEMA[:instance] do
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                      soap_field       xml, :CARRIER,          order[:carrier].upcase
         | 
| 13 | 
            +
                      soap_field       xml, :CURRENCY,         order[:currency].upcase
         | 
| 14 | 
            +
                      build_address    xml, "CUSTOMER",        order[:billing_address]
         | 
| 15 | 
            +
                      soap_field       xml, :CUSTOMER_CODE
         | 
| 16 | 
            +
                      build_name       xml, "CUSTOMER",        order[:billing_address]
         | 
| 17 | 
            +
                      soap_field       xml, :CUSTOMER_PO
         | 
| 18 | 
            +
                      build_telephone  xml, "CUSTOMER",        order[:billing_address]
         | 
| 19 | 
            +
                      build_address    xml, "DELIVERY",        order[:shipping_address]
         | 
| 20 | 
            +
                      soap_field       xml, :DELIVERY_DC_EDI
         | 
| 21 | 
            +
                      soap_field       xml, :DELIVERY_DOOR_EDI
         | 
| 22 | 
            +
                      soap_field       xml, :DELIVERY_FROM
         | 
| 23 | 
            +
                      soap_field       xml, :DELIVERY_ID
         | 
| 24 | 
            +
                      soap_field       xml, :DELIVERY_MESSAGE, order[:gift_message]
         | 
| 25 | 
            +
                      build_name       xml, "DELIVERY",        order[:shipping_address]
         | 
| 26 | 
            +
                      build_telephone  xml, "DELIVERY",        order[:shipping_address]
         | 
| 27 | 
            +
                      soap_field       xml, :DELIVERY_TO
         | 
| 28 | 
            +
                      soap_field       xml, :DISCOUNT,         order[:item_discount] || 0
         | 
| 29 | 
            +
                      soap_field       xml, :EMAIL,            order[:email]
         | 
| 30 | 
            +
                      soap_field       xml, :FREIGHT_ACCOUNT
         | 
| 31 | 
            +
                      soap_field       xml, :MISC1,            0
         | 
| 32 | 
            +
                      soap_field       xml, :MISC1_REASON
         | 
| 33 | 
            +
                      soap_field       xml, :MISC2,            0
         | 
| 34 | 
            +
                      soap_field       xml, :MISC2_REASON
         | 
| 35 | 
            +
                      soap_field       xml, :ORDER_ID,         order[:number]
         | 
| 36 | 
            +
                      soap_field       xml, :ORDER_TYPE,       order[:type] || 'OO'
         | 
| 37 | 
            +
                      build_line_items xml,                    order
         | 
| 38 | 
            +
                      soap_field       xml, :SERVICE,          order[:shipping_method]
         | 
| 39 | 
            +
                      soap_field       xml, :SHIPPING_FEES,    shipping_fees(order)
         | 
| 40 | 
            +
                      soap_field       xml, :TAXES,            order[:tax] || 0
         | 
| 41 | 
            +
                      soap_field       xml, :TOTAL_AMOUNT,     order[:total_amount] || 0
         | 
| 42 | 
            +
                      soap_field       xml, :USER1,            order[:invoice_url]
         | 
| 43 | 
            +
                      soap_field       xml, :USER2
         | 
| 44 | 
            +
                      soap_field       xml, :USER3
         | 
| 45 | 
            +
                      soap_field       xml, :USER4
         | 
| 46 | 
            +
                      soap_field       xml, :USER5
         | 
| 47 | 
            +
                      soap_field       xml, :WAREHOUSE
         | 
| 48 | 
            +
             | 
| 44 49 | 
             
                    end
         | 
| 45 50 |  | 
| 46 51 | 
             
                  end
         | 
| 52 | 
            +
             | 
| 47 53 | 
             
                end
         | 
| 48 54 |  | 
| 49 55 | 
             
                private
         | 
| 50 56 |  | 
| 51 | 
            -
                def  | 
| 57 | 
            +
                def build_name(xml, type, address)
         | 
| 52 58 | 
             
                  full_name = "#{address[:first_name]} #{address[:last_name]}"
         | 
| 53 | 
            -
                  xml | 
| 54 | 
            -
             | 
| 55 | 
            -
             | 
| 56 | 
            -
             | 
| 57 | 
            -
             | 
| 58 | 
            -
             | 
| 59 | 
            -
             | 
| 60 | 
            -
             | 
| 61 | 
            -
                   | 
| 62 | 
            -
                  xml | 
| 63 | 
            -
             | 
| 64 | 
            -
                   | 
| 65 | 
            -
                  xml | 
| 66 | 
            -
                  xml | 
| 67 | 
            -
                  xml | 
| 68 | 
            -
                  xml.b :"#{type}_ADDRESS_ZIP",     address[:zipcode]
         | 
| 69 | 
            -
                  xml.b :"#{type}_TELEPHONE",       address[:phone]
         | 
| 59 | 
            +
                  soap_field xml, :"#{type}_NAME", full_name
         | 
| 60 | 
            +
                end
         | 
| 61 | 
            +
             | 
| 62 | 
            +
                def build_telephone(xml, type, address)
         | 
| 63 | 
            +
                  soap_field xml, :"#{type}_TELEPHONE", address[:phone]
         | 
| 64 | 
            +
                end
         | 
| 65 | 
            +
             | 
| 66 | 
            +
                def build_address(xml, type, address)
         | 
| 67 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_1",       address[:address1]
         | 
| 68 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_2",       address[:address2]
         | 
| 69 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_3",       address[:address3]
         | 
| 70 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_CITY",    address[:city]
         | 
| 71 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_COUNTRY", address[:country]
         | 
| 72 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_STATE",   state_abbr(address[:state])
         | 
| 73 | 
            +
                  soap_field xml, :"#{type}_ADDRESS_ZIP",     address[:zipcode]
         | 
| 70 74 | 
             
                end
         | 
| 71 75 |  | 
| 72 76 | 
             
                def build_line_items(xml, order)
         | 
| 73 | 
            -
                  xml | 
| 77 | 
            +
                  soap_field xml, :Order_Details do |xml|
         | 
| 74 78 | 
             
                    order[:line_items].each do |line_item|
         | 
| 75 | 
            -
                      xml | 
| 76 | 
            -
                        xml | 
| 77 | 
            -
                        xml | 
| 78 | 
            -
                        xml | 
| 79 | 
            -
                        xml | 
| 80 | 
            -
                        xml | 
| 81 | 
            -
                        xml | 
| 82 | 
            -
                        xml | 
| 83 | 
            -
                        xml | 
| 84 | 
            -
                        xml | 
| 85 | 
            -
                        xml | 
| 79 | 
            +
                      soap_field xml, :Order_Detail_New do |xml|
         | 
| 80 | 
            +
                        soap_field xml, :COST
         | 
| 81 | 
            +
                        soap_field xml, :FLAGS
         | 
| 82 | 
            +
                        soap_field xml, :LINE_ID
         | 
| 83 | 
            +
                        soap_field xml, :LOT_NUMBER
         | 
| 84 | 
            +
                        soap_field xml, :PRICE,        line_item[:price]
         | 
| 85 | 
            +
                        soap_field xml, :QUANTITY,     line_item[:quantity]
         | 
| 86 | 
            +
                        soap_field xml, :RETAIL_PRICE
         | 
| 87 | 
            +
                        soap_field xml, :SEASON
         | 
| 88 | 
            +
                        soap_field xml, :SIZE,         line_item[:size]
         | 
| 89 | 
            +
                        soap_field xml, :SKU,          line_item[:sku]
         | 
| 86 90 | 
             
                      end
         | 
| 87 91 | 
             
                    end
         | 
| 88 92 | 
             
                  end
         | 
    
        data/lib/stellae/request.rb
    CHANGED
    
    | @@ -41,11 +41,25 @@ module Stellae | |
| 41 41 | 
             
                end
         | 
| 42 42 |  | 
| 43 43 | 
             
                def build_user(xml)
         | 
| 44 | 
            -
                  xml.user :"xmlns: | 
| 45 | 
            -
                    xml | 
| 46 | 
            -
                    xml | 
| 44 | 
            +
                  xml.user :"xmlns:a" => SCHEMA[:datacontract], :"xmlns:i" => SCHEMA[:instance] do
         | 
| 45 | 
            +
                    soap_field xml, :user_name,     @client.username
         | 
| 46 | 
            +
                    soap_field xml, :user_password, @client.password
         | 
| 47 47 | 
             
                  end
         | 
| 48 48 | 
             
                end
         | 
| 49 49 |  | 
| 50 | 
            +
                def soap_field(xml, field, value = nil, prefix = "a")
         | 
| 51 | 
            +
                  if block_given?
         | 
| 52 | 
            +
                    xml.tag! prefix, field.to_sym do
         | 
| 53 | 
            +
                      yield(xml)
         | 
| 54 | 
            +
                    end
         | 
| 55 | 
            +
                  else
         | 
| 56 | 
            +
                    xml.tag! prefix, field.to_sym, soap_value(value)
         | 
| 57 | 
            +
                  end
         | 
| 58 | 
            +
                end
         | 
| 59 | 
            +
             | 
| 60 | 
            +
                def soap_value(value)
         | 
| 61 | 
            +
                  value.presence || { :"i:nil" => "true" }
         | 
| 62 | 
            +
                end
         | 
| 63 | 
            +
             | 
| 50 64 | 
             
              end
         | 
| 51 65 | 
             
            end
         | 
| @@ -0,0 +1,65 @@ | |
| 1 | 
            +
            module Stellae
         | 
| 2 | 
            +
             | 
| 3 | 
            +
              module State
         | 
| 4 | 
            +
             | 
| 5 | 
            +
                STATE_MAP = {
         | 
| 6 | 
            +
                  "Alabama"              => "AL",
         | 
| 7 | 
            +
                  "Alaska"               => "AK",
         | 
| 8 | 
            +
                  "Arizona"              => "AZ",
         | 
| 9 | 
            +
                  "Arkansas"             => "AR",
         | 
| 10 | 
            +
                  "California"           => "CA",
         | 
| 11 | 
            +
                  "Colorado"             => "CO",
         | 
| 12 | 
            +
                  "Connecticut"          => "CT",
         | 
| 13 | 
            +
                  "Delaware"             => "DE",
         | 
| 14 | 
            +
                  "District of Columbia" => "DC",
         | 
| 15 | 
            +
                  "Florida"              => "FL",
         | 
| 16 | 
            +
                  "Georgia"              => "GA",
         | 
| 17 | 
            +
                  "Hawaii"               => "HI",
         | 
| 18 | 
            +
                  "Idaho"                => "ID",
         | 
| 19 | 
            +
                  "Illinois"             => "IL",
         | 
| 20 | 
            +
                  "Indiana"              => "IN",
         | 
| 21 | 
            +
                  "Iowa"                 => "IA",
         | 
| 22 | 
            +
                  "Kansas"               => "KS",
         | 
| 23 | 
            +
                  "Kentucky"             => "KY",
         | 
| 24 | 
            +
                  "Louisiana"            => "LA",
         | 
| 25 | 
            +
                  "Maine"                => "ME",
         | 
| 26 | 
            +
                  "Maryland"             => "MD",
         | 
| 27 | 
            +
                  "Massachusetts"        => "MA",
         | 
| 28 | 
            +
                  "Michigan"             => "MI",
         | 
| 29 | 
            +
                  "Minnesota"            => "MN",
         | 
| 30 | 
            +
                  "Mississippi"          => "MS",
         | 
| 31 | 
            +
                  "Missouri"             => "MO",
         | 
| 32 | 
            +
                  "Montana"              => "MT",
         | 
| 33 | 
            +
                  "Nebraska"             => "NE",
         | 
| 34 | 
            +
                  "Nevada"               => "NV",
         | 
| 35 | 
            +
                  "New Hampshire"        => "NH",
         | 
| 36 | 
            +
                  "New Jersey"           => "NJ",
         | 
| 37 | 
            +
                  "New Mexico"           => "NM",
         | 
| 38 | 
            +
                  "New York"             => "NY",
         | 
| 39 | 
            +
                  "North Carolina"       => "NC",
         | 
| 40 | 
            +
                  "North Dakota"         => "ND",
         | 
| 41 | 
            +
                  "Ohio"                 => "OH",
         | 
| 42 | 
            +
                  "Oklahoma"             => "OK",
         | 
| 43 | 
            +
                  "Oregon"               => "OR",
         | 
| 44 | 
            +
                  "Pennsylvania"         => "PA",
         | 
| 45 | 
            +
                  "Rhode Island"         => "RI",
         | 
| 46 | 
            +
                  "South Carolina"       => "SC",
         | 
| 47 | 
            +
                  "South Dakota"         => "SD",
         | 
| 48 | 
            +
                  "Tennessee"            => "TN",
         | 
| 49 | 
            +
                  "Texas"                => "TX",
         | 
| 50 | 
            +
                  "Utah"                 => "UT",
         | 
| 51 | 
            +
                  "Vermont"              => "VT",
         | 
| 52 | 
            +
                  "Virginia"             => "VA",
         | 
| 53 | 
            +
                  "Washington"           => "WA",
         | 
| 54 | 
            +
                  "West Virginia"        => "WV",
         | 
| 55 | 
            +
                  "Wisconsin"            => "WI",
         | 
| 56 | 
            +
                  "Wyoming"              => "WY"
         | 
| 57 | 
            +
                }
         | 
| 58 | 
            +
             | 
| 59 | 
            +
                def state_abbr(state)
         | 
| 60 | 
            +
                  STATE_MAP[state] || state
         | 
| 61 | 
            +
                end
         | 
| 62 | 
            +
             | 
| 63 | 
            +
              end
         | 
| 64 | 
            +
             | 
| 65 | 
            +
            end
         | 
    
        data/lib/stellae/version.rb
    CHANGED
    
    
    
        data/lib/stellae.rb
    CHANGED
    
    
    
        data/spec/lib/client_spec.rb
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            require 'spec_helper'
         | 
| 2 2 |  | 
| 3 3 | 
             
            describe Stellae::Client do
         | 
| 4 | 
            -
              let(:client) { Stellae::Client.new(" | 
| 4 | 
            +
              let(:client) { Stellae::Client.new("DELPOZOTEST", "9kUw#xAmk7uT", test_mode: true) }
         | 
| 5 5 |  | 
| 6 6 | 
             
              describe '#send_order_request', :vcr do
         | 
| 7 7 | 
             
                let(:result) { client.send_order_request(order_hash) }
         | 
    
        data/spec/spec_helper.rb
    CHANGED
    
    | @@ -48,22 +48,22 @@ def order_hash | |
| 48 48 | 
             
              gift_wrap:    "true",
         | 
| 49 49 | 
             
              gift_message: "Happy Birthday!",
         | 
| 50 50 | 
             
              email:        "someone@somehwere.com",
         | 
| 51 | 
            -
              number:       " | 
| 51 | 
            +
              number:       "R123123125",
         | 
| 52 52 | 
             
              type:         "OO",
         | 
| 53 53 | 
             
              currency:     "USD",
         | 
| 54 54 | 
             
              line_items: [
         | 
| 55 55 | 
             
                {
         | 
| 56 56 | 
             
                  price:    "127.23",
         | 
| 57 57 | 
             
                  quantity: "1",
         | 
| 58 | 
            -
                  sku:      " | 
| 58 | 
            +
                  sku:      "8433889054239",
         | 
| 59 59 | 
             
                  size:     "XS"
         | 
| 60 60 | 
             
                }
         | 
| 61 61 | 
             
              ],
         | 
| 62 | 
            -
               | 
| 63 | 
            -
              invoice_url: | 
| 64 | 
            -
              shipping_cost: | 
| 62 | 
            +
              shipping_method:   "90",
         | 
| 63 | 
            +
              invoice_url:       "http://example.com/R123123123/invoice",
         | 
| 64 | 
            +
              shipping_cost:     10,
         | 
| 65 65 | 
             
              shipping_discount: -5,
         | 
| 66 | 
            -
              item_discount: | 
| 67 | 
            -
              total_amount: | 
| 66 | 
            +
              item_discount:     0,
         | 
| 67 | 
            +
              total_amount:      132.23
         | 
| 68 68 | 
             
            }
         | 
| 69 69 | 
             
            end
         | 
| @@ -5,10 +5,10 @@ http_interactions: | |
| 5 5 | 
             
                uri: https://webservice.stellae.us/SIIServices/Siiservice.svc?wsdl
         | 
| 6 6 | 
             
                body:
         | 
| 7 7 | 
             
                  encoding: UTF-8
         | 
| 8 | 
            -
                  string:  | 
| 9 | 
            -
                     | 
| 8 | 
            +
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 9 | 
            +
                    s:mustUnderstand="1">SII/ISIIService/get_inventory_on_hand</a:Action><a:MessageID>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:MessageID><a:ReplyTo><a:Address>http://www.w3.org/2005/08/addressing/anonymous</a:Address></a:ReplyTo><a:To
         | 
| 10 10 | 
             
                    s:mustUnderstand="1">https://webservice.stellae.us/SIIServices/Siiservice.svc</a:To></s:Header><s:Body><get_inventory_on_hand
         | 
| 11 | 
            -
                    xmlns="SII"><user xmlns: | 
| 11 | 
            +
                    xmlns="SII"><user xmlns:a="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><a:user_name>DELPOZOTEST</a:user_name><a:user_password>9kUw#xAmk7uT</a:user_password></user><upcs
         | 
| 12 12 | 
             
                    xmlns:b="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"/></get_inventory_on_hand></s:Body></s:Envelope>
         | 
| 13 13 | 
             
                headers:
         | 
| 14 14 | 
             
                  Accept-Encoding:
         | 
| @@ -25,7 +25,7 @@ http_interactions: | |
| 25 25 | 
             
                  message: OK
         | 
| 26 26 | 
             
                headers:
         | 
| 27 27 | 
             
                  Content-Length:
         | 
| 28 | 
            -
                  - ' | 
| 28 | 
            +
                  - '11856'
         | 
| 29 29 | 
             
                  Content-Type:
         | 
| 30 30 | 
             
                  - application/soap+xml; charset=utf-8
         | 
| 31 31 | 
             
                  Server:
         | 
| @@ -33,41 +33,79 @@ http_interactions: | |
| 33 33 | 
             
                  X-Powered-By:
         | 
| 34 34 | 
             
                  - ASP.NET
         | 
| 35 35 | 
             
                  Date:
         | 
| 36 | 
            -
                  -  | 
| 36 | 
            +
                  - Wed, 16 Dec 2015 22:29:08 GMT
         | 
| 37 37 | 
             
                body:
         | 
| 38 38 | 
             
                  encoding: UTF-8
         | 
| 39 39 | 
             
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 40 40 | 
             
                    s:mustUnderstand="1">SII/ISIIService/get_inventory_on_handResponse</a:Action><ActivityId
         | 
| 41 | 
            -
                    CorrelationId=" | 
| 41 | 
            +
                    CorrelationId="79a6d0a9-3785-4631-b0c7-877e953a9e47" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">d6cfdc05-42ba-4ee2-b597-dc244b2be31c</ActivityId><a:RelatesTo>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:RelatesTo></s:Header><s:Body><get_inventory_on_handResponse
         | 
| 42 42 | 
             
                    xmlns="SII"><get_inventory_on_handResult xmlns:b="http://schemas.datacontract.org/2004/07/"
         | 
| 43 43 | 
             
                    xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><b:Inventory_values><b:UPC_Inventory_Response><b:lot>
         | 
| 44 | 
            -
                    </b:lot><b:on_hand> | 
| 45 | 
            -
                    </b:lot><b:on_hand> | 
| 46 | 
            -
                    </b:lot><b:on_hand> | 
| 47 | 
            -
                    </b:lot><b:on_hand> | 
| 48 | 
            -
                    </b:lot><b:on_hand> | 
| 49 | 
            -
                    </b:lot><b:on_hand> | 
| 50 | 
            -
                    </b:lot><b:on_hand> | 
| 51 | 
            -
                    </b:lot><b:on_hand> | 
| 52 | 
            -
                    </b:lot><b:on_hand> | 
| 53 | 
            -
                    </b:lot><b:on_hand> | 
| 54 | 
            -
                    </b:lot><b:on_hand> | 
| 55 | 
            -
                    </b:lot><b:on_hand> | 
| 56 | 
            -
                    </b:lot><b:on_hand> | 
| 57 | 
            -
                    </b:lot><b:on_hand> | 
| 58 | 
            -
                    </b:lot><b:on_hand> | 
| 59 | 
            -
                    </b:lot><b:on_hand> | 
| 60 | 
            -
                    </b:lot><b:on_hand> | 
| 61 | 
            -
                    </b:lot><b:on_hand> | 
| 62 | 
            -
                    </b:lot><b:on_hand> | 
| 63 | 
            -
                    </b:lot><b:on_hand> | 
| 64 | 
            -
                    </b:lot><b:on_hand> | 
| 65 | 
            -
                    </b:lot><b:on_hand> | 
| 66 | 
            -
                    </b:lot><b:on_hand> | 
| 67 | 
            -
                    </b:lot><b:on_hand> | 
| 68 | 
            -
                    </b:lot><b:on_hand> | 
| 69 | 
            -
                    </b:lot><b:on_hand> | 
| 70 | 
            -
                    </b:lot><b:on_hand> | 
| 44 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043134</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 45 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043141</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 46 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043158</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 47 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043165</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 48 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043172</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 49 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043189</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 50 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043196</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 51 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043202</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 52 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043219</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 53 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043226</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 54 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043233</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 55 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043240</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 56 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043257</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 57 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043264</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 58 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049525</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 59 | 
            +
                    </b:lot><b:on_hand>198</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049945</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 60 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049952</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 61 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049969</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 62 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050019</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 63 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050026</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 64 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050033</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 65 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050163</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 66 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050170</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 67 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050187</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 68 | 
            +
                    </b:lot><b:on_hand>186</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050231</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 69 | 
            +
                    </b:lot><b:on_hand>192</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050248</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 70 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050255</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 71 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051177</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 72 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051184</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 73 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051405</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 74 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051412</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 75 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052051</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 76 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052068</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 77 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052075</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 78 | 
            +
                    </b:lot><b:on_hand>196</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052105</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 79 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052112</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 80 | 
            +
                    </b:lot><b:on_hand>197</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052648</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 81 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052655</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 82 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052662</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 83 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052730</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 84 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052747</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 85 | 
            +
                    </b:lot><b:on_hand>197</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053294</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 86 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053300</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 87 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053317</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 88 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053478</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 89 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053485</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 90 | 
            +
                    </b:lot><b:on_hand>196</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053591</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 91 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054178</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 92 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054185</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 93 | 
            +
                    </b:lot><b:on_hand>197</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054239</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 94 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054246</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 95 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054420</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 96 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054437</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 97 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054475</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 98 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054499</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 99 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054857</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 100 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055021</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 101 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055144</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 102 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055151</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 103 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055168</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 104 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055175</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 105 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055250</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 106 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055267</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 107 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055274</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 108 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055281</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response></b:Inventory_values><b:status>0001</b:status></get_inventory_on_handResult></get_inventory_on_handResponse></s:Body></s:Envelope>
         | 
| 71 109 | 
             
                http_version: 
         | 
| 72 | 
            -
              recorded_at:  | 
| 110 | 
            +
              recorded_at: Wed, 16 Dec 2015 22:30:36 GMT
         | 
| 73 111 | 
             
            recorded_with: VCR 2.9.3
         | 
| @@ -5,10 +5,10 @@ http_interactions: | |
| 5 5 | 
             
                uri: https://webservice.stellae.us/SIIServices/Siiservice.svc?wsdl
         | 
| 6 6 | 
             
                body:
         | 
| 7 7 | 
             
                  encoding: UTF-8
         | 
| 8 | 
            -
                  string:  | 
| 9 | 
            -
                     | 
| 8 | 
            +
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 9 | 
            +
                    s:mustUnderstand="1">SII/ISIIService/get_inventory_on_hand</a:Action><a:MessageID>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:MessageID><a:ReplyTo><a:Address>http://www.w3.org/2005/08/addressing/anonymous</a:Address></a:ReplyTo><a:To
         | 
| 10 10 | 
             
                    s:mustUnderstand="1">https://webservice.stellae.us/SIIServices/Siiservice.svc</a:To></s:Header><s:Body><get_inventory_on_hand
         | 
| 11 | 
            -
                    xmlns="SII"><user xmlns: | 
| 11 | 
            +
                    xmlns="SII"><user xmlns:a="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><a:user_name>DELPOZOTEST</a:user_name><a:user_password>9kUw#xAmk7uT</a:user_password></user><upcs
         | 
| 12 12 | 
             
                    xmlns:b="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"/></get_inventory_on_hand></s:Body></s:Envelope>
         | 
| 13 13 | 
             
                headers:
         | 
| 14 14 | 
             
                  Accept-Encoding:
         | 
| @@ -25,7 +25,7 @@ http_interactions: | |
| 25 25 | 
             
                  message: OK
         | 
| 26 26 | 
             
                headers:
         | 
| 27 27 | 
             
                  Content-Length:
         | 
| 28 | 
            -
                  - ' | 
| 28 | 
            +
                  - '11856'
         | 
| 29 29 | 
             
                  Content-Type:
         | 
| 30 30 | 
             
                  - application/soap+xml; charset=utf-8
         | 
| 31 31 | 
             
                  Server:
         | 
| @@ -33,41 +33,79 @@ http_interactions: | |
| 33 33 | 
             
                  X-Powered-By:
         | 
| 34 34 | 
             
                  - ASP.NET
         | 
| 35 35 | 
             
                  Date:
         | 
| 36 | 
            -
                  -  | 
| 36 | 
            +
                  - Wed, 16 Dec 2015 22:29:08 GMT
         | 
| 37 37 | 
             
                body:
         | 
| 38 38 | 
             
                  encoding: UTF-8
         | 
| 39 39 | 
             
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 40 40 | 
             
                    s:mustUnderstand="1">SII/ISIIService/get_inventory_on_handResponse</a:Action><ActivityId
         | 
| 41 | 
            -
                    CorrelationId=" | 
| 41 | 
            +
                    CorrelationId="d876d4a1-9623-4f01-9828-a0af8fd0f935" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">c71782fc-0e75-45e5-8b5e-4b6ff40ff7ab</ActivityId><a:RelatesTo>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:RelatesTo></s:Header><s:Body><get_inventory_on_handResponse
         | 
| 42 42 | 
             
                    xmlns="SII"><get_inventory_on_handResult xmlns:b="http://schemas.datacontract.org/2004/07/"
         | 
| 43 43 | 
             
                    xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><b:Inventory_values><b:UPC_Inventory_Response><b:lot>
         | 
| 44 | 
            -
                    </b:lot><b:on_hand> | 
| 45 | 
            -
                    </b:lot><b:on_hand> | 
| 46 | 
            -
                    </b:lot><b:on_hand> | 
| 47 | 
            -
                    </b:lot><b:on_hand> | 
| 48 | 
            -
                    </b:lot><b:on_hand> | 
| 49 | 
            -
                    </b:lot><b:on_hand> | 
| 50 | 
            -
                    </b:lot><b:on_hand> | 
| 51 | 
            -
                    </b:lot><b:on_hand> | 
| 52 | 
            -
                    </b:lot><b:on_hand> | 
| 53 | 
            -
                    </b:lot><b:on_hand> | 
| 54 | 
            -
                    </b:lot><b:on_hand> | 
| 55 | 
            -
                    </b:lot><b:on_hand> | 
| 56 | 
            -
                    </b:lot><b:on_hand> | 
| 57 | 
            -
                    </b:lot><b:on_hand> | 
| 58 | 
            -
                    </b:lot><b:on_hand> | 
| 59 | 
            -
                    </b:lot><b:on_hand> | 
| 60 | 
            -
                    </b:lot><b:on_hand> | 
| 61 | 
            -
                    </b:lot><b:on_hand> | 
| 62 | 
            -
                    </b:lot><b:on_hand> | 
| 63 | 
            -
                    </b:lot><b:on_hand> | 
| 64 | 
            -
                    </b:lot><b:on_hand> | 
| 65 | 
            -
                    </b:lot><b:on_hand> | 
| 66 | 
            -
                    </b:lot><b:on_hand> | 
| 67 | 
            -
                    </b:lot><b:on_hand> | 
| 68 | 
            -
                    </b:lot><b:on_hand> | 
| 69 | 
            -
                    </b:lot><b:on_hand> | 
| 70 | 
            -
                    </b:lot><b:on_hand> | 
| 44 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043134</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 45 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043141</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 46 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043158</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 47 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043165</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 48 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043172</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 49 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043189</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 50 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043196</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 51 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043202</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 52 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043219</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 53 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043226</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 54 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043233</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 55 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043240</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 56 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043257</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 57 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889043264</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 58 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049525</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 59 | 
            +
                    </b:lot><b:on_hand>198</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049945</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 60 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049952</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 61 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889049969</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 62 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050019</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 63 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050026</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 64 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050033</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 65 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050163</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 66 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050170</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 67 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050187</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 68 | 
            +
                    </b:lot><b:on_hand>186</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050231</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 69 | 
            +
                    </b:lot><b:on_hand>192</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050248</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 70 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889050255</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 71 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051177</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 72 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051184</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 73 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051405</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 74 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889051412</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 75 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052051</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 76 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052068</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 77 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052075</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 78 | 
            +
                    </b:lot><b:on_hand>196</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052105</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 79 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052112</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 80 | 
            +
                    </b:lot><b:on_hand>197</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052648</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 81 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052655</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 82 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052662</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 83 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052730</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 84 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889052747</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 85 | 
            +
                    </b:lot><b:on_hand>197</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053294</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 86 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053300</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 87 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053317</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 88 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053478</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 89 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053485</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 90 | 
            +
                    </b:lot><b:on_hand>196</b:on_hand><b:uom>EA</b:uom><b:upc>8433889053591</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 91 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054178</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 92 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054185</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 93 | 
            +
                    </b:lot><b:on_hand>197</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054239</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 94 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054246</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 95 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054420</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 96 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054437</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 97 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054475</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 98 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054499</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 99 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889054857</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 100 | 
            +
                    </b:lot><b:on_hand>199</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055021</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 101 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055144</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 102 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055151</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 103 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055168</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 104 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055175</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 105 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055250</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 106 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055267</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 107 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055274</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response><b:UPC_Inventory_Response><b:lot>
         | 
| 108 | 
            +
                    </b:lot><b:on_hand>200</b:on_hand><b:uom>EA</b:uom><b:upc>8433889055281</b:upc><b:warehouse>NYC</b:warehouse></b:UPC_Inventory_Response></b:Inventory_values><b:status>0001</b:status></get_inventory_on_handResult></get_inventory_on_handResponse></s:Body></s:Envelope>
         | 
| 71 109 | 
             
                http_version: 
         | 
| 72 | 
            -
              recorded_at:  | 
| 110 | 
            +
              recorded_at: Wed, 16 Dec 2015 22:30:36 GMT
         | 
| 73 111 | 
             
            recorded_with: VCR 2.9.3
         | 
| @@ -8,25 +8,24 @@ http_interactions: | |
| 8 8 | 
             
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 9 9 | 
             
                    s:mustUnderstand="1">SII/ISIIService/new_order_entry</a:Action><a:MessageID>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:MessageID><a:ReplyTo><a:Address>http://www.w3.org/2005/08/addressing/anonymous</a:Address></a:ReplyTo><a:To
         | 
| 10 10 | 
             
                    s:mustUnderstand="1">https://webservice.stellae.us/SIIServices/Siiservice.svc</a:To></s:Header><s:Body><new_order_entry
         | 
| 11 | 
            -
                    xmlns="SII"><user xmlns: | 
| 12 | 
            -
                    xmlns: | 
| 13 | 
            -
                     | 
| 14 | 
            -
                     | 
| 15 | 
            -
                     | 
| 16 | 
            -
                     | 
| 17 | 
            -
                     | 
| 18 | 
            -
                     | 
| 19 | 
            -
                     | 
| 20 | 
            -
                     | 
| 21 | 
            -
                     | 
| 22 | 
            -
                    i:nil="true"/>< | 
| 23 | 
            -
                    i:nil="true"/>< | 
| 24 | 
            -
                    i:nil="true"/>< | 
| 25 | 
            -
                    i:nil="true"/>< | 
| 26 | 
            -
                    i:nil="true"/>< | 
| 27 | 
            -
                    i:nil="true"/>< | 
| 28 | 
            -
                    i:nil="true"/>< | 
| 29 | 
            -
                    i:nil="true"/><b:USER3 i:nil="true"/><b:USER4 i:nil="true"/><b:USER5 i:nil="true"/><b:WAREHOUSE
         | 
| 11 | 
            +
                    xmlns="SII"><user xmlns:a="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><a:user_name>DELPOZOTEST</a:user_name><a:user_password>9kUw#xAmk7uT</a:user_password></user><ohn
         | 
| 12 | 
            +
                    xmlns:a="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><a:CARRIER>FEDEX</a:CARRIER><a:CURRENCY>USD</a:CURRENCY><a:CUSTOMER_ADDRESS_1>123
         | 
| 13 | 
            +
                    Here Now</a:CUSTOMER_ADDRESS_1><a:CUSTOMER_ADDRESS_2>2nd Floor</a:CUSTOMER_ADDRESS_2><a:CUSTOMER_ADDRESS_3
         | 
| 14 | 
            +
                    i:nil="true"/><a:CUSTOMER_ADDRESS_CITY>New York</a:CUSTOMER_ADDRESS_CITY><a:CUSTOMER_ADDRESS_COUNTRY>US</a:CUSTOMER_ADDRESS_COUNTRY><a:CUSTOMER_ADDRESS_STATE>NY</a:CUSTOMER_ADDRESS_STATE><a:CUSTOMER_ADDRESS_ZIP>10012</a:CUSTOMER_ADDRESS_ZIP><a:CUSTOMER_CODE
         | 
| 15 | 
            +
                    i:nil="true"/><a:CUSTOMER_NAME>John Smith</a:CUSTOMER_NAME><a:CUSTOMER_PO
         | 
| 16 | 
            +
                    i:nil="true"/><a:CUSTOMER_TELEPHONE>123-123-1234</a:CUSTOMER_TELEPHONE><a:DELIVERY_ADDRESS_1>123
         | 
| 17 | 
            +
                    Here Now</a:DELIVERY_ADDRESS_1><a:DELIVERY_ADDRESS_2>2nd Floor</a:DELIVERY_ADDRESS_2><a:DELIVERY_ADDRESS_3
         | 
| 18 | 
            +
                    i:nil="true"/><a:DELIVERY_ADDRESS_CITY>New York</a:DELIVERY_ADDRESS_CITY><a:DELIVERY_ADDRESS_COUNTRY>US</a:DELIVERY_ADDRESS_COUNTRY><a:DELIVERY_ADDRESS_STATE>NY</a:DELIVERY_ADDRESS_STATE><a:DELIVERY_ADDRESS_ZIP>10012</a:DELIVERY_ADDRESS_ZIP><a:DELIVERY_DC_EDI
         | 
| 19 | 
            +
                    i:nil="true"/><a:DELIVERY_DOOR_EDI i:nil="true"/><a:DELIVERY_FROM i:nil="true"/><a:DELIVERY_ID
         | 
| 20 | 
            +
                    i:nil="true"/><a:DELIVERY_MESSAGE>Happy Birthday!</a:DELIVERY_MESSAGE><a:DELIVERY_NAME>John
         | 
| 21 | 
            +
                    Smith</a:DELIVERY_NAME><a:DELIVERY_TELEPHONE>123-123-1234</a:DELIVERY_TELEPHONE><a:DELIVERY_TO
         | 
| 22 | 
            +
                    i:nil="true"/><a:DISCOUNT>0</a:DISCOUNT><a:EMAIL>someone@somehwere.com</a:EMAIL><a:FREIGHT_ACCOUNT
         | 
| 23 | 
            +
                    i:nil="true"/><a:MISC1>0</a:MISC1><a:MISC1_REASON i:nil="true"/><a:MISC2>0</a:MISC2><a:MISC2_REASON
         | 
| 24 | 
            +
                    i:nil="true"/><a:ORDER_ID>R123123125</a:ORDER_ID><a:ORDER_TYPE>OO</a:ORDER_TYPE><a:Order_Details><a:Order_Detail_New><a:COST
         | 
| 25 | 
            +
                    i:nil="true"/><a:FLAGS i:nil="true"/><a:LINE_ID i:nil="true"/><a:LOT_NUMBER
         | 
| 26 | 
            +
                    i:nil="true"/><a:PRICE>127.23</a:PRICE><a:QUANTITY>1</a:QUANTITY><a:RETAIL_PRICE
         | 
| 27 | 
            +
                    i:nil="true"/><a:SEASON i:nil="true"/><a:SIZE>XS</a:SIZE><a:SKU>8433889054239</a:SKU></a:Order_Detail_New></a:Order_Details><a:SERVICE>90</a:SERVICE><a:SHIPPING_FEES>5</a:SHIPPING_FEES><a:TAXES>0</a:TAXES><a:TOTAL_AMOUNT>132.23</a:TOTAL_AMOUNT><a:USER1>http://example.com/R123123123/invoice</a:USER1><a:USER2
         | 
| 28 | 
            +
                    i:nil="true"/><a:USER3 i:nil="true"/><a:USER4 i:nil="true"/><a:USER5 i:nil="true"/><a:WAREHOUSE
         | 
| 30 29 | 
             
                    i:nil="true"/></ohn></new_order_entry></s:Body></s:Envelope>
         | 
| 31 30 | 
             
                headers:
         | 
| 32 31 | 
             
                  Accept-Encoding:
         | 
| @@ -51,15 +50,15 @@ http_interactions: | |
| 51 50 | 
             
                  X-Powered-By:
         | 
| 52 51 | 
             
                  - ASP.NET
         | 
| 53 52 | 
             
                  Date:
         | 
| 54 | 
            -
                  -  | 
| 53 | 
            +
                  - Thu, 17 Dec 2015 16:32:46 GMT
         | 
| 55 54 | 
             
                body:
         | 
| 56 55 | 
             
                  encoding: UTF-8
         | 
| 57 56 | 
             
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 58 57 | 
             
                    s:mustUnderstand="1">SII/ISIIService/new_order_entryResponse</a:Action><ActivityId
         | 
| 59 | 
            -
                    CorrelationId=" | 
| 58 | 
            +
                    CorrelationId="c5e5b0d9-9cbd-43cc-aa4c-94fa8bd32f98" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">a5525994-a65e-4ec0-aeaa-a38ff4b9de4f</ActivityId><a:RelatesTo>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:RelatesTo></s:Header><s:Body><new_order_entryResponse
         | 
| 60 59 | 
             
                    xmlns="SII"><new_order_entryResult xmlns:b="http://schemas.datacontract.org/2004/07/"
         | 
| 61 60 | 
             
                    xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><b:detail_status i:nil="true"
         | 
| 62 | 
            -
                    xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/><b:sii_order_number> | 
| 61 | 
            +
                    xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/><b:sii_order_number>11786</b:sii_order_number><b:status>0001</b:status></new_order_entryResult></new_order_entryResponse></s:Body></s:Envelope>
         | 
| 63 62 | 
             
                http_version: 
         | 
| 64 | 
            -
              recorded_at:  | 
| 63 | 
            +
              recorded_at: Thu, 17 Dec 2015 16:34:20 GMT
         | 
| 65 64 | 
             
            recorded_with: VCR 2.9.3
         | 
| @@ -0,0 +1,66 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://webservice.stellae.us/SIIServices/Siiservice.svc?wsdl
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 9 | 
            +
                    s:mustUnderstand="1">SII/ISIIService/new_order_entry</a:Action><a:MessageID>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:MessageID><a:ReplyTo><a:Address>http://www.w3.org/2005/08/addressing/anonymous</a:Address></a:ReplyTo><a:To
         | 
| 10 | 
            +
                    s:mustUnderstand="1">https://webservice.stellae.us/SIIServices/Siiservice.svc</a:To></s:Header><s:Body><new_order_entry
         | 
| 11 | 
            +
                    xmlns="SII"><user xmlns:a="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><a:user_name>DELPOZOTEST</a:user_name><a:user_password>9kUw#xAmk7uT</a:user_password></user><ohn
         | 
| 12 | 
            +
                    xmlns:a="http://schemas.datacontract.org/2004/07/" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><a:CARRIER>FEDEX</a:CARRIER><a:CURRENCY>USD</a:CURRENCY><a:CUSTOMER_ADDRESS_1>123
         | 
| 13 | 
            +
                    Here Now</a:CUSTOMER_ADDRESS_1><a:CUSTOMER_ADDRESS_2>2nd Floor</a:CUSTOMER_ADDRESS_2><a:CUSTOMER_ADDRESS_3
         | 
| 14 | 
            +
                    i:nil="true"/><a:CUSTOMER_ADDRESS_CITY>New York</a:CUSTOMER_ADDRESS_CITY><a:CUSTOMER_ADDRESS_COUNTRY>US</a:CUSTOMER_ADDRESS_COUNTRY><a:CUSTOMER_ADDRESS_STATE>New
         | 
| 15 | 
            +
                    York</a:CUSTOMER_ADDRESS_STATE><a:CUSTOMER_ADDRESS_ZIP>10012</a:CUSTOMER_ADDRESS_ZIP><a:CUSTOMER_CODE
         | 
| 16 | 
            +
                    i:nil="true"/><a:CUSTOMER_NAME>John Smith</a:CUSTOMER_NAME><a:CUSTOMER_PO
         | 
| 17 | 
            +
                    i:nil="true"/><a:CUSTOMER_TELEPHONE>123-123-1234</a:CUSTOMER_TELEPHONE><a:DELIVERY_ADDRESS_1>123
         | 
| 18 | 
            +
                    Here Now</a:DELIVERY_ADDRESS_1><a:DELIVERY_ADDRESS_2>2nd Floor</a:DELIVERY_ADDRESS_2><a:DELIVERY_ADDRESS_3
         | 
| 19 | 
            +
                    i:nil="true"/><a:DELIVERY_ADDRESS_CITY>New York</a:DELIVERY_ADDRESS_CITY><a:DELIVERY_ADDRESS_COUNTRY>US</a:DELIVERY_ADDRESS_COUNTRY><a:DELIVERY_ADDRESS_STATE>New
         | 
| 20 | 
            +
                    York</a:DELIVERY_ADDRESS_STATE><a:DELIVERY_ADDRESS_ZIP>10012</a:DELIVERY_ADDRESS_ZIP><a:DELIVERY_DC_EDI
         | 
| 21 | 
            +
                    i:nil="true"/><a:DELIVERY_DOOR_EDI i:nil="true"/><a:DELIVERY_FROM i:nil="true"/><a:DELIVERY_ID
         | 
| 22 | 
            +
                    i:nil="true"/><a:DELIVERY_MESSAGE>Happy Birthday!</a:DELIVERY_MESSAGE><a:DELIVERY_NAME>John
         | 
| 23 | 
            +
                    Smith</a:DELIVERY_NAME><a:DELIVERY_TELEPHONE>123-123-1234</a:DELIVERY_TELEPHONE><a:DELIVERY_TO
         | 
| 24 | 
            +
                    i:nil="true"/><a:DISCOUNT>0</a:DISCOUNT><a:EMAIL>someone@somehwere.com</a:EMAIL><a:FREIGHT_ACCOUNT
         | 
| 25 | 
            +
                    i:nil="true"/><a:MISC1>0</a:MISC1><a:MISC1_REASON i:nil="true"/><a:MISC2>0</a:MISC2><a:MISC2_REASON
         | 
| 26 | 
            +
                    i:nil="true"/><a:ORDER_ID>R123123124</a:ORDER_ID><a:ORDER_TYPE>OO</a:ORDER_TYPE><a:Order_Details><a:Order_Detail_New><a:COST
         | 
| 27 | 
            +
                    i:nil="true"/><a:FLAGS i:nil="true"/><a:LINE_ID i:nil="true"/><a:LOT_NUMBER
         | 
| 28 | 
            +
                    i:nil="true"/><a:PRICE>127.23</a:PRICE><a:QUANTITY>1</a:QUANTITY><a:RETAIL_PRICE
         | 
| 29 | 
            +
                    i:nil="true"/><a:SEASON i:nil="true"/><a:SIZE>XS</a:SIZE><a:SKU>8433889054239</a:SKU></a:Order_Detail_New></a:Order_Details><a:SERVICE>90</a:SERVICE><a:SHIPPING_FEES>5</a:SHIPPING_FEES><a:TAXES>0</a:TAXES><a:TOTAL_AMOUNT>132.23</a:TOTAL_AMOUNT><a:USER1>http://example.com/R123123123/invoice</a:USER1><a:USER2
         | 
| 30 | 
            +
                    i:nil="true"/><a:USER3 i:nil="true"/><a:USER4 i:nil="true"/><a:USER5 i:nil="true"/><a:WAREHOUSE
         | 
| 31 | 
            +
                    i:nil="true"/></ohn></new_order_entry></s:Body></s:Envelope>
         | 
| 32 | 
            +
                headers:
         | 
| 33 | 
            +
                  Accept-Encoding:
         | 
| 34 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 35 | 
            +
                  Accept:
         | 
| 36 | 
            +
                  - '*/*'
         | 
| 37 | 
            +
                  User-Agent:
         | 
| 38 | 
            +
                  - Ruby
         | 
| 39 | 
            +
                  Content-Type:
         | 
| 40 | 
            +
                  - application/soap+xml; charset=utf-8
         | 
| 41 | 
            +
              response:
         | 
| 42 | 
            +
                status:
         | 
| 43 | 
            +
                  code: 200
         | 
| 44 | 
            +
                  message: OK
         | 
| 45 | 
            +
                headers:
         | 
| 46 | 
            +
                  Content-Length:
         | 
| 47 | 
            +
                  - '880'
         | 
| 48 | 
            +
                  Content-Type:
         | 
| 49 | 
            +
                  - application/soap+xml; charset=utf-8
         | 
| 50 | 
            +
                  Server:
         | 
| 51 | 
            +
                  - Microsoft-IIS/8.5
         | 
| 52 | 
            +
                  X-Powered-By:
         | 
| 53 | 
            +
                  - ASP.NET
         | 
| 54 | 
            +
                  Date:
         | 
| 55 | 
            +
                  - Wed, 16 Dec 2015 21:21:02 GMT
         | 
| 56 | 
            +
                body:
         | 
| 57 | 
            +
                  encoding: UTF-8
         | 
| 58 | 
            +
                  string: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"><s:Header><a:Action
         | 
| 59 | 
            +
                    s:mustUnderstand="1">SII/ISIIService/new_order_entryResponse</a:Action><ActivityId
         | 
| 60 | 
            +
                    CorrelationId="1d6b8415-75bc-4b83-9635-96d256f1041c" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">0040b14a-0c54-439d-be7f-653051849330</ActivityId><a:RelatesTo>urn:uuid:56b55a70-8bbc-471d-94bb-9ca060bcf99f</a:RelatesTo></s:Header><s:Body><new_order_entryResponse
         | 
| 61 | 
            +
                    xmlns="SII"><new_order_entryResult xmlns:b="http://schemas.datacontract.org/2004/07/"
         | 
| 62 | 
            +
                    xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><b:detail_status i:nil="true"
         | 
| 63 | 
            +
                    xmlns:c="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/><b:sii_order_number>11785</b:sii_order_number><b:status>0001</b:status></new_order_entryResult></new_order_entryResponse></s:Body></s:Envelope>
         | 
| 64 | 
            +
                http_version: 
         | 
| 65 | 
            +
              recorded_at: Wed, 16 Dec 2015 21:22:29 GMT
         | 
| 66 | 
            +
            recorded_with: VCR 2.9.3
         | 
    
        data/stellae.gemspec
    CHANGED
    
    | @@ -21,6 +21,7 @@ Gem::Specification.new do |spec| | |
| 21 21 | 
             
              spec.add_dependency "builder"
         | 
| 22 22 | 
             
              spec.add_dependency "xml-simple"
         | 
| 23 23 | 
             
              spec.add_dependency "hashie"
         | 
| 24 | 
            +
              spec.add_dependency "activesupport"
         | 
| 24 25 |  | 
| 25 26 | 
             
              spec.add_development_dependency "bundler",  "~> 1.3"
         | 
| 26 27 | 
             
              spec.add_development_dependency "rake"
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: stellae-ruby-api
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.0. | 
| 4 | 
            +
              version: 0.0.2
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Justin Grubbs
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2015- | 
| 11 | 
            +
            date: 2015-12-17 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: builder
         | 
| @@ -52,6 +52,20 @@ dependencies: | |
| 52 52 | 
             
                - - '>='
         | 
| 53 53 | 
             
                  - !ruby/object:Gem::Version
         | 
| 54 54 | 
             
                    version: '0'
         | 
| 55 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 56 | 
            +
              name: activesupport
         | 
| 57 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - '>='
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
              type: :runtime
         | 
| 63 | 
            +
              prerelease: false
         | 
| 64 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                requirements:
         | 
| 66 | 
            +
                - - '>='
         | 
| 67 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            +
                    version: '0'
         | 
| 55 69 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 56 70 | 
             
              name: bundler
         | 
| 57 71 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -145,6 +159,7 @@ extra_rdoc_files: [] | |
| 145 159 | 
             
            files:
         | 
| 146 160 | 
             
            - .gitignore
         | 
| 147 161 | 
             
            - .rspec
         | 
| 162 | 
            +
            - .ruby-version
         | 
| 148 163 | 
             
            - .travis.yml
         | 
| 149 164 | 
             
            - Gemfile
         | 
| 150 165 | 
             
            - LICENSE.txt
         | 
| @@ -156,6 +171,7 @@ files: | |
| 156 171 | 
             
            - lib/stellae/order.rb
         | 
| 157 172 | 
             
            - lib/stellae/request.rb
         | 
| 158 173 | 
             
            - lib/stellae/response.rb
         | 
| 174 | 
            +
            - lib/stellae/state.rb
         | 
| 159 175 | 
             
            - lib/stellae/version.rb
         | 
| 160 176 | 
             
            - spec/lib/client_spec.rb
         | 
| 161 177 | 
             
            - spec/lib/order_spec.rb
         | 
| @@ -165,6 +181,7 @@ files: | |
| 165 181 | 
             
            - spec/vcr/stellae_client/inventory_methods_mapped_inventory_returns_an_array_of_quantity_hashes.yml
         | 
| 166 182 | 
             
            - spec/vcr/stellae_client/inventory_methods_upcs_returns_an_array_of_upcs.yml
         | 
| 167 183 | 
             
            - spec/vcr/stellae_client_send_order_request/sends_an_order_request_and_returns_a_parsed_respose.yml
         | 
| 184 | 
            +
            - spec/vcr/stellae_client_send_order_request/sends_an_order_request_and_returns_a_parsed_respose_old.yml
         | 
| 168 185 | 
             
            - stellae.gemspec
         | 
| 169 186 | 
             
            homepage: http://sellect.com
         | 
| 170 187 | 
             
            licenses:
         | 
| @@ -186,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 186 203 | 
             
                  version: '0'
         | 
| 187 204 | 
             
            requirements: []
         | 
| 188 205 | 
             
            rubyforge_project: 
         | 
| 189 | 
            -
            rubygems_version: 2.4. | 
| 206 | 
            +
            rubygems_version: 2.4.6
         | 
| 190 207 | 
             
            signing_key: 
         | 
| 191 208 | 
             
            specification_version: 4
         | 
| 192 209 | 
             
            summary: This is a library for interfacing with the Stellae Fulfillment API
         | 
| @@ -199,3 +216,4 @@ test_files: | |
| 199 216 | 
             
            - spec/vcr/stellae_client/inventory_methods_mapped_inventory_returns_an_array_of_quantity_hashes.yml
         | 
| 200 217 | 
             
            - spec/vcr/stellae_client/inventory_methods_upcs_returns_an_array_of_upcs.yml
         | 
| 201 218 | 
             
            - spec/vcr/stellae_client_send_order_request/sends_an_order_request_and_returns_a_parsed_respose.yml
         | 
| 219 | 
            +
            - spec/vcr/stellae_client_send_order_request/sends_an_order_request_and_returns_a_parsed_respose_old.yml
         |