reactive_shipping 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (247) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -0
  3. data/.travis.yml +33 -0
  4. data/.yardopts +13 -0
  5. data/CHANGELOG.md +225 -0
  6. data/CONTRIBUTING.md +23 -0
  7. data/Gemfile +3 -0
  8. data/MIT-LICENSE +21 -0
  9. data/README.md +158 -0
  10. data/Rakefile +35 -0
  11. data/dev.yml +17 -0
  12. data/gemfiles/activesupport42.gemfile +5 -0
  13. data/gemfiles/activesupport50.gemfile +6 -0
  14. data/gemfiles/activesupport51.gemfile +5 -0
  15. data/gemfiles/activesupport52.gemfile +5 -0
  16. data/gemfiles/activesupport_master.gemfile +5 -0
  17. data/lib/certs/eParcel.dtd +111 -0
  18. data/lib/reactive_shipping.rb +26 -0
  19. data/lib/reactive_shipping/address_validation_response.rb +30 -0
  20. data/lib/reactive_shipping/carrier.rb +184 -0
  21. data/lib/reactive_shipping/carriers.rb +35 -0
  22. data/lib/reactive_shipping/carriers/australia_post.rb +248 -0
  23. data/lib/reactive_shipping/carriers/benchmark_carrier.rb +31 -0
  24. data/lib/reactive_shipping/carriers/bogus_carrier.rb +12 -0
  25. data/lib/reactive_shipping/carriers/canada_post.rb +263 -0
  26. data/lib/reactive_shipping/carriers/canada_post_pws.rb +908 -0
  27. data/lib/reactive_shipping/carriers/fedex.rb +797 -0
  28. data/lib/reactive_shipping/carriers/kunaki.rb +155 -0
  29. data/lib/reactive_shipping/carriers/new_zealand_post.rb +260 -0
  30. data/lib/reactive_shipping/carriers/shipwire.rb +178 -0
  31. data/lib/reactive_shipping/carriers/stamps.rb +860 -0
  32. data/lib/reactive_shipping/carriers/ups.rb +1060 -0
  33. data/lib/reactive_shipping/carriers/usps.rb +708 -0
  34. data/lib/reactive_shipping/carriers/usps_returns.rb +86 -0
  35. data/lib/reactive_shipping/delivery_date_estimate.rb +20 -0
  36. data/lib/reactive_shipping/delivery_date_estimates_response.rb +11 -0
  37. data/lib/reactive_shipping/errors.rb +35 -0
  38. data/lib/reactive_shipping/external_return_label_request.rb +417 -0
  39. data/lib/reactive_shipping/external_return_label_response.rb +26 -0
  40. data/lib/reactive_shipping/label.rb +10 -0
  41. data/lib/reactive_shipping/label_response.rb +10 -0
  42. data/lib/reactive_shipping/location.rb +166 -0
  43. data/lib/reactive_shipping/package.rb +165 -0
  44. data/lib/reactive_shipping/package_item.rb +60 -0
  45. data/lib/reactive_shipping/rate_estimate.rb +197 -0
  46. data/lib/reactive_shipping/rate_response.rb +33 -0
  47. data/lib/reactive_shipping/response.rb +44 -0
  48. data/lib/reactive_shipping/shipment_event.rb +22 -0
  49. data/lib/reactive_shipping/shipment_packer.rb +108 -0
  50. data/lib/reactive_shipping/shipping_response.rb +34 -0
  51. data/lib/reactive_shipping/tracking_response.rb +120 -0
  52. data/lib/reactive_shipping/version.rb +3 -0
  53. data/reactive_shipping.gemspec +38 -0
  54. data/shipit.rubygems.yml +1 -0
  55. data/test/console.rb +39 -0
  56. data/test/credentials.yml +76 -0
  57. data/test/fixtures/files/label1.pdf +0 -0
  58. data/test/fixtures/files/ups-shipping-label.gif +0 -0
  59. data/test/fixtures/json/australia_post/calculate_domestic.json +13 -0
  60. data/test/fixtures/json/australia_post/calculate_domestic_2.json +19 -0
  61. data/test/fixtures/json/australia_post/calculate_international.json +12 -0
  62. data/test/fixtures/json/australia_post/calculate_international_2.json +15 -0
  63. data/test/fixtures/json/australia_post/error_message.json +5 -0
  64. data/test/fixtures/json/australia_post/service_domestic.json +117 -0
  65. data/test/fixtures/json/australia_post/service_domestic_2.json +117 -0
  66. data/test/fixtures/json/australia_post/service_international.json +76 -0
  67. data/test/fixtures/json/australia_post/service_international_2.json +59 -0
  68. data/test/fixtures/json/newzealandpost/domestic_book.json +1 -0
  69. data/test/fixtures/json/newzealandpost/domestic_default.json +1 -0
  70. data/test/fixtures/json/newzealandpost/domestic_error.json +1 -0
  71. data/test/fixtures/json/newzealandpost/domestic_poster.json +1 -0
  72. data/test/fixtures/json/newzealandpost/domestic_small_half_pound.json +1 -0
  73. data/test/fixtures/json/newzealandpost/international_book.json +1 -0
  74. data/test/fixtures/json/newzealandpost/international_new_zealand_wii.json +1 -0
  75. data/test/fixtures/json/newzealandpost/international_small_half_pound.json +1 -0
  76. data/test/fixtures/json/newzealandpost/international_wii.json +1 -0
  77. data/test/fixtures/xml/canadapost/example_request.xml +25 -0
  78. data/test/fixtures/xml/canadapost/example_response.xml +130 -0
  79. data/test/fixtures/xml/canadapost/example_response_error.xml +16 -0
  80. data/test/fixtures/xml/canadapost/example_response_french.xml +122 -0
  81. data/test/fixtures/xml/canadapost/example_response_with_nil_value.xml +164 -0
  82. data/test/fixtures/xml/canadapost/example_response_with_postal_outlet.xml +155 -0
  83. data/test/fixtures/xml/canadapost/example_response_with_postal_outlet_french.xml +274 -0
  84. data/test/fixtures/xml/canadapost/example_response_with_strange_delivery_date.xml +130 -0
  85. data/test/fixtures/xml/canadapost_pws/dnc_tracking_details_en.xml +112 -0
  86. data/test/fixtures/xml/canadapost_pws/merchant_details_error.xml +7 -0
  87. data/test/fixtures/xml/canadapost_pws/merchant_details_response.xml +7 -0
  88. data/test/fixtures/xml/canadapost_pws/option_response.xml +13 -0
  89. data/test/fixtures/xml/canadapost_pws/option_response_no_conflicts.xml +7 -0
  90. data/test/fixtures/xml/canadapost_pws/rates_info.xml +190 -0
  91. data/test/fixtures/xml/canadapost_pws/rates_info_error.xml +7 -0
  92. data/test/fixtures/xml/canadapost_pws/receipt_response.xml +42 -0
  93. data/test/fixtures/xml/canadapost_pws/receipt_response_no_priced_options.xml +36 -0
  94. data/test/fixtures/xml/canadapost_pws/register_token_error.xml +7 -0
  95. data/test/fixtures/xml/canadapost_pws/register_token_response.xml +3 -0
  96. data/test/fixtures/xml/canadapost_pws/service_options_response.xml +42 -0
  97. data/test/fixtures/xml/canadapost_pws/services_error.xml +6 -0
  98. data/test/fixtures/xml/canadapost_pws/services_response.xml +32 -0
  99. data/test/fixtures/xml/canadapost_pws/shipment_domestic.xml +69 -0
  100. data/test/fixtures/xml/canadapost_pws/shipment_response.xml +20 -0
  101. data/test/fixtures/xml/canadapost_pws/shipment_us.xml +69 -0
  102. data/test/fixtures/xml/canadapost_pws/tracking_details_en.xml +152 -0
  103. data/test/fixtures/xml/canadapost_pws/tracking_details_en_error.xml +7 -0
  104. data/test/fixtures/xml/canadapost_pws/tracking_details_en_undelivered.xml +116 -0
  105. data/test/fixtures/xml/canadapost_pws/tracking_details_fr.xml +156 -0
  106. data/test/fixtures/xml/canadapost_pws/tracking_details_no_expected_delivery_date.xml +40 -0
  107. data/test/fixtures/xml/fedex/create_shipment_response.xml +2 -0
  108. data/test/fixtures/xml/fedex/freight_rate_request.xml +82 -0
  109. data/test/fixtures/xml/fedex/freight_rate_response.xml +506 -0
  110. data/test/fixtures/xml/fedex/invalid_fedex_reply.xml +27 -0
  111. data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_commercial_rate_request.xml +79 -0
  112. data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_no_saturday_rate_request.xml +79 -0
  113. data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_rate_request.xml +80 -0
  114. data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_rate_response.xml +214 -0
  115. data/test/fixtures/xml/fedex/raterequest_reply.xml +213 -0
  116. data/test/fixtures/xml/fedex/raterequest_response_with_ground_home_delivery.xml +206 -0
  117. data/test/fixtures/xml/fedex/reply_without_notifications.xml +185 -0
  118. data/test/fixtures/xml/fedex/tracking_request.xml +29 -0
  119. data/test/fixtures/xml/fedex/tracking_response_bad_tracking_number.xml +20 -0
  120. data/test/fixtures/xml/fedex/tracking_response_delivered_at_door.xml +254 -0
  121. data/test/fixtures/xml/fedex/tracking_response_delivered_at_facility.xml +403 -0
  122. data/test/fixtures/xml/fedex/tracking_response_delivered_with_signature.xml +269 -0
  123. data/test/fixtures/xml/fedex/tracking_response_empty_status_detail.xml +84 -0
  124. data/test/fixtures/xml/fedex/tracking_response_failure_code_9045.xml +52 -0
  125. data/test/fixtures/xml/fedex/tracking_response_failure_code_9080.xml +51 -0
  126. data/test/fixtures/xml/fedex/tracking_response_in_transit.xml +127 -0
  127. data/test/fixtures/xml/fedex/tracking_response_invalid_tracking_number.xml +52 -0
  128. data/test/fixtures/xml/fedex/tracking_response_missing_status_code.xml +89 -0
  129. data/test/fixtures/xml/fedex/tracking_response_multiple_results.xml +100 -0
  130. data/test/fixtures/xml/fedex/tracking_response_not_found.xml +52 -0
  131. data/test/fixtures/xml/fedex/tracking_response_shipment_exception.xml +209 -0
  132. data/test/fixtures/xml/fedex/tracking_response_unable_to_process.xml +32 -0
  133. data/test/fixtures/xml/fedex/tracking_response_with_blank_state.xml +107 -0
  134. data/test/fixtures/xml/fedex/unknown_fedex_document_reply.xml +3 -0
  135. data/test/fixtures/xml/kunaki/invalid_state_response.xml +3 -0
  136. data/test/fixtures/xml/kunaki/no_valid_items_response.xml +3 -0
  137. data/test/fixtures/xml/kunaki/successful_rates_response.xml +3 -0
  138. data/test/fixtures/xml/kunaki/unsuccessful_rates_response.xml +9 -0
  139. data/test/fixtures/xml/shipwire/international_rates_response.xml +17 -0
  140. data/test/fixtures/xml/shipwire/new_carrier_rate_response.xml +18 -0
  141. data/test/fixtures/xml/shipwire/no_rates_response.xml +7 -0
  142. data/test/fixtures/xml/shipwire/rates_response.xml +36 -0
  143. data/test/fixtures/xml/shipwire/rates_response_no_estimate.xml +14 -0
  144. data/test/fixtures/xml/stamps/authenticate_user_request.xml +15 -0
  145. data/test/fixtures/xml/stamps/authenticate_user_response.xml +10 -0
  146. data/test/fixtures/xml/stamps/cleanse_address_request.xml +19 -0
  147. data/test/fixtures/xml/stamps/cleanse_address_response.xml +27 -0
  148. data/test/fixtures/xml/stamps/create_indicium_request.xml +69 -0
  149. data/test/fixtures/xml/stamps/create_indicium_response.xml +40 -0
  150. data/test/fixtures/xml/stamps/expired_authenticator_response.xml +15 -0
  151. data/test/fixtures/xml/stamps/get_account_info_request.xml +11 -0
  152. data/test/fixtures/xml/stamps/get_account_info_response.xml +36 -0
  153. data/test/fixtures/xml/stamps/get_purchase_status_request.xml +12 -0
  154. data/test/fixtures/xml/stamps/get_purchase_status_response.xml +16 -0
  155. data/test/fixtures/xml/stamps/get_rates_request.xml +19 -0
  156. data/test/fixtures/xml/stamps/get_rates_response.xml +351 -0
  157. data/test/fixtures/xml/stamps/purchase_postage_request.xml +13 -0
  158. data/test/fixtures/xml/stamps/purchase_postage_response.xml +17 -0
  159. data/test/fixtures/xml/stamps/track_shipment_request.xml +12 -0
  160. data/test/fixtures/xml/stamps/track_shipment_response.xml +45 -0
  161. data/test/fixtures/xml/ups/access_request.xml +6 -0
  162. data/test/fixtures/xml/ups/delivered_shipment_with_refund.xml +290 -0
  163. data/test/fixtures/xml/ups/delivered_shipment_without_events_tracking_response.xml +62 -0
  164. data/test/fixtures/xml/ups/delivery_dates_response.xml +140 -0
  165. data/test/fixtures/xml/ups/example_tracking_response.xml +53 -0
  166. data/test/fixtures/xml/ups/in_transit_shipment.xml +183 -0
  167. data/test/fixtures/xml/ups/out_for_delivery_shipment.xml +165 -0
  168. data/test/fixtures/xml/ups/package_exceeds_maximum_length.xml +12 -0
  169. data/test/fixtures/xml/ups/rate_single_service.xml +54 -0
  170. data/test/fixtures/xml/ups/rescheduled_shipment.xml +204 -0
  171. data/test/fixtures/xml/ups/shipment_accept_response.xml +42 -0
  172. data/test/fixtures/xml/ups/shipment_confirm_response.xml +33 -0
  173. data/test/fixtures/xml/ups/shipment_from_tiger_direct.xml +222 -0
  174. data/test/fixtures/xml/ups/test_real_home_as_residential_destination_response.xml +290 -0
  175. data/test/fixtures/xml/ups/test_real_home_as_residential_destination_response_with_insured.xml +289 -0
  176. data/test/fixtures/xml/ups/test_real_home_as_residential_destination_with_origin_account_response.xml +311 -0
  177. data/test/fixtures/xml/ups/tracking_request.xml +9 -0
  178. data/test/fixtures/xml/ups/triple_accept_response.xml +72 -0
  179. data/test/fixtures/xml/ups/triple_confirm_response.xml +32 -0
  180. data/test/fixtures/xml/ups/void_shipment_response.xml +11 -0
  181. data/test/fixtures/xml/usps/api_error_rate_response.xml +53 -0
  182. data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_commercial_base_rate_response.xml +2 -0
  183. data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_commercial_plus_rate_response.xml +258 -0
  184. data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_rate_response.xml +108 -0
  185. data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_commercial_base_rate_response.xml +84 -0
  186. data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_commercial_plus_rate_response.xml +212 -0
  187. data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_rate_response.xml +230 -0
  188. data/test/fixtures/xml/usps/first_class_packages_with_invalid_mail_type_response.xml +12 -0
  189. data/test/fixtures/xml/usps/first_class_packages_with_mail_type_response.xml +16 -0
  190. data/test/fixtures/xml/usps/first_class_packages_without_mail_type_response.xml +12 -0
  191. data/test/fixtures/xml/usps/invalid_xml_response.xml +10 -0
  192. data/test/fixtures/xml/usps/invalid_xml_tracking_response_error.xml +2 -0
  193. data/test/fixtures/xml/usps/tracking_request.xml +10 -0
  194. data/test/fixtures/xml/usps/tracking_request_batch.xml +12 -0
  195. data/test/fixtures/xml/usps/tracking_response.xml +162 -0
  196. data/test/fixtures/xml/usps/tracking_response_alt.xml +53 -0
  197. data/test/fixtures/xml/usps/tracking_response_batch.xml +231 -0
  198. data/test/fixtures/xml/usps/tracking_response_failure.xml +11 -0
  199. data/test/fixtures/xml/usps/tracking_response_not_available.xml +12 -0
  200. data/test/fixtures/xml/usps/tracking_response_test_error.xml +8 -0
  201. data/test/fixtures/xml/usps/us_rate_request.xml +18 -0
  202. data/test/fixtures/xml/usps/us_rate_request_large.xml +18 -0
  203. data/test/fixtures/xml/usps/world_rate_request_only_country.xml +22 -0
  204. data/test/fixtures/xml/usps/world_rate_request_with_value.xml +24 -0
  205. data/test/fixtures/xml/usps/world_rate_request_without_value.xml +24 -0
  206. data/test/fixtures/xml/usps_returns/external_return_label_response.xml +2 -0
  207. data/test/fixtures/xml/usps_returns/external_return_label_response_failure.xml +10 -0
  208. data/test/remote/australia_post_test.rb +140 -0
  209. data/test/remote/canada_post_pws_platform_test.rb +259 -0
  210. data/test/remote/canada_post_pws_test.rb +169 -0
  211. data/test/remote/canada_post_test.rb +55 -0
  212. data/test/remote/fedex_test.rb +400 -0
  213. data/test/remote/kunaki_test.rb +37 -0
  214. data/test/remote/new_zealand_post_test.rb +149 -0
  215. data/test/remote/shipwire_test.rb +84 -0
  216. data/test/remote/stamps_test.rb +396 -0
  217. data/test/remote/usps_returns_test.rb +72 -0
  218. data/test/remote/usps_test.rb +243 -0
  219. data/test/test_helper.rb +296 -0
  220. data/test/unit/carrier_test.rb +130 -0
  221. data/test/unit/carriers/australia_post_test.rb +181 -0
  222. data/test/unit/carriers/benchmark_test.rb +18 -0
  223. data/test/unit/carriers/canada_post_pws_rating_test.rb +379 -0
  224. data/test/unit/carriers/canada_post_pws_register_test.rb +76 -0
  225. data/test/unit/carriers/canada_post_pws_shipping_test.rb +258 -0
  226. data/test/unit/carriers/canada_post_pws_test.rb +59 -0
  227. data/test/unit/carriers/canada_post_pws_tracking_test.rb +154 -0
  228. data/test/unit/carriers/canada_post_test.rb +148 -0
  229. data/test/unit/carriers/fedex_test.rb +693 -0
  230. data/test/unit/carriers/kunaki_test.rb +56 -0
  231. data/test/unit/carriers/new_zealand_post_test.rb +177 -0
  232. data/test/unit/carriers/shipwire_test.rb +188 -0
  233. data/test/unit/carriers/stamps_test.rb +245 -0
  234. data/test/unit/carriers/ups_test.rb +580 -0
  235. data/test/unit/carriers/usps_returns_test.rb +45 -0
  236. data/test/unit/carriers/usps_test.rb +633 -0
  237. data/test/unit/carriers_test.rb +16 -0
  238. data/test/unit/external_return_label_request_test.rb +258 -0
  239. data/test/unit/location_test.rb +234 -0
  240. data/test/unit/package_item_test.rb +232 -0
  241. data/test/unit/package_test.rb +404 -0
  242. data/test/unit/rate_estimate_test.rb +93 -0
  243. data/test/unit/response_test.rb +38 -0
  244. data/test/unit/shipment_event_test.rb +20 -0
  245. data/test/unit/shipment_packer_test.rb +212 -0
  246. data/test/unit/tracking_response_test.rb +41 -0
  247. metadata +684 -0
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <TrackReply xmlns="http://fedex.com/ws/track/v7" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <HighestSeverity>SUCCESS</HighestSeverity>
4
+ <Notifications>
5
+ <Severity>SUCCESS</Severity>
6
+ <Source>trck</Source>
7
+ <Code>0</Code>
8
+ <Message>Request was successfully processed.</Message>
9
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
10
+ </Notifications>
11
+ <TransactionDetail>
12
+ <CustomerTransactionId>ReactiveShipping</CustomerTransactionId>
13
+ </TransactionDetail>
14
+ <Version>
15
+ <ServiceId>trck</ServiceId>
16
+ <Major>7</Major>
17
+ <Intermediate>0</Intermediate>
18
+ <Minor>0</Minor>
19
+ </Version>
20
+ <CompletedTrackDetails>
21
+ <HighestSeverity>FAILURE</HighestSeverity>
22
+ <Notifications>
23
+ <Severity>FAILURE</Severity>
24
+ <Source>trck</Source>
25
+ <Code>6330</Code>
26
+ <Message>Sorry, we are unable to process your tracking request. Please retry later, or contact Customer Service at 1.800.Go.FedEx(R) 800.463.3339.</Message>
27
+ <LocalizedMessage>Sorry, we are unable to process your tracking request. Please retry later, or contact Customer Service at 1.800.Go.FedEx(R) 800.463.3339.</LocalizedMessage>
28
+ </Notifications>
29
+ <DuplicateWaybill>false</DuplicateWaybill>
30
+ <MoreData>false</MoreData>
31
+ </CompletedTrackDetails>
32
+ </TrackReply>
@@ -0,0 +1,107 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <TrackReply xmlns="http://fedex.com/ws/track/v7" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <HighestSeverity>SUCCESS</HighestSeverity>
4
+ <Notifications>
5
+ <Severity>SUCCESS</Severity>
6
+ <Source>trck</Source>
7
+ <Code>0</Code>
8
+ <Message>Request was successfully processed.</Message>
9
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
10
+ </Notifications>
11
+ <TransactionDetail>
12
+ <CustomerTransactionId>ReactiveShipping</CustomerTransactionId>
13
+ </TransactionDetail>
14
+ <Version>
15
+ <ServiceId>trck</ServiceId>
16
+ <Major>7</Major>
17
+ <Intermediate>0</Intermediate>
18
+ <Minor>0</Minor>
19
+ </Version>
20
+ <CompletedTrackDetails>
21
+ <HighestSeverity>SUCCESS</HighestSeverity>
22
+ <Notifications>
23
+ <Severity>SUCCESS</Severity>
24
+ <Source>trck</Source>
25
+ <Code>0</Code>
26
+ <Message>Request was successfully processed.</Message>
27
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
28
+ </Notifications>
29
+ <DuplicateWaybill>false</DuplicateWaybill>
30
+ <MoreData>false</MoreData>
31
+ <TrackDetails>
32
+ <Notification>
33
+ <Severity>SUCCESS</Severity>
34
+ <Source>trck</Source>
35
+ <Code>0</Code>
36
+ <Message>Request was successfully processed.</Message>
37
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
38
+ </Notification>
39
+ <TrackingNumber>798701052354</TrackingNumber>
40
+ <TrackingNumberUniqueIdentifier>2456777000~798701052354~FX</TrackingNumberUniqueIdentifier>
41
+ <StatusDetail>
42
+ <Code>DL</Code>
43
+ <Description>Delivered</Description>
44
+ <Location>
45
+ <Residential>false</Residential>
46
+ </Location>
47
+ </StatusDetail>
48
+ <CarrierCode>FDXE</CarrierCode>
49
+ <OperatingCompanyOrCarrierDescription>FedEx Express</OperatingCompanyOrCarrierDescription>
50
+ <Service>
51
+ <Type>PRIORITY_OVERNIGHT</Type>
52
+ <Description>FedEx International Priority</Description>
53
+ </Service>
54
+ <PackageSequenceNumber>0</PackageSequenceNumber>
55
+ <PackageCount>0</PackageCount>
56
+ <SpecialHandlings>
57
+ <Type>DELIVER_WEEKDAY</Type>
58
+ <Description>Deliver Weekday</Description>
59
+ <PaymentType>OTHER</PaymentType>
60
+ </SpecialHandlings>
61
+ <SpecialHandlings>
62
+ <Type>RESIDENTIAL_DELIVERY</Type>
63
+ <Description>Residential Delivery</Description>
64
+ <PaymentType>OTHER</PaymentType>
65
+ </SpecialHandlings>
66
+ <ShipTimestamp>2014-04-30T15:27:00+00:00</ShipTimestamp>
67
+ <DestinationAddress>
68
+ <City>SAITAMA</City>
69
+ <CountryCode>JP</CountryCode>
70
+ <CountryName>Japan</CountryName>
71
+ <Residential>false</Residential>
72
+ </DestinationAddress>
73
+ <ActualDeliveryTimestamp>2014-05-08T19:02:00+00:00</ActualDeliveryTimestamp>
74
+ <ActualDeliveryAddress>
75
+ <City>SAITAMA</City>
76
+ <CountryCode>JP</CountryCode>
77
+ <CountryName>Japan</CountryName>
78
+ <Residential>false</Residential>
79
+ </ActualDeliveryAddress>
80
+ <DeliveryAttempts>0</DeliveryAttempts>
81
+ <DeliverySignatureName>..SAITOU</DeliverySignatureName>
82
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
83
+ <Signature>
84
+ <Notifications>
85
+ <Severity>ERROR</Severity>
86
+ <Source>trck</Source>
87
+ <Code>4550</Code>
88
+ <Message>Signature images are not available for display for shipments to this country.</Message>
89
+ <LocalizedMessage>Signature images are not available for display for shipments to this country.</LocalizedMessage>
90
+ </Notifications>
91
+ </Signature>
92
+ <RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
93
+ <Events>
94
+ <Timestamp>2014-05-08T19:02:00+00:00</Timestamp>
95
+ <EventType>DL</EventType>
96
+ <EventDescription>Delivered</EventDescription>
97
+ <Address>
98
+ <City>SAITAMA</City>
99
+ <PostalCode>34800</PostalCode>
100
+ <CountryCode>JP</CountryCode>
101
+ <Residential>false</Residential>
102
+ </Address>
103
+ <ArrivalLocation>DELIVERY_LOCATION</ArrivalLocation>
104
+ </Events>
105
+ </TrackDetails>
106
+ </CompletedTrackDetails>
107
+ </TrackReply>
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <v6:RandomElement xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:v6="http://fedex.com/ws/rate/v6">
3
+ </v6:RandomElement>
@@ -0,0 +1,3 @@
1
+ <HTML>
2
+ <BODY>
3
+ <Response><ErrorCode>5</ErrorCode><ErrorText>State_Province element is not valid</ErrorText></Response>
@@ -0,0 +1,3 @@
1
+ <HTML>
2
+ <BODY>
3
+ <Response><ErrorCode>400</ErrorCode><ErrorText>No items on a scale</ErrorText></Response>
@@ -0,0 +1,3 @@
1
+ <HTML>
2
+ <BODY>
3
+ <Response><ErrorCode>0</ErrorCode><ErrorText>success</ErrorText><Option><Description>USPS Priority Mail</Description><DeliveryTime>1-3 business days</DeliveryTime><Price>8.00</Price></Option><Option><Description>UPS Ground</Description><DeliveryTime>1-5 business days</DeliveryTime><Price>12.34</Price></Option><Option><Description>UPS 2nd Day Air</Description><DeliveryTime>2 business days</DeliveryTime><Price>21.86</Price></Option><Option><Description>UPS Next Day Air Saver</Description><DeliveryTime>1 business day</DeliveryTime><Price>36.05</Price></Option></Response>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0"?>
2
+ <HTML>
3
+ <BODY>
4
+ <Response>
5
+ <ErrorCode>100</ErrorCode>
6
+ <ErrorText>Request contains invalid XML syntax</ErrorText>
7
+ </Response>
8
+ </BODY>
9
+ </HTML>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0"?>
2
+ <RateResponse>
3
+ <Status>OK</Status>
4
+ <Order sequence="1">
5
+ <Quotes>
6
+ <Quote method="INTL">
7
+ <Warehouse>UK</Warehouse>
8
+ <Service>UPS Standard</Service>
9
+ <Cost currency="USD">28.06</Cost>
10
+ <DeliveryEstimate>
11
+ <Minimum units="days">1</Minimum>
12
+ <Maximum units="days">5</Maximum>
13
+ </DeliveryEstimate>
14
+ </Quote>
15
+ </Quotes>
16
+ </Order>
17
+ </RateResponse>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE RateResponse SYSTEM "http://www.shipwire.com/exec/download/RateResponse.dtd">
3
+ <RateResponse>
4
+ <Status>OK</Status>
5
+ <Order sequence="1">
6
+ <Quotes>
7
+ <Quote method="GD">
8
+ <Warehouse>Reno (Pick/Pack Saver)</Warehouse>
9
+ <Service>FESCO Ground</Service>
10
+ <Cost currency="USD">7.73</Cost>
11
+ <DeliveryEstimate>
12
+ <Minimum units="days">1</Minimum>
13
+ <Maximum units="days">5</Maximum>
14
+ </DeliveryEstimate>
15
+ </Quote>
16
+ </Quotes>
17
+ </Order>
18
+ </RateResponse>
@@ -0,0 +1,7 @@
1
+ <RateResponse>
2
+ <Status>OK</Status>
3
+ <Order sequence="1">
4
+ <Quotes>
5
+ </Quotes>
6
+ </Order>
7
+ </RateResponse>
@@ -0,0 +1,36 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE RateResponse SYSTEM "http://www.shipwire.com/exec/download/RateResponse.dtd">
3
+ <RateResponse>
4
+ <Status>OK</Status>
5
+ <Order sequence="1">
6
+ <Quotes>
7
+ <Quote method="GD">
8
+ <Warehouse>Reno (Pick/Pack Saver)</Warehouse>
9
+ <Service>UPS Ground</Service>
10
+ <Cost currency="USD">7.73</Cost>
11
+ <DeliveryEstimate>
12
+ <Minimum units="days">1</Minimum>
13
+ <Maximum units="days">5</Maximum>
14
+ </DeliveryEstimate>
15
+ </Quote>
16
+ <Quote method="2D">
17
+ <Warehouse>Reno (Pick/Pack Saver)</Warehouse>
18
+ <Service>UPS Second Day Air</Service>
19
+ <Cost currency="USD">13.64</Cost>
20
+ <DeliveryEstimate>
21
+ <Minimum units="days">2</Minimum>
22
+ <Maximum units="days">2</Maximum>
23
+ </DeliveryEstimate>
24
+ </Quote>
25
+ <Quote method="1D">
26
+ <Warehouse>Reno (Pick/Pack Saver)</Warehouse>
27
+ <Service>USPS Express Mail</Service>
28
+ <Cost currency="USD">25.25</Cost>
29
+ <DeliveryEstimate>
30
+ <Minimum units="days">1</Minimum>
31
+ <Maximum units="days">1</Maximum>
32
+ </DeliveryEstimate>
33
+ </Quote>
34
+ </Quotes>
35
+ </Order>
36
+ </RateResponse>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE RateResponse SYSTEM "http://www.shipwire.com/exec/download/RateResponse.dtd">
3
+ <RateResponse>
4
+ <Status>OK</Status>
5
+ <Order sequence="1">
6
+ <Quotes>
7
+ <Quote method="GD">
8
+ <Warehouse>Reno (Pick/Pack Saver)</Warehouse>
9
+ <Service>UPS Ground</Service>
10
+ <Cost currency="USD">7.73</Cost>
11
+ </Quote>
12
+ </Quotes>
13
+ </Order>
14
+ </RateResponse>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5
+ xmlns:tns="http://stamps.com/xml/namespace/2013/10/swsim/swsimv33">
6
+ <soap:Body>
7
+ <tns:AuthenticateUser>
8
+ <tns:Credentials>
9
+ <tns:IntegrationID>StampsDotComIntegrationId</tns:IntegrationID>
10
+ <tns:Username>StampsDotComUsername</tns:Username>
11
+ <tns:Password>StampsDotComPassword</tns:Password>
12
+ </tns:Credentials>
13
+ </tns:AuthenticateUser>
14
+ </soap:Body>
15
+ </soap:Envelope>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
5
+ <soap:Body>
6
+ <AuthenticateUserResponse xmlns="http://stamps.com/xml/namespace/2013/10/swsim/swsimv33">
7
+ <Authenticator>***authenticator***</Authenticator>
8
+ </AuthenticateUserResponse>
9
+ </soap:Body>
10
+ </soap:Envelope>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5
+ xmlns:tns="http://stamps.com/xml/namespace/2013/10/swsim/swsimv33">
6
+ <soap:Body>
7
+ <tns:CleanseAddress>
8
+ <tns:Authenticator>***authenticator***</tns:Authenticator>
9
+ <tns:Address>
10
+ <tns:FullName>Geoff Anton</tns:FullName>
11
+ <tns:Company>Stamps.com</tns:Company>
12
+ <tns:Address1>12959 Coral Tree Place</tns:Address1>
13
+ <tns:City>Los Angeles</tns:City>
14
+ <tns:State>CA</tns:State>
15
+ <tns:ZIPCode>90066</tns:ZIPCode>
16
+ </tns:Address>
17
+ </tns:CleanseAddress>
18
+ </soap:Body>
19
+ </soap:Envelope>
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
5
+ <soap:Body>
6
+ <CleanseAddressResponse xmlns="http://stamps.com/xml/namespace/2013/10/swsim/swsimv33">
7
+ <Authenticator>***authenticator***</Authenticator>
8
+ <Address>
9
+ <FullName>GEOFF ANTON</FullName>
10
+ <Company>STAMPS.COM</Company>
11
+ <Address1>12959 CORAL TREE PL</Address1>
12
+ <Address2 />
13
+ <City>LOS ANGELES</City>
14
+ <State>CA</State>
15
+ <ZIPCode>90066</ZIPCode>
16
+ <ZIPCodeAddOn>7020</ZIPCodeAddOn>
17
+ <DPB>59</DPB>
18
+ <CheckDigit>6</CheckDigit>
19
+ <Urbanization />
20
+ <CleanseHash>7SWYAzuNh82cWhIQyRFXRNa71HFkZWFkYmVlZg==20100210</CleanseHash>
21
+ <OverrideHash>Tdwp4JlTc02DhscYxbI7l7o08apkZWFkYmVlZg==20100210</OverrideHash>
22
+ </Address>
23
+ <AddressMatch>true</AddressMatch>
24
+ <CityStateZipOK>true</CityStateZipOK>
25
+ </CleanseAddressResponse>
26
+ </soap:Body>
27
+ </soap:Envelope>
@@ -0,0 +1,69 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4
+ xmlns:tns="http://stamps.com/xml/namespace/2013/10/swsim/swsimv33">
5
+ <soap:Body>
6
+ <tns:CreateIndicium>
7
+ <tns:Authenticator>***authenticator***</tns:Authenticator>
8
+ <tns:IntegratorTxID>1234567890ABCDEF</tns:IntegratorTxID>
9
+ <tns:TrackingNumber/>
10
+ <tns:Rate>
11
+ <tns:FromZIPCode>90405</tns:FromZIPCode>
12
+ <tns:ToZIPCode>90066</tns:ToZIPCode>
13
+ <tns:Amount>10</tns:Amount>
14
+ <tns:ServiceType>US-PM</tns:ServiceType>
15
+ <tns:DeliverDays>1-1</tns:DeliverDays>
16
+ <tns:WeightLb>12</tns:WeightLb>
17
+ <tns:WeightOz>0</tns:WeightOz>
18
+ <tns:PackageType>Package</tns:PackageType>
19
+ <tns:ShipDate>2009-08-31</tns:ShipDate>
20
+ <tns:InsuredValue>100.00</tns:InsuredValue>
21
+ <tns:RectangularShaped>false</tns:RectangularShaped>
22
+ <tns:AddOns>
23
+ <tns:AddOn>
24
+ <tns:Amount>0</tns:Amount>
25
+ <tns:AddOnType>US-A-DC</tns:AddOnType>
26
+ </tns:AddOn>
27
+ <tns:AddOn>
28
+ <tns:Amount>1.3</tns:Amount>
29
+ <tns:AddOnType>SC-A-INS</tns:AddOnType>
30
+ </tns:AddOn>
31
+ </tns:AddOns>
32
+ </tns:Rate>
33
+ <tns:From>
34
+ <tns:FullName>Some Body</tns:FullName>
35
+ <tns:Address1>3420 Ocean Park Bl</tns:Address1>
36
+ <tns:Address2>Ste 1000</tns:Address2>
37
+ <tns:City>Santa Monica</tns:City>
38
+ <tns:State>CA</tns:State>
39
+ <tns:ZIPCode>90405</tns:ZIPCode>
40
+ </tns:From>
41
+ <tns:To>
42
+ <tns:FullName>GEOFF ANTON</tns:FullName>
43
+ <tns:NamePrefix/>
44
+ <tns:FirstName/>
45
+ <tns:MiddleName/>
46
+ <tns:LastName/>
47
+ <tns:NameSuffix/>
48
+ <tns:Title/>
49
+ <tns:Department/>
50
+ <tns:Company>STAMPS.COM</tns:Company>
51
+ <tns:Address1>12959 CORAL TREE PL</tns:Address1>
52
+ <tns:Address2/>
53
+ <tns:City>LOS ANGELES</tns:City>
54
+ <tns:State>CA</tns:State>
55
+ <tns:ZIPCode>90066</tns:ZIPCode>
56
+ <tns:ZIPCodeAddOn>7020</tns:ZIPCodeAddOn>
57
+ <tns:DPB>59</tns:DPB>
58
+ <tns:CheckDigit>6</tns:CheckDigit>
59
+ <tns:Province/>
60
+ <tns:PostalCode/>
61
+ <tns:Country/>
62
+ <tns:Urbanization/>
63
+ <tns:PhoneNumber/>
64
+ <tns:Extension/>
65
+ <tns:CleanseHash>7SWYAzuNh82cWhIQyRFXRNa71HFkZWFkYmVlZg==20070513</tns:CleanseHash>
66
+ </tns:To>
67
+ </tns:CreateIndicium>
68
+ </soap:Body>
69
+ </soap:Envelope>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
5
+ <soap:Body>
6
+ <CreateIndiciumResponse xmlns="http://stamps.com/xml/namespace/2014/01/swsim/swsimv34">
7
+ <Authenticator>***authenticator***</Authenticator>
8
+ <IntegratorTxID>1234567890ABCDEF</IntegratorTxID>
9
+ <TrackingNumber>9101010521290895036903</TrackingNumber>
10
+ <Rate>
11
+ <FromZIPCode>90405</FromZIPCode>
12
+ <ToZIPCode>90066</ToZIPCode>
13
+ <Amount>10.36</Amount>
14
+ <ServiceType>US-PM</ServiceType>
15
+ <DeliverDays>1-3</DeliverDays>
16
+ <WeightOz>192</WeightOz>
17
+ <PackageType>Package</PackageType>
18
+ <ShipDate>2009-08-31</ShipDate>
19
+ <InsuredValue>100.00</InsuredValue>
20
+ <RectangularShaped>false</RectangularShaped>
21
+ <DimWeighting>N</DimWeighting>
22
+ <AddOns>
23
+ <AddOnV5>
24
+ <AddOnType>US-A-DC</AddOnType>
25
+ </AddOnV5>
26
+ <AddOnV5>
27
+ <Amount>1.85</Amount>
28
+ <AddOnType>SC-A-INS</AddOnType>
29
+ </AddOnV5>
30
+ </AddOns>
31
+ </Rate>
32
+ <StampsTxID>0dd49299-d89c-4997-b8ac-28db5542edc9</StampsTxID>
33
+ <URL>https://swsim.testing.stamps.com/label/label.ashx/label-200.png</URL>
34
+ <PostageBalance>
35
+ <AvailablePostage>123.45</AvailablePostage>
36
+ <ControlTotal>543.21</ControlTotal>
37
+ </PostageBalance>
38
+ </CreateIndiciumResponse>
39
+ </soap:Body>
40
+ </soap:Envelope>