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,127 @@
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>123456789012</TrackingNumber>
40
+ <TrackingNumberUniqueIdentifier>2456979001~123456789012~FX</TrackingNumberUniqueIdentifier>
41
+ <StatusDetail>
42
+ <CreationTime>2014-11-18T00:00:00</CreationTime>
43
+ <Code>IT</Code>
44
+ <Description>In transit</Description>
45
+ <Location>
46
+ <City>ALEXANDRIA</City>
47
+ <CountryCode>AU</CountryCode>
48
+ <CountryName>Australia</CountryName>
49
+ <Residential>false</Residential>
50
+ </Location>
51
+ <AncillaryDetails>
52
+ <Reason>72</Reason>
53
+ <ReasonDescription>Package available for clearance</ReasonDescription>
54
+ </AncillaryDetails>
55
+ </StatusDetail>
56
+ <ServiceCommitMessage>No estimated delivery date available at this time.</ServiceCommitMessage>
57
+ <DestinationServiceArea>EDDUNAVAILABLE</DestinationServiceArea>
58
+ <CarrierCode>FDXE</CarrierCode>
59
+ <OperatingCompanyOrCarrierDescription>FedEx Express</OperatingCompanyOrCarrierDescription>
60
+ <OtherIdentifiers>
61
+ <PackageIdentifier>
62
+ <Type>SHIPPER_REFERENCE</Type>
63
+ <Value>0010-4016328-C</Value>
64
+ </PackageIdentifier>
65
+ </OtherIdentifiers>
66
+ <Service>
67
+ <Type>PRIORITY_OVERNIGHT</Type>
68
+ <Description>FedEx Priority Overnight</Description>
69
+ <ShortDescription>PO</ShortDescription>
70
+ </Service>
71
+ <ShipmentWeight>
72
+ <Units>LB</Units>
73
+ <Value>0.5</Value>
74
+ </ShipmentWeight>
75
+ <Packaging>Your Packaging</Packaging>
76
+ <PackagingType>YOUR_PACKAGING</PackagingType>
77
+ <PackageSequenceNumber>0</PackageSequenceNumber>
78
+ <PackageCount>6</PackageCount>
79
+ <Commodities>
80
+ <NumberOfPieces>0</NumberOfPieces>
81
+ <Quantity>0.0</Quantity>
82
+ </Commodities>
83
+ <SpecialHandlings>
84
+ <Type>DELIVER_WEEKDAY</Type>
85
+ <Description>Deliver Weekday</Description>
86
+ <PaymentType>OTHER</PaymentType>
87
+ </SpecialHandlings>
88
+ <ShipTimestamp>2014-11-17T22:39:00+11:00</ShipTimestamp>
89
+ <DestinationAddress>
90
+ <City>GRAFTON</City>
91
+ <StateOrProvinceCode>ON</StateOrProvinceCode>
92
+ <CountryCode>AU</CountryCode>
93
+ <CountryName>Australia</CountryName>
94
+ <Residential>false</Residential>
95
+ </DestinationAddress>
96
+ <DeliveryAttempts>0</DeliveryAttempts>
97
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
98
+ <Signature>
99
+ <Notifications>
100
+ <Severity>ERROR</Severity>
101
+ <Source>trck</Source>
102
+ <Code>4550</Code>
103
+ <Message>Signature images are not available for display for shipments to this country.</Message>
104
+ <LocalizedMessage>Signature images are not available for display for shipments to this country.</LocalizedMessage>
105
+ </Notifications>
106
+ </Signature>
107
+ <NotificationEventsAvailable>ON_DELIVERY</NotificationEventsAvailable>
108
+ <NotificationEventsAvailable>ON_EXCEPTION</NotificationEventsAvailable>
109
+ <RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
110
+ <Events>
111
+ <Timestamp>2014-11-18T18:13:00+11:00</Timestamp>
112
+ <EventType>IT</EventType>
113
+ <EventDescription>In transit</EventDescription>
114
+ <StatusExceptionCode>72</StatusExceptionCode>
115
+ <StatusExceptionDescription>Package available for clearance</StatusExceptionDescription>
116
+ <Address>
117
+ <City>ALEXANDRIA</City>
118
+ <PostalCode>2015</PostalCode>
119
+ <CountryCode>AU</CountryCode>
120
+ <CountryName>Australia</CountryName>
121
+ <Residential>false</Residential>
122
+ </Address>
123
+ <ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
124
+ </Events>
125
+ </TrackDetails>
126
+ </CompletedTrackDetails>
127
+ </TrackReply>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <TrackReply xmlns="http:igc/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>ERROR</Severity>
34
+ <Source>trck</Source>
35
+ <Code>6035</Code>
36
+ <Message>Invalid tracking numbers. Please check the following numbers and resubmit.</Message>
37
+ <LocalizedMessage>Invalid tracking numbers. Please check the following numbers and resubmit.</LocalizedMessage>
38
+ </Notification>
39
+ <TrackingNumber>123456789013</TrackingNumber>
40
+ <StatusDetail>
41
+ <Location>
42
+ <Residential>false</Residential>
43
+ </Location>
44
+ </StatusDetail>
45
+ <PackageSequenceNumber>0</PackageSequenceNumber>
46
+ <PackageCount>0</PackageCount>
47
+ <DeliveryAttempts>0</DeliveryAttempts>
48
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
49
+ <RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
50
+ </TrackDetails>
51
+ </CompletedTrackDetails>
52
+ </TrackReply>
@@ -0,0 +1,89 @@
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>123456789012</TrackingNumber>
40
+ <TrackingNumberUniqueIdentifier>123456789012~123456789012~FX</TrackingNumberUniqueIdentifier>
41
+ <StatusDetail>
42
+ <Location>
43
+ <Residential>false</Residential>
44
+ </Location>
45
+ </StatusDetail>
46
+ <CarrierCode>FDXE</CarrierCode>
47
+ <OperatingCompanyOrCarrierDescription>FedEx Express</OperatingCompanyOrCarrierDescription>
48
+ <Service>
49
+ <Type>STANDARD_OVERNIGHT</Type>
50
+ <Description>FedEx Standard Overnight</Description>
51
+ </Service>
52
+ <PackageSequenceNumber>0</PackageSequenceNumber>
53
+ <PackageCount>0</PackageCount>
54
+ <SpecialHandlings>
55
+ <Type>DELIVER_WEEKDAY</Type>
56
+ <Description>Deliver Weekday</Description>
57
+ <PaymentType>OTHER</PaymentType>
58
+ </SpecialHandlings>
59
+ <SpecialHandlings>
60
+ <Type>RESIDENTIAL_DELIVERY</Type>
61
+ <Description>Residential Delivery</Description>
62
+ <PaymentType>OTHER</PaymentType>
63
+ </SpecialHandlings>
64
+ <SpecialHandlings>
65
+ <Type>DIRECT_SIGNATURE_OPTION</Type>
66
+ <Description>Direct Signature Required</Description>
67
+ <PaymentType>OTHER</PaymentType>
68
+ </SpecialHandlings>
69
+ <ShipTimestamp>2014-05-30T12:19:00+00:00</ShipTimestamp>
70
+ <DestinationAddress>
71
+ <City>COLUMBIA</City>
72
+ <StateOrProvinceCode>SC</StateOrProvinceCode>
73
+ <CountryCode>US</CountryCode>
74
+ <CountryName>United States</CountryName>
75
+ <Residential>false</Residential>
76
+ </DestinationAddress>
77
+ <ActualDeliveryAddress>
78
+ <City>COLUMBIA</City>
79
+ <StateOrProvinceCode>SC</StateOrProvinceCode>
80
+ <CountryCode>US</CountryCode>
81
+ <CountryName>United States</CountryName>
82
+ <Residential>false</Residential>
83
+ </ActualDeliveryAddress>
84
+ <DeliveryAttempts>0</DeliveryAttempts>
85
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
86
+ <RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
87
+ </TrackDetails>
88
+ </CompletedTrackDetails>
89
+ </TrackReply>
@@ -0,0 +1,100 @@
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
+ <DuplicateWaybill>true</DuplicateWaybill>
23
+ <MoreData>false</MoreData>
24
+ <TrackDetails>
25
+ <Notification>
26
+ <Severity>SUCCESS</Severity>
27
+ <Source>trck</Source>
28
+ <Code>0</Code>
29
+ <Message>Request was successfully processed.</Message>
30
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
31
+ </Notification>
32
+ <TrackingNumber>123456789012</TrackingNumber>
33
+ <TrackingNumberUniqueIdentifier>2456987000~123456789012~FX</TrackingNumberUniqueIdentifier>
34
+ <CarrierCode>FDXE</CarrierCode>
35
+ <OperatingCompanyOrCarrierDescription>FedEx Express</OperatingCompanyOrCarrierDescription>
36
+ <PackageSequenceNumber>0</PackageSequenceNumber>
37
+ <PackageCount>0</PackageCount>
38
+ <ShipTimestamp>2014-11-25T00:00:00</ShipTimestamp>
39
+ <DestinationAddress>
40
+ <City>COLLIERVILLE</City>
41
+ <StateOrProvinceCode>TN</StateOrProvinceCode>
42
+ <CountryCode>US</CountryCode>
43
+ <CountryName>United States</CountryName>
44
+ <Residential>false</Residential>
45
+ </DestinationAddress>
46
+ <DeliveryAttempts>0</DeliveryAttempts>
47
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
48
+ </TrackDetails>
49
+ <TrackDetails>
50
+ <Notification>
51
+ <Severity>SUCCESS</Severity>
52
+ <Source>trck</Source>
53
+ <Code>0</Code>
54
+ <Message>Request was successfully processed.</Message>
55
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
56
+ </Notification>
57
+ <TrackingNumber>123456789012</TrackingNumber>
58
+ <TrackingNumberUniqueIdentifier>2456979001~123456789012~FX</TrackingNumberUniqueIdentifier>
59
+ <CarrierCode>FDXE</CarrierCode>
60
+ <OperatingCompanyOrCarrierDescription>FedEx Express</OperatingCompanyOrCarrierDescription>
61
+ <PackageSequenceNumber>0</PackageSequenceNumber>
62
+ <PackageCount>0</PackageCount>
63
+ <ShipTimestamp>2014-11-17T00:00:00</ShipTimestamp>
64
+ <DestinationAddress>
65
+ <City>GRAFTON</City>
66
+ <StateOrProvinceCode>ON</StateOrProvinceCode>
67
+ <CountryCode>AU</CountryCode>
68
+ <CountryName>Australia</CountryName>
69
+ <Residential>false</Residential>
70
+ </DestinationAddress>
71
+ <DeliveryAttempts>0</DeliveryAttempts>
72
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
73
+ </TrackDetails>
74
+ <TrackDetails>
75
+ <Notification>
76
+ <Severity>SUCCESS</Severity>
77
+ <Source>trck</Source>
78
+ <Code>0</Code>
79
+ <Message>Request was successfully processed.</Message>
80
+ <LocalizedMessage>Request was successfully processed.</LocalizedMessage>
81
+ </Notification>
82
+ <TrackingNumber>123456789012</TrackingNumber>
83
+ <TrackingNumberUniqueIdentifier>2456979000~123456789012~FX</TrackingNumberUniqueIdentifier>
84
+ <CarrierCode>FDXE</CarrierCode>
85
+ <OperatingCompanyOrCarrierDescription>FedEx Express</OperatingCompanyOrCarrierDescription>
86
+ <PackageSequenceNumber>0</PackageSequenceNumber>
87
+ <PackageCount>0</PackageCount>
88
+ <ShipTimestamp>2014-11-25T00:00:00</ShipTimestamp>
89
+ <DestinationAddress>
90
+ <City>TONNESSEE</City>
91
+ <StateOrProvinceCode>TN</StateOrProvinceCode>
92
+ <CountryCode>US</CountryCode>
93
+ <CountryName>United States</CountryName>
94
+ <Residential>false</Residential>
95
+ </DestinationAddress>
96
+ <DeliveryAttempts>0</DeliveryAttempts>
97
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
98
+ </TrackDetails>
99
+ </CompletedTrackDetails>
100
+ </TrackReply>
@@ -0,0 +1,52 @@
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>ERROR</Severity>
34
+ <Source>trck</Source>
35
+ <Code>9040</Code>
36
+ <Message>This tracking number cannot be found. Please check the number or contact the sender.</Message>
37
+ <LocalizedMessage>This tracking number cannot be found. Please check the number or contact the sender.</LocalizedMessage>
38
+ </Notification>
39
+ <TrackingNumber>123456789013</TrackingNumber>
40
+ <StatusDetail>
41
+ <Location>
42
+ <Residential>false</Residential>
43
+ </Location>
44
+ </StatusDetail>
45
+ <PackageSequenceNumber>0</PackageSequenceNumber>
46
+ <PackageCount>0</PackageCount>
47
+ <DeliveryAttempts>0</DeliveryAttempts>
48
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
49
+ <RedirectToHoldEligibility>INELIGIBLE</RedirectToHoldEligibility>
50
+ </TrackDetails>
51
+ </CompletedTrackDetails>
52
+ </TrackReply>
@@ -0,0 +1,209 @@
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>957794015041323</TrackingNumber>
40
+ <TrackingNumberUniqueIdentifier>12013~957794015041323~FDEG</TrackingNumberUniqueIdentifier>
41
+ <StatusDetail>
42
+ <CreationTime>2014-01-28T00:00:00</CreationTime>
43
+ <Code>SE</Code>
44
+ <Description>Shipment exception</Description>
45
+ <Location>
46
+ <StreetLines>4901 Village Creek Road</StreetLines>
47
+ <City>FORT WORTH</City>
48
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
49
+ <CountryCode>US</CountryCode>
50
+ <CountryName>United States</CountryName>
51
+ <Residential>false</Residential>
52
+ </Location>
53
+ <AncillaryDetails>
54
+ <Reason>099</Reason>
55
+ <ReasonDescription>Unable to deliver</ReasonDescription>
56
+ </AncillaryDetails>
57
+ </StatusDetail>
58
+ <ServiceCommitMessage>No estimated delivery date available at this time.</ServiceCommitMessage>
59
+ <DestinationServiceArea>EDDUNAVAILABLE</DestinationServiceArea>
60
+ <CarrierCode>FDXG</CarrierCode>
61
+ <OperatingCompanyOrCarrierDescription>FedEx Ground</OperatingCompanyOrCarrierDescription>
62
+ <Service>
63
+ <Type>GROUND_HOME_DELIVERY</Type>
64
+ <Description>FedEx Home Delivery</Description>
65
+ <ShortDescription>HD</ShortDescription>
66
+ </Service>
67
+ <PackageWeight>
68
+ <Units>LB</Units>
69
+ <Value>1.0</Value>
70
+ </PackageWeight>
71
+ <Packaging>Package</Packaging>
72
+ <PackagingType>YOUR_PACKAGING</PackagingType>
73
+ <PackageSequenceNumber>1</PackageSequenceNumber>
74
+ <PackageCount>1</PackageCount>
75
+ <OriginLocationAddress>
76
+ <City>AUSTIN</City>
77
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
78
+ <CountryCode>US</CountryCode>
79
+ <CountryName>United States</CountryName>
80
+ <Residential>false</Residential>
81
+ </OriginLocationAddress>
82
+ <ShipTimestamp>2014-01-27T00:00:00</ShipTimestamp>
83
+ <DestinationAddress>
84
+ <City>GOOSE CREEK</City>
85
+ <StateOrProvinceCode>SC</StateOrProvinceCode>
86
+ <CountryCode>US</CountryCode>
87
+ <CountryName>United States</CountryName>
88
+ <Residential>false</Residential>
89
+ </DestinationAddress>
90
+ <DeliveryAttempts>0</DeliveryAttempts>
91
+ <TotalUniqueAddressCountInConsolidation>0</TotalUniqueAddressCountInConsolidation>
92
+ <RedirectToHoldEligibility>POSSIBLY_ELIGIBLE</RedirectToHoldEligibility>
93
+ <Events>
94
+ <Timestamp>2014-01-28T17:43:08-06:00</Timestamp>
95
+ <EventType>SE</EventType>
96
+ <EventDescription>Shipment exception</EventDescription>
97
+ <StatusExceptionCode>099</StatusExceptionCode>
98
+ <StatusExceptionDescription>Unable to deliver</StatusExceptionDescription>
99
+ <Address>
100
+ <City>FORT WORTH</City>
101
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
102
+ <PostalCode>76119</PostalCode>
103
+ <CountryCode>US</CountryCode>
104
+ <CountryName>United States</CountryName>
105
+ <Residential>false</Residential>
106
+ </Address>
107
+ <ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
108
+ </Events>
109
+ <Events>
110
+ <Timestamp>2014-01-28T10:23:34-06:00</Timestamp>
111
+ <EventType>DP</EventType>
112
+ <EventDescription>Departed FedEx location</EventDescription>
113
+ <Address>
114
+ <City>FORT WORTH</City>
115
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
116
+ <PostalCode>76119</PostalCode>
117
+ <CountryCode>US</CountryCode>
118
+ <CountryName>United States</CountryName>
119
+ <Residential>false</Residential>
120
+ </Address>
121
+ <ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
122
+ </Events>
123
+ <Events>
124
+ <Timestamp>2014-01-28T02:41:00-06:00</Timestamp>
125
+ <EventType>AR</EventType>
126
+ <EventDescription>Arrived at FedEx location</EventDescription>
127
+ <Address>
128
+ <City>FORT WORTH</City>
129
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
130
+ <PostalCode>76119</PostalCode>
131
+ <CountryCode>US</CountryCode>
132
+ <CountryName>United States</CountryName>
133
+ <Residential>false</Residential>
134
+ </Address>
135
+ <ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
136
+ </Events>
137
+ <Events>
138
+ <Timestamp>2014-01-27T22:05:41-06:00</Timestamp>
139
+ <EventType>DP</EventType>
140
+ <EventDescription>Left FedEx origin facility</EventDescription>
141
+ <Address>
142
+ <City>AUSTIN</City>
143
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
144
+ <PostalCode>78744</PostalCode>
145
+ <CountryCode>US</CountryCode>
146
+ <CountryName>United States</CountryName>
147
+ <Residential>false</Residential>
148
+ </Address>
149
+ <ArrivalLocation>ORIGIN_FEDEX_FACILITY</ArrivalLocation>
150
+ </Events>
151
+ <Events>
152
+ <Timestamp>2014-01-27T20:23:00-06:00</Timestamp>
153
+ <EventType>AR</EventType>
154
+ <EventDescription>Arrived at FedEx location</EventDescription>
155
+ <Address>
156
+ <City>AUSTIN</City>
157
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
158
+ <PostalCode>78744</PostalCode>
159
+ <CountryCode>US</CountryCode>
160
+ <CountryName>United States</CountryName>
161
+ <Residential>false</Residential>
162
+ </Address>
163
+ <ArrivalLocation>FEDEX_FACILITY</ArrivalLocation>
164
+ </Events>
165
+ <Events>
166
+ <Timestamp>2014-01-27T19:13:00-06:00</Timestamp>
167
+ <EventType>PU</EventType>
168
+ <EventDescription>Picked up</EventDescription>
169
+ <Address>
170
+ <City>AUSTIN</City>
171
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
172
+ <PostalCode>78744</PostalCode>
173
+ <CountryCode>US</CountryCode>
174
+ <CountryName>United States</CountryName>
175
+ <Residential>false</Residential>
176
+ </Address>
177
+ <ArrivalLocation>PICKUP_LOCATION</ArrivalLocation>
178
+ </Events>
179
+ <Events>
180
+ <Timestamp>2014-01-27T18:10:00-06:00</Timestamp>
181
+ <EventType>IP</EventType>
182
+ <EventDescription>In FedEx possession</EventDescription>
183
+ <StatusExceptionCode>084</StatusExceptionCode>
184
+ <StatusExceptionDescription>Tendered at FedEx location</StatusExceptionDescription>
185
+ <Address>
186
+ <City>AUSTIN</City>
187
+ <StateOrProvinceCode>TX</StateOrProvinceCode>
188
+ <PostalCode>78704</PostalCode>
189
+ <CountryCode>US</CountryCode>
190
+ <CountryName>United States</CountryName>
191
+ <Residential>false</Residential>
192
+ </Address>
193
+ <ArrivalLocation>FEDEX_OFFICE_LOCATION</ArrivalLocation>
194
+ </Events>
195
+ <Events>
196
+ <Timestamp>2014-01-27T17:00:00-05:00</Timestamp>
197
+ <EventType>OC</EventType>
198
+ <EventDescription>Shipment information sent to FedEx</EventDescription>
199
+ <Address>
200
+ <PostalCode>13502</PostalCode>
201
+ <CountryCode>US</CountryCode>
202
+ <CountryName>United States</CountryName>
203
+ <Residential>false</Residential>
204
+ </Address>
205
+ <ArrivalLocation>CUSTOMER</ArrivalLocation>
206
+ </Events>
207
+ </TrackDetails>
208
+ </CompletedTrackDetails>
209
+ </TrackReply>