dhl 0.0.1
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 +7 -0
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/.travis.yml +6 -0
- data/Gemfile +22 -0
- data/LICENSE.txt +22 -0
- data/README.md +93 -0
- data/Rakefile +4 -0
- data/dhl.gemspec +29 -0
- data/lib/dhl.rb +34 -0
- data/lib/dhl/client.rb +78 -0
- data/lib/dhl/configuration.rb +12 -0
- data/lib/dhl/contact.rb +30 -0
- data/lib/dhl/examples.rb +208 -0
- data/lib/dhl/package.rb +23 -0
- data/lib/dhl/packages.rb +26 -0
- data/lib/dhl/shipment.rb +28 -0
- data/lib/dhl/shipment_request.rb +27 -0
- data/lib/dhl/tracking_request.rb +32 -0
- data/lib/dhl/version.rb +3 -0
- data/spec/factories/contact_factory.rb +17 -0
- data/spec/factories/shipment_factory.rb +7 -0
- data/spec/fixtures/dhl_cassettes/shipment.yml +704 -0
- data/spec/lib/dhl/client_spec.rb +50 -0
- data/spec/lib/dhl/contact_spec.rb +36 -0
- data/spec/lib/dhl/packages_spec.rb +43 -0
- data/spec/lib/dhl/shipment_request_spec.rb +108 -0
- data/spec/lib/dhl/shipment_spec.rb +39 -0
- data/spec/spec_helper.rb +42 -0
- metadata +180 -0
data/lib/dhl/package.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
module Dhl
|
2
|
+
class Package
|
3
|
+
|
4
|
+
attr_accessor :weight, :width, :height, :length, :reference
|
5
|
+
|
6
|
+
def initialize(weight, width, height, length, reference='')
|
7
|
+
@weight, @width, @height, @length, @reference = weight, width, height, length, reference
|
8
|
+
end
|
9
|
+
|
10
|
+
def to_hash
|
11
|
+
{
|
12
|
+
weight: @weight,
|
13
|
+
dimensions: {
|
14
|
+
width: @width,
|
15
|
+
height: @height,
|
16
|
+
length: @length
|
17
|
+
},
|
18
|
+
customer_references: @reference
|
19
|
+
}
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
data/lib/dhl/packages.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
module Dhl
|
2
|
+
class Packages
|
3
|
+
|
4
|
+
attr_accessor :packs
|
5
|
+
|
6
|
+
def initialize
|
7
|
+
@packs = []
|
8
|
+
end
|
9
|
+
|
10
|
+
def add(weight, width, height, length, reference='')
|
11
|
+
@packs << Dhl::Package.new(weight, width, height, length, reference)
|
12
|
+
end
|
13
|
+
|
14
|
+
def packs_hash
|
15
|
+
@packs.map(&:to_hash)
|
16
|
+
end
|
17
|
+
|
18
|
+
def to_hash
|
19
|
+
{
|
20
|
+
requested_packages: packs_hash,
|
21
|
+
:attributes! => { requested_packages: { number: (1..@packs.size).to_a } }
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
data/lib/dhl/shipment.rb
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
module Dhl
|
2
|
+
class Shipment
|
3
|
+
|
4
|
+
attr_accessor :pickup_time, :pieces, :description
|
5
|
+
|
6
|
+
def to_hash
|
7
|
+
{
|
8
|
+
shipment_info: {
|
9
|
+
drop_off_type: "REGULAR_PICKUP",
|
10
|
+
service_type: 'N',
|
11
|
+
currency: 'EUR',
|
12
|
+
unit_of_measurement: 'SI', # Or SU, UK, US
|
13
|
+
account: Dhl.config.account
|
14
|
+
},
|
15
|
+
ship_timestamp: @pickup_time.strftime('%Y-%m-%dT%H:%M:%SGMT%:z'), # When is the shipment going to be ready for pickup?
|
16
|
+
payment_info: 'DDP',
|
17
|
+
international_detail: {
|
18
|
+
commodities: {
|
19
|
+
number_of_pieces: 2,
|
20
|
+
description: 'General goods'
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
end
|
25
|
+
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Dhl
|
2
|
+
class ShipmentRequest
|
3
|
+
|
4
|
+
attr_accessor :shipper, :recipient, :packages, :shipment
|
5
|
+
|
6
|
+
def initialize
|
7
|
+
@shipper = Dhl::Contact.new
|
8
|
+
@recipient = Dhl::Contact.new
|
9
|
+
@packages = Dhl::Packages.new
|
10
|
+
@shipment = Dhl::Shipment.new
|
11
|
+
end
|
12
|
+
|
13
|
+
def to_hash
|
14
|
+
{
|
15
|
+
requested_shipment: @shipment.to_hash.merge({
|
16
|
+
ship: {
|
17
|
+
shipper: @shipper.to_hash,
|
18
|
+
recipient: @recipient.to_hash,
|
19
|
+
},
|
20
|
+
packages: @packages.to_hash
|
21
|
+
})
|
22
|
+
}
|
23
|
+
end
|
24
|
+
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Dhl
|
2
|
+
class TrackingRequest
|
3
|
+
|
4
|
+
attr_accessor :tracking_number
|
5
|
+
|
6
|
+
# Accepts and array of tracking numbers
|
7
|
+
def initialize(numbers)
|
8
|
+
@tracking_numbers = numbers
|
9
|
+
end
|
10
|
+
|
11
|
+
def to_hash
|
12
|
+
{
|
13
|
+
tracking_request: {
|
14
|
+
request: {
|
15
|
+
service_header: {
|
16
|
+
message_time: Time.now.strftime('%Y-%m-%dT%H:%M:%S%:z'),
|
17
|
+
message_reference: '1234567890123456789012345678' # Ref between 28 and 32 characters
|
18
|
+
}
|
19
|
+
},
|
20
|
+
a_w_b_number: {
|
21
|
+
array_of_a_w_b_number_item: @tracking_numbers
|
22
|
+
},
|
23
|
+
# lp_number: nil, # Inactive in API
|
24
|
+
level_of_details: 'LAST_CHECK_POINT_ONLY', # ALL_CHECK_POINTS for complete tracking
|
25
|
+
pieces_enabled: 'B' # B for Both, S for shipment details only, P for piece details only
|
26
|
+
}
|
27
|
+
}
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
data/lib/dhl/version.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
FactoryGirl.define do
|
2
|
+
factory :contact, class: Dhl::Contact do
|
3
|
+
name "John Doe"
|
4
|
+
company "ACME Inc"
|
5
|
+
phone "+391234567890"
|
6
|
+
email "john@example.com"
|
7
|
+
address "Piazza Duomo, 1234"
|
8
|
+
address2 "Scala B"
|
9
|
+
address3 ""
|
10
|
+
street_name "Piazza Duomo"
|
11
|
+
street_number "1234"
|
12
|
+
state_name "MI"
|
13
|
+
city "Milano"
|
14
|
+
postal_code "20121"
|
15
|
+
country_code "IT"
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,704 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://wsbuat.dhl.com:8300/amer/GEeuExpressRateBook?WSDL
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept-Encoding:
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
+
Accept:
|
13
|
+
- '*/*'
|
14
|
+
User-Agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Date:
|
22
|
+
- Wed, 08 May 2013 12:36:28 GMT
|
23
|
+
Server:
|
24
|
+
- ACE XML Gateway
|
25
|
+
Content-Type:
|
26
|
+
- text/xml
|
27
|
+
Content-Length:
|
28
|
+
- '49982'
|
29
|
+
body:
|
30
|
+
encoding: UTF-8
|
31
|
+
string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<wsdl:definitions xmlns:mime=\"http://schemas.xmlsoap.org/wsdl/mime/\"
|
32
|
+
xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:http=\"http://schemas.xmlsoap.org/wsdl/http/\"
|
33
|
+
xmlns:tns=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgRequest\"
|
34
|
+
xmlns:tm=\"http://microsoft.com/wsdl/mime/textMatching/\" xmlns:s5=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentResponse\"
|
35
|
+
xmlns:s3=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgRequest\"
|
36
|
+
xmlns:soap12=\"http://schemas.xmlsoap.org/wsdl/soap12/\" xmlns:s2=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgResponse\"
|
37
|
+
xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\" xmlns:s6=\"http://www.reactivity.com/xsdbundle/\"
|
38
|
+
xmlns:s4=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentRequest\"
|
39
|
+
xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
|
40
|
+
xmlns:s1=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgResponse\"
|
41
|
+
xmlns:s0=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/providerServices/ShipmentHandlingServices\"
|
42
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgRequest\"><wsdl:types><xsd:schema
|
43
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgRequest\">\n\t<xsd:element
|
44
|
+
name=\"ShipmentRequest\" type=\"s3:docTypeRef_ProcessShipmentRequestType\"/>\n\t<xsd:complexType
|
45
|
+
name=\"docTypeRef_ProcessShipmentRequestType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
46
|
+
minOccurs=\"0\" name=\"ClientDetail\" type=\"s3:docTypeRef_ClientDetailType2\"/>\n\t\t\t<xsd:element
|
47
|
+
name=\"RequestedShipment\" type=\"s3:docTypeRef_RequestedShipmentType\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
48
|
+
name=\"docTypeRef_ClientDetailType2\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
49
|
+
minOccurs=\"0\" name=\"sso\" type=\"s3:sso\"/>\n\t\t\t<xsd:element minOccurs=\"0\"
|
50
|
+
name=\"plant\" type=\"s3:plant\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
51
|
+
name=\"sso\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
52
|
+
value=\"0\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
53
|
+
name=\"plant\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
54
|
+
value=\"0\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
55
|
+
name=\"docTypeRef_RequestedShipmentType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
56
|
+
name=\"ShipmentInfo\" type=\"s3:docTypeRef_ShipmentInfoType\"/>\n\t\t\t<xsd:element
|
57
|
+
name=\"ShipTimestamp\" type=\"s3:ShipTimestamp\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>Identifies
|
58
|
+
the date and time the package is tendered. Both the date and time portions
|
59
|
+
of\n\t\t\t\t\t the string are expected to be used. The date should not be
|
60
|
+
a past date or a date more than 10 days in the\n\t\t\t\t\t future. The time
|
61
|
+
is the local time of the shipment based on the shipper's time zone. The date
|
62
|
+
component\n\t\t\t\t\t must be in the format: YYYY-MM-DD; the time component
|
63
|
+
must be in the format: HH:MM:SS using a 24 hour\n\t\t\t\t\t clock. The date
|
64
|
+
and time parts are separated by the letter T (e.g. 2010-02-05T14:00:00 GMT+01:00).\n
|
65
|
+
\ </xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
66
|
+
name=\"PaymentInfo\" type=\"s3:PaymentInfo\"/>\n\t\t\t<xsd:element name=\"InternationalDetail\"
|
67
|
+
type=\"s3:docTypeRef_InternationDetailType\"/>\n\t\t\t<xsd:element name=\"Ship\"
|
68
|
+
type=\"s3:docTypeRef_ShipType\"/>\n\t\t\t<xsd:element name=\"Packages\" type=\"s3:docTypeRef_PackagesType\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
69
|
+
name=\"docTypeRef_ShipmentInfoType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"DropOffType\"
|
70
|
+
type=\"s3:DropOffType\"/>\n\t\t\t<xsd:element name=\"ServiceType\" type=\"s3:ServiceType\"/>\n\t\t\t<xsd:element
|
71
|
+
minOccurs=\"0\" name=\"Account\" type=\"s3:Account\"/>\n\t\t\t<xsd:element
|
72
|
+
minOccurs=\"0\" name=\"Billing\" type=\"s3:Billing\"/>\n\t\t\t<xsd:element
|
73
|
+
minOccurs=\"0\" name=\"SpecialServices\" type=\"s3:Services\"/>\n\t\t\t<xsd:element
|
74
|
+
name=\"Currency\" type=\"s3:Currency\"/>\n\t\t\t<xsd:element name=\"UnitOfMeasurement\"
|
75
|
+
type=\"s3:UnitOfMeasurement\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>SI=the
|
76
|
+
preferred system of weights and measures for Italian trade and\n\t\t\t\t\t
|
77
|
+
commerce; SU=the preferred\tsystem of weights and measures for U.S. trade
|
78
|
+
and commerce;\n\t\t\t\t\t Weight unit: if Type is SI it can be KG\t(kilograms),
|
79
|
+
if Type is SU it can be LB (pounds).\n\t\t\t\t\t Dimention unit: if Type is
|
80
|
+
SI it can be CM, if Type is SU it can be IN (inch)\n \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
81
|
+
minOccurs=\"0\" name=\"ShipmentIdentificationNumber\" type=\"s3:ShipmentIdentificationNumber2\"/>\n\t\t\t<xsd:element
|
82
|
+
minOccurs=\"0\" name=\"PackagesCount\" type=\"s3:PackagesCount\"/>\n\t\t\t<xsd:element
|
83
|
+
minOccurs=\"0\" name=\"SendPackage\" type=\"s3:SendPackage\"/>\n\t\t\t<xsd:element
|
84
|
+
minOccurs=\"0\" name=\"LabelType\" type=\"s3:LabelType\"/>\n\t\t\t<xsd:element
|
85
|
+
minOccurs=\"0\" name=\"LabelTemplate\" type=\"s3:LabelTemplate\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
86
|
+
name=\"DropOffType\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
87
|
+
value=\"1\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t<xsd:enumeration
|
88
|
+
value=\"REGULAR_PICKUP\"/>\n\t\t\t<xsd:enumeration value=\"REQUEST_COURIER\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
89
|
+
name=\"ServiceType\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
90
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"1\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
91
|
+
name=\"Account\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:minLength
|
92
|
+
value=\"0\"/>\n\t\t\t<xsd:maxLength value=\"12\"/>\n\t\t\t<xsd:whiteSpace
|
93
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
94
|
+
name=\"Currency\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
95
|
+
value=\"3\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
96
|
+
name=\"UnitOfMeasurement\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
97
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"SI\"/>\n\t\t\t<xsd:enumeration
|
98
|
+
value=\"SU\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
99
|
+
name=\"ShipmentIdentificationNumber2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
100
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
101
|
+
name=\"PackagesCount\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
102
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
103
|
+
name=\"SendPackage\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
104
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
105
|
+
name=\"ShipTimestamp\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:maxLength
|
106
|
+
value=\"29\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
107
|
+
name=\"PaymentInfo\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
108
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"CFR\"/>\n\t\t\t<xsd:enumeration
|
109
|
+
value=\"CIF\"/>\n\t\t\t<xsd:enumeration value=\"CIP\"/>\n\t\t\t<xsd:enumeration
|
110
|
+
value=\"CPT\"/>\n\t\t\t<xsd:enumeration value=\"DAF\"/>\n\t\t\t<xsd:enumeration
|
111
|
+
value=\"DDP\"/>\n\t\t\t<xsd:enumeration value=\"DDU\"/>\n\t\t\t<xsd:enumeration
|
112
|
+
value=\"DAP\"/>\n\t\t\t<xsd:enumeration value=\"DEQ\"/>\n\t\t\t<xsd:enumeration
|
113
|
+
value=\"DES\"/>\n\t\t\t<xsd:enumeration value=\"EXW\"/>\n\t\t\t<xsd:enumeration
|
114
|
+
value=\"FAS\"/>\n\t\t\t<xsd:enumeration value=\"FCA\"/>\n\t\t\t<xsd:enumeration
|
115
|
+
value=\"FOB\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
116
|
+
name=\"docTypeRef_InternationDetailType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
117
|
+
name=\"Commodities\" type=\"s3:docTypeRef_CommoditiesType\"/>\n\t\t\t<xsd:element
|
118
|
+
minOccurs=\"0\" name=\"Content\" type=\"s3:Content\"/>\n\t\t\t<xsd:element
|
119
|
+
minOccurs=\"0\" name=\"ExportReference\" type=\"s3:ExportReference\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
120
|
+
name=\"docTypeRef_CommoditiesType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element minOccurs=\"0\"
|
121
|
+
name=\"NumberOfPieces\" type=\"s3:NumberOfPieces\"/>\n\t\t\t<xsd:element name=\"Description\"
|
122
|
+
type=\"s3:Description\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"CountryOfManufacture\"
|
123
|
+
type=\"s3:CountryOfManufacture\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"Quantity\"
|
124
|
+
type=\"s3:Quantity\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"UnitPrice\"
|
125
|
+
type=\"s3:UnitPrice\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"CustomsValue\"
|
126
|
+
type=\"s3:CustomsValue\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
127
|
+
name=\"NumberOfPieces\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
128
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
129
|
+
name=\"Description\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
130
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
131
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
132
|
+
name=\"CountryOfManufacture\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
133
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
134
|
+
name=\"Quantity\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
135
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
136
|
+
name=\"UnitPrice\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
137
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
138
|
+
name=\"CustomsValue\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
139
|
+
value=\"18\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t\t<xsd:whiteSpace
|
140
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
141
|
+
name=\"Content\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
142
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"DOCUMENTS\"/>\n\t\t\t<xsd:enumeration
|
143
|
+
value=\"NON_DOCUMENTS\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
144
|
+
name=\"ExportReference\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
145
|
+
value=\"0\"/>\n\t\t\t<xsd:maxLength value=\"40\"/>\n\t\t\t<xsd:whiteSpace
|
146
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
147
|
+
name=\"docTypeRef_ShipType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"Shipper\"
|
148
|
+
type=\"s3:docTypeRef_ContactInfoType\"/>\n\t\t\t<xsd:element minOccurs=\"0\"
|
149
|
+
name=\"Pickup\" type=\"s3:docTypeRef_ContactInfoType\"/>\n\t\t\t<xsd:element
|
150
|
+
name=\"Recipient\" type=\"s3:docTypeRef_ContactInfoType\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
151
|
+
name=\"docTypeRef_ContactInfoType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"Contact\"
|
152
|
+
type=\"s3:docTypeRef_ContactType\"/>\n\t\t\t<xsd:element name=\"Address\"
|
153
|
+
type=\"s3:docTypeRef_AddressType\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
154
|
+
name=\"docTypeRef_ContactType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"PersonName\"
|
155
|
+
type=\"s3:PersonName\"/>\n\t\t\t<xsd:element name=\"CompanyName\" type=\"s3:CompanyName\"/>\n\t\t\t<xsd:element
|
156
|
+
name=\"PhoneNumber\" type=\"s3:PhoneNumber\"/>\n\t\t\t<xsd:element minOccurs=\"0\"
|
157
|
+
name=\"EmailAddress\" type=\"s3:EmailAddress\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
158
|
+
name=\"PersonName\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
159
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"45\"/>\n\t\t\t<xsd:whiteSpace
|
160
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
161
|
+
name=\"CompanyName\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
162
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
163
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
164
|
+
name=\"PhoneNumber\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
165
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"25\"/>\n\t\t\t<xsd:whiteSpace
|
166
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
167
|
+
name=\"EmailAddress\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
168
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"50\"/>\n\t\t\t<xsd:whiteSpace
|
169
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
170
|
+
name=\"docTypeRef_AddressType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"StreetLines\"
|
171
|
+
type=\"s3:StreetLines\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StreetName\"
|
172
|
+
type=\"s3:StreetName\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StreetNumber\"
|
173
|
+
type=\"s3:StreetNumber\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StreetLines2\"
|
174
|
+
type=\"s3:StreetLines2\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StreetLines3\"
|
175
|
+
type=\"s3:StreetLines3\"/>\n\t\t\t<xsd:element name=\"City\" type=\"s3:City\"/>\n\t\t\t<xsd:element
|
176
|
+
minOccurs=\"0\" name=\"StateOrProvinceCode\" type=\"s3:StateOrProvinceCode\"/>\n\t\t\t<xsd:element
|
177
|
+
name=\"PostalCode\" type=\"s3:PostalCode\"/>\n\t\t\t<xsd:element name=\"CountryCode\"
|
178
|
+
type=\"s3:CountryCode\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
179
|
+
name=\"StreetLines\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
180
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
181
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
182
|
+
name=\"StreetName\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
183
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
184
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
185
|
+
name=\"StreetNumber\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
186
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"15\"/>\n\t\t\t<xsd:whiteSpace
|
187
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
188
|
+
name=\"StreetLines2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
189
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
190
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
191
|
+
name=\"StreetLines3\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
192
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
193
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
194
|
+
name=\"City\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
195
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
196
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
197
|
+
name=\"StateOrProvinceCode\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
198
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
199
|
+
name=\"PostalCode\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
200
|
+
value=\"0\"/>\n\t\t\t<xsd:maxLength value=\"12\"/>\n\t\t\t<xsd:whiteSpace
|
201
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
202
|
+
name=\"CountryCode\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
203
|
+
value=\"2\"/>\n\t\t\t<xsd:maxLength value=\"2\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
204
|
+
name=\"docTypeRef_PackagesType\">\n\t\t<xsd:sequence maxOccurs=\"unbounded\">\n\t\t\t<xsd:element
|
205
|
+
name=\"RequestedPackages\" type=\"s3:docTypeRef_RequestedPackagesType\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
206
|
+
name=\"docTypeRef_RequestedPackagesType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
207
|
+
minOccurs=\"0\" name=\"InsuredValue\" type=\"s3:InsuredValue\"/>\n\t\t\t<xsd:element
|
208
|
+
name=\"Weight\" type=\"s3:Weight\"/>\n\t\t\t<xsd:element name=\"Dimensions\"
|
209
|
+
type=\"s3:docTypeRef_DimensionsType\"/>\n\t\t\t<xsd:element name=\"CustomerReferences\"
|
210
|
+
type=\"s3:CustomerReferences\"/>\n\t\t</xsd:all>\n\t\t<xsd:attribute name=\"number\"
|
211
|
+
type=\"s3:_x0040_number\" use=\"required\"/>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
212
|
+
name=\"_x0040_number\">\n\t\t<xsd:restriction base=\"xsd:integer\">\n\t\t\t<xsd:minInclusive
|
213
|
+
value=\"1\"/>\n\t\t\t<xsd:maxInclusive value=\"50\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
214
|
+
name=\"InsuredValue\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
215
|
+
value=\"15\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t\t<xsd:whiteSpace
|
216
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
217
|
+
name=\"Weight\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
218
|
+
value=\"12\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t\t<xsd:whiteSpace
|
219
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
220
|
+
name=\"docTypeRef_DimensionsType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"Length\"
|
221
|
+
type=\"s3:Length\"/>\n\t\t\t<xsd:element name=\"Width\" type=\"s3:Width\"/>\n\t\t\t<xsd:element
|
222
|
+
name=\"Height\" type=\"s3:Height\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
223
|
+
name=\"Length\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
224
|
+
value=\"7\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t\t<xsd:whiteSpace
|
225
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
226
|
+
name=\"Width\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
227
|
+
value=\"7\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t\t<xsd:whiteSpace
|
228
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
229
|
+
name=\"Height\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
230
|
+
value=\"7\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t\t<xsd:whiteSpace
|
231
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
232
|
+
name=\"CustomerReferences\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
233
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"35\"/>\n\t\t\t<xsd:whiteSpace
|
234
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
235
|
+
name=\"Billing\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"ShipperAccountNumber\"
|
236
|
+
type=\"s3:Account\"/>\n\t\t\t<xsd:element name=\"ShippingPaymentType\" type=\"s3:ShipmentPaymentType\"/>\n\t\t\t<xsd:element
|
237
|
+
minOccurs=\"0\" name=\"BillingAccountNumber\" type=\"s3:Account\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
238
|
+
name=\"ShipmentPaymentType\">\n\t\t<xsd:annotation>\n\t\t\t<xsd:documentation>\n\t\t\t
|
239
|
+
\ S=Bill-To Shipper, R=Bill-To Receiver, T=Bill-To Third Party\n \t</xsd:documentation>\n\t\t</xsd:annotation>\n\t\t<xsd:restriction
|
240
|
+
base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t<xsd:enumeration
|
241
|
+
value=\"S\"/>\n\t\t\t<xsd:enumeration value=\"R\"/>\n\t\t\t<xsd:enumeration
|
242
|
+
value=\"T\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
243
|
+
name=\"Services\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element maxOccurs=\"unbounded\"
|
244
|
+
name=\"Service\" type=\"s3:Service\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
245
|
+
name=\"Service\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"ServiceType\"
|
246
|
+
type=\"s3:ServiceTypeCode\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"ServiceValue\"
|
247
|
+
type=\"s3:Money\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"CurrencyCode\"
|
248
|
+
type=\"s3:CurrencyCode\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"PaymentCode\"
|
249
|
+
type=\"s3:PaymentCode\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StartDate\"
|
250
|
+
type=\"xsd:date\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"EndDate\" type=\"xsd:date\"/>\n\t\t\t<xsd:element
|
251
|
+
minOccurs=\"0\" name=\"TextInstruction\" type=\"s3:TextType\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
252
|
+
name=\"ServiceTypeCode\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
253
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
254
|
+
value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
255
|
+
name=\"Money\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
256
|
+
value=\"12\"/>\n\t\t\t<xsd:fractionDigits value=\"2\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
257
|
+
name=\"CurrencyCode\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
258
|
+
value=\"3\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
259
|
+
name=\"PaymentCode\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
260
|
+
value=\"3\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
261
|
+
name=\"TextType\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
262
|
+
value=\"collapse\"/>\n\t\t\t<xsd:maxLength value=\"50\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
263
|
+
final=\"list\" name=\"LabelType\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
264
|
+
value=\"3\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t<xsd:enumeration
|
265
|
+
value=\"PDF\"/>\n\t\t\t<xsd:enumeration value=\"ZPL\"/>\n\t\t\t<xsd:enumeration
|
266
|
+
value=\"EPL\"/>\n\t\t\t<xsd:enumeration value=\"LP2\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
267
|
+
final=\"list\" name=\"LabelTemplate\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:maxLength
|
268
|
+
value=\"20\"/>\n\t\t\t<xsd:enumeration value=\"ECOM26_A6_001\"/>\n\t\t\t<xsd:enumeration
|
269
|
+
value=\"ECOM26_84_001\"/>\n\t\t\t<xsd:enumeration value=\"ECOM26_84CI_001\"/>\n\t\t\t<xsd:enumeration
|
270
|
+
value=\"ECOM26_A4_001\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n</xsd:schema><xsd:schema
|
271
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgRequest\">\n\t<xsd:element
|
272
|
+
name=\"RateRequest\" type=\"tns:docTypeRef_RateRequestType\"/>\n\t<xsd:complexType
|
273
|
+
name=\"docTypeRef_RateRequestType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element minOccurs=\"0\"
|
274
|
+
name=\"ClientDetail\" type=\"tns:docTypeRef_ClientDetailType3\"/>\n\t\t\t<xsd:element
|
275
|
+
name=\"RequestedShipment\" type=\"tns:docTypeRef_RequestedShipmentType2\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
276
|
+
name=\"docTypeRef_ClientDetailType3\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
277
|
+
minOccurs=\"0\" name=\"sso\" type=\"tns:sso2\"/>\n\t\t\t<xsd:element minOccurs=\"0\"
|
278
|
+
name=\"plant\" type=\"tns:plant2\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
279
|
+
name=\"sso2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
280
|
+
value=\"0\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
281
|
+
name=\"plant2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
282
|
+
value=\"0\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
283
|
+
name=\"docTypeRef_RequestedShipmentType2\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
284
|
+
name=\"DropOffType\" type=\"tns:DropOffType2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
285
|
+
\ \t\t\t\t\tRequested value are REGULAR_PICKUP or\n \t\t\t\t\tREQUEST_COURIER,
|
286
|
+
it identifies the method by\n \t\t\t\t\twhich the package is to be tendered.\n
|
287
|
+
\ \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
288
|
+
minOccurs=\"0\" name=\"NextBusinessDay\" type=\"tns:NextBusinessDay2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
289
|
+
\ \t\t\t\t\tThis indicator is a Y-N flag which indicates whether an error
|
290
|
+
should be returned if no products are available that day (N) or if the next
|
291
|
+
business day should be evaluated (Y). Default is N if not included.\n \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
292
|
+
name=\"Ship\" type=\"tns:docTypeRef_ShipType2\"/>\n\t\t\t<xsd:element name=\"Packages\"
|
293
|
+
type=\"tns:docTypeRef_PackagesType2\"/>\n\t\t\t<xsd:element name=\"ShipTimestamp\"
|
294
|
+
type=\"tns:ShipTimestamp2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
295
|
+
\ \t\t\t\t\tIdentifies the date and time the package is tendered. Both the
|
296
|
+
date and time portions of the\n \t\t\t\t\tstring are expected to be used.
|
297
|
+
The date should\n \t\t\t\t\tnot be a past date or a date more than 10 days\n
|
298
|
+
\ \t\t\t\t\tin the future. The time is the local time of the\n \t\t\t\t\tshipment
|
299
|
+
based on the shipper's time zone. The\n \t\t\t\t\tdate component must be
|
300
|
+
in the format:\n \t\t\t\t\tYYYY-MM-DD; the time component must be in the\n
|
301
|
+
\ \t\t\t\t\tformat: HH:MM:SS using a 24 hour clock. The date\n \t\t\t\t\tand
|
302
|
+
time parts are separated by the letter T\n \t\t\t\t\t(e.g. 2006-06-26T17:00:00
|
303
|
+
GMT+01:00).\n \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
304
|
+
name=\"UnitOfMeasurement\" type=\"tns:UnitOfMeasurement2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
305
|
+
\ \t\t\t\t\tSI=the preferred system of weights and measures\n \t\t\t\t\tfor
|
306
|
+
Italian trade and commerce; SU=the preferred\n \t\t\t\t\tsystem of weights
|
307
|
+
and measures for U.S. trade\n \t\t\t\t\tand commerce; Weight unit: if Type
|
308
|
+
is SI it can\n \t\t\t\t\tbe KG (kilograms), if Type is SU it can be LB\n
|
309
|
+
\ \t\t\t\t\t(pounds). Dimention unit: if Type is SI it can\n \t\t\t\t\tbe
|
310
|
+
CM, if Type is SU it can be IN (inch)\n \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
311
|
+
minOccurs=\"0\" name=\"Content\" type=\"tns:Content2\"/>\n\t\t\t<xsd:element
|
312
|
+
minOccurs=\"0\" name=\"DeclaredValue\">\n\t\t\t\t<xsd:simpleType>\n\t\t\t\t\t<xsd:restriction
|
313
|
+
base=\"xsd:decimal\">\n\t\t\t\t\t\t<xsd:totalDigits value=\"18\"/>\n\t\t\t\t\t\t<xsd:fractionDigits
|
314
|
+
value=\"3\"/>\n\t\t\t\t\t</xsd:restriction>\n\t\t\t\t</xsd:simpleType>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
315
|
+
minOccurs=\"0\" name=\"DeclaredValueCurrencyCode\">\n\t\t\t\t<xsd:simpleType>\n\t\t\t\t\t<xsd:restriction
|
316
|
+
base=\"xsd:string\">\n\t\t\t\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t\t\t</xsd:restriction>\n\t\t\t\t</xsd:simpleType>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
317
|
+
minOccurs=\"0\" name=\"PaymentInfo\" type=\"tns:PaymentInfo2\"/>\n\t\t\t<xsd:element
|
318
|
+
minOccurs=\"0\" name=\"Account\" type=\"tns:Account2\"/>\n\t\t\t<xsd:element
|
319
|
+
minOccurs=\"0\" name=\"Billing\" type=\"tns:Billing2\"/>\n\t\t\t<xsd:element
|
320
|
+
minOccurs=\"0\" name=\"SpecialServices\" type=\"tns:Services2\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
321
|
+
name=\"DropOffType2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
322
|
+
value=\"1\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t<xsd:enumeration
|
323
|
+
value=\"REGULAR_PICKUP\"/>\n\t\t\t<xsd:enumeration value=\"REQUEST_COURIER\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
324
|
+
name=\"NextBusinessDay2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
325
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"Y\"/>\n\t\t\t<xsd:enumeration
|
326
|
+
value=\"N\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
327
|
+
name=\"docTypeRef_ShipType2\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"Shipper\"
|
328
|
+
type=\"tns:docTypeRef_AddressType2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>Shipper
|
329
|
+
address.</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
330
|
+
name=\"Recipient\" type=\"tns:docTypeRef_AddressType2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>Recipeint
|
331
|
+
address.</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
332
|
+
name=\"docTypeRef_AddressType2\">\n\t\t<xsd:all>\n\t\t\t<xsd:element minOccurs=\"0\"
|
333
|
+
name=\"StreetLines\" type=\"tns:StreetLines4\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
334
|
+
\ \t\t\t\t\tThe shipper/recipient's street address.\n \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
335
|
+
minOccurs=\"0\" name=\"StreetLines2\" type=\"tns:StreetLines22\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
336
|
+
\ \t\t\t\t\tAdditional shipper/recipient address\n \t\t\t\t\tinformation,
|
337
|
+
preferably room or floor.\n \t\t\t\t</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
338
|
+
minOccurs=\"0\" name=\"StreetLines3\" type=\"tns:StreetLines32\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>Additional
|
339
|
+
shipper address\n\t\t\t\t\t information, preferably department name.\n\t\t\t\t\t
|
340
|
+
</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
341
|
+
minOccurs=\"0\" name=\"StreetName\" type=\"tns:StreetName2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>The
|
342
|
+
shipper/recipient's street name.</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
343
|
+
minOccurs=\"0\" name=\"StreetNumber\" type=\"tns:StreetNumber2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>The
|
344
|
+
shipper/recipient's street number.</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
345
|
+
name=\"City\" type=\"tns:City2\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StateOrProvinceCode\"
|
346
|
+
type=\"xsd:token\"/>\n\t\t\t<xsd:element name=\"PostalCode\" type=\"tns:PostalCode2\"/>\n\t\t\t<xsd:element
|
347
|
+
name=\"CountryCode\">\n\t\t\t\t<xsd:simpleType>\n\t\t\t\t\t<xsd:restriction
|
348
|
+
base=\"tns:CountryCode2\">\n\t\t\t\t\t\t<xsd:minLength value=\"2\"/>\n\t\t\t\t\t</xsd:restriction>\n\t\t\t\t</xsd:simpleType>\n\t\t\t</xsd:element>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
349
|
+
name=\"StreetLines4\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
350
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
351
|
+
value=\"35\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
352
|
+
name=\"StreetLines22\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
353
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
354
|
+
value=\"35\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
355
|
+
name=\"StreetLines32\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
356
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
357
|
+
value=\"35\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
358
|
+
name=\"StreetName2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
359
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
360
|
+
value=\"35\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
361
|
+
name=\"StreetNumber2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
362
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
363
|
+
value=\"15\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
364
|
+
name=\"City2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
365
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
366
|
+
value=\"45\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
367
|
+
name=\"PostalCode2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
368
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"0\"/>\n\t\t\t<xsd:maxLength
|
369
|
+
value=\"12\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
370
|
+
name=\"CountryCode2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
371
|
+
value=\"collapse\"/>\n\t\t\t<xsd:maxLength value=\"2\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
372
|
+
name=\"docTypeRef_PackagesType2\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
373
|
+
maxOccurs=\"unbounded\" name=\"RequestedPackages\" type=\"tns:docTypeRef_RequestedPackagesType2\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
374
|
+
name=\"docTypeRef_RequestedPackagesType2\">\n\t\t<xsd:sequence maxOccurs=\"50\">\n\t\t\t<xsd:element
|
375
|
+
name=\"Weight\" type=\"tns:docTypeRef_WeightType\"/>\n\t\t\t<xsd:element name=\"Dimensions\"
|
376
|
+
type=\"tns:docTypeRef_DimensionsType2\"/>\n\t\t</xsd:sequence>\n\t\t<xsd:attribute
|
377
|
+
name=\"number\" type=\"tns:_x0040_number3\"/>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
378
|
+
name=\"_x0040_number3\">\n\t\t<xsd:restriction base=\"xsd:int\">\n\t\t\t<xsd:minInclusive
|
379
|
+
value=\"1\"/>\n\t\t\t<xsd:maxInclusive value=\"50\"/>\n\t\t\t<xsd:whiteSpace
|
380
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
381
|
+
name=\"docTypeRef_WeightType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"Value\"
|
382
|
+
type=\"tns:Value\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
383
|
+
name=\"Value\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
384
|
+
value=\"12\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
385
|
+
name=\"docTypeRef_DimensionsType2\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
386
|
+
name=\"Length\" type=\"tns:Length2\"/>\n\t\t\t<xsd:element name=\"Width\"
|
387
|
+
type=\"tns:Width2\"/>\n\t\t\t<xsd:element name=\"Height\" type=\"tns:Height2\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
388
|
+
name=\"Length2\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
389
|
+
value=\"7\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
390
|
+
name=\"Width2\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
391
|
+
value=\"7\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
392
|
+
name=\"Height2\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
393
|
+
value=\"7\"/>\n\t\t\t<xsd:fractionDigits value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
394
|
+
name=\"ShipTimestamp2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
395
|
+
value=\"collapse\"/>\n\t\t\t<xsd:maxLength value=\"29\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
396
|
+
name=\"UnitOfMeasurement2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
397
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"SI\"/>\n\t\t\t<xsd:enumeration
|
398
|
+
value=\"SU\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
399
|
+
name=\"Content2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
400
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"DOCUMENTS\"/>\n\t\t\t<xsd:enumeration
|
401
|
+
value=\"NON_DOCUMENTS\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
402
|
+
name=\"PaymentInfo2\">\n\t\t<xsd:annotation>\n\t\t\t<xsd:documentation>\n\t\t\t\tCFR
|
403
|
+
= Cost And Freight\n\t\t\t\tCIF = Cost, Insurance And Freight\n\t\t\t\tCIP
|
404
|
+
= Carriage And Insurance Paid To\n\t\t\t\tCPT = Carriage Paid To\n\t\t\t\tDAF
|
405
|
+
= Delivered At Frontier\n\t\t\t\tDDP = Delivered Duty Paid\n\t\t\t\tDDU =
|
406
|
+
Delivered Duty Unpaid\n\t\t\t\tDAP = Delivered At Place (formerly DDU)\n\t\t\t\tDEQ
|
407
|
+
= Delivered Ex Quay (Duty Paid)\n\t\t\t\tDES = Delivered Ex Ship\n\t\t\t\tEXW
|
408
|
+
= Ex Works\n\t\t\t\tFAS = Free Alongside Ship\n\t\t\t\tFCA = Free Carrier\n\t\t\t\tFOB
|
409
|
+
= Free On Board\n \t</xsd:documentation>\n\t\t</xsd:annotation>\n\t\t<xsd:restriction
|
410
|
+
base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t<xsd:enumeration
|
411
|
+
value=\"CFR\"/>\n\t\t\t<xsd:enumeration value=\"CIF\"/>\n\t\t\t<xsd:enumeration
|
412
|
+
value=\"CIP\"/>\n\t\t\t<xsd:enumeration value=\"CPT\"/>\n\t\t\t<xsd:enumeration
|
413
|
+
value=\"DAF\"/>\n\t\t\t<xsd:enumeration value=\"DDP\"/>\n\t\t\t<xsd:enumeration
|
414
|
+
value=\"DDU\"/>\n\t\t\t<xsd:enumeration value=\"DAP\"/>\n\t\t\t<xsd:enumeration
|
415
|
+
value=\"DEQ\"/>\n\t\t\t<xsd:enumeration value=\"DES\"/>\n\t\t\t<xsd:enumeration
|
416
|
+
value=\"EXW\"/>\n\t\t\t<xsd:enumeration value=\"FAS\"/>\n\t\t\t<xsd:enumeration
|
417
|
+
value=\"FCA\"/>\n\t\t\t<xsd:enumeration value=\"FOB\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
418
|
+
name=\"Account2\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
419
|
+
value=\"preserve\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
420
|
+
value=\"12\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
421
|
+
name=\"Billing2\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"ShipperAccountNumber\"
|
422
|
+
type=\"tns:Account2\"/>\n\t\t\t<xsd:element name=\"ShippingPaymentType\" type=\"tns:ShipmentPaymentType2\"/>\n\t\t\t<xsd:element
|
423
|
+
minOccurs=\"0\" name=\"BillingAccountNumber\" type=\"tns:Account2\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
424
|
+
name=\"ShipmentPaymentType2\">\n\t\t<xsd:annotation>\n\t\t\t<xsd:documentation>\n\t\t\t
|
425
|
+
\ S=Bill-To Shipper, R=Bill-To Receiver, T=Bill-To Third Party\n \t</xsd:documentation>\n\t\t</xsd:annotation>\n\t\t<xsd:restriction
|
426
|
+
base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t<xsd:enumeration
|
427
|
+
value=\"S\"/>\n\t\t\t<xsd:enumeration value=\"R\"/>\n\t\t\t<xsd:enumeration
|
428
|
+
value=\"T\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
429
|
+
name=\"Services2\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element maxOccurs=\"unbounded\"
|
430
|
+
name=\"Service\" type=\"tns:Service2\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
431
|
+
name=\"Service2\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"ServiceType\"
|
432
|
+
type=\"tns:ServiceType2\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"ServiceValue\"
|
433
|
+
type=\"tns:Money2\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"CurrencyCode\"
|
434
|
+
type=\"tns:CurrencyCode2\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"PaymentCode\"
|
435
|
+
type=\"tns:PaymentCode2\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"StartDate\"
|
436
|
+
type=\"xsd:date\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"EndDate\" type=\"xsd:date\"/>\n\t\t\t<xsd:element
|
437
|
+
minOccurs=\"0\" name=\"TextInstruction\" type=\"tns:TextType2\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
438
|
+
name=\"ServiceType2\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
439
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
440
|
+
value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
441
|
+
name=\"Money2\">\n\t\t<xsd:restriction base=\"xsd:decimal\">\n\t\t\t<xsd:totalDigits
|
442
|
+
value=\"12\"/>\n\t\t\t<xsd:fractionDigits value=\"2\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
443
|
+
name=\"CurrencyCode2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
444
|
+
value=\"3\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
445
|
+
name=\"PaymentCode2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
446
|
+
value=\"3\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
447
|
+
name=\"TextType2\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
448
|
+
value=\"collapse\"/>\n\t\t\t<xsd:maxLength value=\"50\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n</xsd:schema><xsd:schema
|
449
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentResponse\">\n\t<xsd:element
|
450
|
+
name=\"DeleteResponse\" type=\"s5:docTypeRef_DeleteResponseType\"/>\n\t<xsd:complexType
|
451
|
+
name=\"docTypeRef_DeleteResponseType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
452
|
+
name=\"Notification\" type=\"s5:docTypeRef_NotificationType\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
453
|
+
name=\"docTypeRef_NotificationType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
454
|
+
name=\"Message\">\n\t\t\t\t<xsd:simpleType>\n\t\t\t\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t\t\t\t<xsd:whiteSpace
|
455
|
+
value=\"collapse\"/>\n\t\t\t\t\t</xsd:restriction>\n\t\t\t\t</xsd:simpleType>\n\t\t\t</xsd:element>\n\t\t</xsd:sequence>\n\t\t<xsd:attribute
|
456
|
+
name=\"code\" type=\"s5:_x0040_code\">\n\t\t\t<xsd:annotation>\n\t\t\t\t<xsd:documentation>Notification
|
457
|
+
code: valid values are 0=SUCCESS, 1=ERROR.</xsd:documentation>\n\t\t\t</xsd:annotation>\n\t\t</xsd:attribute>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
458
|
+
name=\"_x0040_code\">\n\t\t<xsd:restriction base=\"xsd:nonNegativeInteger\">\n\t\t\t<xsd:totalDigits
|
459
|
+
value=\"6\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n</xsd:schema><xsd:schema
|
460
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentRequest\">\n\t<xsd:element
|
461
|
+
name=\"DeleteRequest\" type=\"s4:docTypeRef_DeleteRequestType\"/>\n\t<xsd:complexType
|
462
|
+
name=\"docTypeRef_DeleteRequestType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
463
|
+
minOccurs=\"0\" name=\"ClientDetail\" type=\"s4:docTypeRef_ClientDetailType\"/>\n\t\t\t<xsd:element
|
464
|
+
name=\"PickupDate\" type=\"xsd:date\"/>\n\t\t\t<xsd:element name=\"PickupCountry\"
|
465
|
+
type=\"s4:CountryCode\"/>\n\t\t\t<xsd:element name=\"DispatchConfirmationNumber\"
|
466
|
+
type=\"s4:ConfirmationNumberType\"/>\n\t\t\t<xsd:element name=\"RequestorName\"
|
467
|
+
type=\"s4:PersonName3\"/>\n\t\t\t<xsd:element minOccurs=\"0\" name=\"Reason\"
|
468
|
+
type=\"s4:CustomerReferences\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:complexType
|
469
|
+
name=\"docTypeRef_ClientDetailType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element minOccurs=\"0\"
|
470
|
+
name=\"sso\">\n\t\t\t\t<xsd:simpleType>\n\t\t\t\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t\t\t\t<xsd:whiteSpace
|
471
|
+
value=\"collapse\"/>\n\t\t\t\t\t</xsd:restriction>\n\t\t\t\t</xsd:simpleType>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
472
|
+
minOccurs=\"0\" name=\"plant\">\n\t\t\t\t<xsd:simpleType>\n\t\t\t\t\t<xsd:restriction
|
473
|
+
base=\"xsd:token\">\n\t\t\t\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t\t\t</xsd:restriction>\n\t\t\t\t</xsd:simpleType>\n\t\t\t</xsd:element>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
474
|
+
name=\"ShipmentIdentificationNumber\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
475
|
+
value=\"preserve\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
476
|
+
value=\"10\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
477
|
+
name=\"CountryCode\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
478
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"2\"/>\n\t\t\t<xsd:maxLength
|
479
|
+
value=\"2\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
480
|
+
name=\"ConfirmationNumberType\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
481
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
482
|
+
name=\"PersonName3\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
483
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"45\"/>\n\t\t\t<xsd:whiteSpace
|
484
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t\t<xsd:simpleType
|
485
|
+
name=\"CustomerReferences\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
486
|
+
value=\"1\"/>\n\t\t\t<xsd:maxLength value=\"50\"/>\n\t\t\t<xsd:whiteSpace
|
487
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n</xsd:schema><xsd:schema
|
488
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgResponse\">\n\t<xsd:element
|
489
|
+
name=\"RateResponse\" type=\"s1:docTypeRef_RateResponseType\"/>\n\t<xsd:complexType
|
490
|
+
name=\"docTypeRef_RateResponseType\">\n\t\t<xsd:sequence maxOccurs=\"unbounded\"
|
491
|
+
minOccurs=\"0\">\n\t\t\t<xsd:element maxOccurs=\"unbounded\" minOccurs=\"0\"
|
492
|
+
name=\"Provider\" type=\"s1:docTypeRef_ProviderType\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
493
|
+
name=\"docTypeRef_ProviderType\">\n\t\t<xsd:sequence maxOccurs=\"unbounded\">\n\t\t\t<xsd:element
|
494
|
+
name=\"Notification\" type=\"s1:docTypeRef_NotificationType3\"/>\n\t\t\t<xsd:element
|
495
|
+
maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"Service\" type=\"s1:docTypeRef_ServiceType\"/>\n\t\t</xsd:sequence>\n\t\t<xsd:attribute
|
496
|
+
name=\"code\" type=\"s1:_x0040_code3\"/>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
497
|
+
name=\"_x0040_code3\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
498
|
+
value=\"1\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
499
|
+
name=\"docTypeRef_NotificationType3\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
500
|
+
name=\"Message\" type=\"s1:Message2\"/>\n\t\t</xsd:sequence>\n\t\t<xsd:attribute
|
501
|
+
name=\"code\" type=\"s1:_x0040_code4\">\n\t\t\t<xsd:annotation>\n\t\t\t\t<xsd:documentation>Notification
|
502
|
+
code: valid values are 0=SUCCESS, other value=ERROR</xsd:documentation>\n\t\t\t</xsd:annotation>\n\t\t</xsd:attribute>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
503
|
+
name=\"_x0040_code4\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
504
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
505
|
+
name=\"Message2\">\n\t\t<xsd:restriction base=\"xsd:string\">\n\t\t\t<xsd:whiteSpace
|
506
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
507
|
+
name=\"docTypeRef_ServiceType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"TotalNet\"
|
508
|
+
type=\"s1:docTypeRef_TotalNetType\"/>\n\t\t\t<xsd:element minOccurs=\"0\"
|
509
|
+
name=\"Charges\" type=\"s1:docTypeRef_ChargesType\"/>\n\t\t\t<xsd:element
|
510
|
+
minOccurs=\"0\" name=\"DeliveryTime\" type=\"xsd:dateTime\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
511
|
+
\ \t\t\t\t\tIdentifies the date and time the package is\n \t\t\t\t\ttendered.
|
512
|
+
Both the date and time portions of the\n \t\t\t\t\tstring are expected
|
513
|
+
to be used. The date should\n \t\t\t\t\tnot be a past date or a date more
|
514
|
+
than 10 days\n \t\t\t\t\tin the future. The time is the local time of the\n
|
515
|
+
\ \t\t\t\t\tshipment based on the shipper's time zone. The\n \t\t\t\t\tdate
|
516
|
+
component must be in the format:\n \t\t\t\t\tYYYY-MM-DD; the time component
|
517
|
+
must be in the\n \t\t\t\t\tformat: HH:MM:SS using a 24 hour clock. The
|
518
|
+
date\n \t\t\t\t\tand time parts are separated by the letter T\n \t\t\t\t\t(e.g.
|
519
|
+
2006-06-26T17:00:00).</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
520
|
+
minOccurs=\"0\" name=\"CutoffTime\" type=\"xsd:dateTime\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
521
|
+
\ \t\t\t\t\tIdentifies the cutoff date and time the package needs to be
|
522
|
+
tendered to the shipper, in order to meet the estimated delivery time.The
|
523
|
+
time is the local time of the shipment based on the shipper's time zone. The
|
524
|
+
date component must be in the format:YYYY-MM-DD; the time component must be
|
525
|
+
in the format: HH:MM:SS using a 24 hour clock. The date and time parts are
|
526
|
+
separated by the letter T (e.g. 2006-06-26T17:00:00).</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
527
|
+
minOccurs=\"0\" name=\"NextBusinessDayInd\" type=\"s1:NextBusinessDayInd2\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>\n
|
528
|
+
\ \t\t\t\t\tThis indicator demonstrates whether the pickup date is the next
|
529
|
+
business day (Y) or the requested business day (N). If the requested ship
|
530
|
+
date is beyond the cutoff for that business day (or it is requested on weekend),
|
531
|
+
the indicator will be set to Y. If it is on the same business day as requested,
|
532
|
+
the value is set to N.</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t</xsd:all>\n\t\t<xsd:attribute
|
533
|
+
name=\"type\" type=\"s1:_x0040_type\">\n\t\t\t<xsd:annotation>\n\t\t\t\t<xsd:documentation>The
|
534
|
+
service type provided from the currier.</xsd:documentation>\n\t\t\t</xsd:annotation>\n\t\t</xsd:attribute>\n\t\t<xsd:attribute
|
535
|
+
name=\"account\" type=\"s1:_x0040_account\">\n\t\t\t<xsd:annotation>\n\t\t\t\t<xsd:documentation>The
|
536
|
+
rate type of the charges for this package. Possible returned rate types are:\n\t\t\t\t
|
537
|
+
PAYOR_ACCOUNT, RATED_ACCOUNT.</xsd:documentation>\n\t\t\t</xsd:annotation>\n\t\t</xsd:attribute>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
538
|
+
name=\"_x0040_type\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
539
|
+
value=\"1\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
540
|
+
name=\"_x0040_account\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:minLength
|
541
|
+
value=\"1\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t\t<xsd:enumeration
|
542
|
+
value=\"PAYOR_ACCOUNT\"/>\n\t\t\t<xsd:enumeration value=\"RATED_ACCOUNT\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
543
|
+
name=\"docTypeRef_TotalNetType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
544
|
+
name=\"Currency\" type=\"xsd:token\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>Identifies
|
545
|
+
the currency of the rate</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t\t<xsd:element
|
546
|
+
name=\"Amount\" type=\"xsd:token\">\n\t\t\t\t<xsd:annotation>\n\t\t\t\t\t<xsd:documentation>Identifies
|
547
|
+
the rate price.</xsd:documentation>\n\t\t\t\t</xsd:annotation>\n\t\t\t</xsd:element>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
548
|
+
name=\"docTypeRef_ChargesType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"Currency\"
|
549
|
+
type=\"xsd:token\"/>\n\t\t\t<xsd:element maxOccurs=\"unbounded\" name=\"Charge\"
|
550
|
+
type=\"s1:docTypeRef_ChargeType\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
551
|
+
name=\"docTypeRef_ChargeType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element name=\"ChargeType\"
|
552
|
+
type=\"xsd:token\"/>\n\t\t\t<xsd:element name=\"ChargeAmount\" type=\"xsd:token\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
553
|
+
name=\"NextBusinessDayInd2\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
554
|
+
value=\"collapse\"/>\n\t\t\t<xsd:enumeration value=\"Y\"/>\n\t\t\t<xsd:enumeration
|
555
|
+
value=\"N\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n</xsd:schema><xsd:schema
|
556
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgResponse\">\n\t<xsd:element
|
557
|
+
name=\"ShipmentResponse\" type=\"s2:docTypeRef_ShipmentDetailType\"/>\n\t<xsd:complexType
|
558
|
+
name=\"docTypeRef_ShipmentDetailType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
559
|
+
maxOccurs=\"unbounded\" name=\"Notification\" type=\"s2:docTypeRef_NotificationType2\"/>\n\t\t\t<xsd:element
|
560
|
+
minOccurs=\"0\" name=\"PackagesResult\" type=\"s2:docTypeRef_PackagesResultsType\"/>\n\t\t\t<xsd:element
|
561
|
+
maxOccurs=\"unbounded\" minOccurs=\"0\" name=\"LabelImage\" type=\"s2:docTypeRef_LabelImageType\"/>\n\t\t\t<xsd:element
|
562
|
+
minOccurs=\"0\" name=\"ShipmentIdentificationNumber\" type=\"s2:ShipmentIdentificationNumber3\"/>\n\t\t\t<xsd:element
|
563
|
+
minOccurs=\"0\" name=\"DispatchConfirmationNumber\" type=\"xsd:token\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
564
|
+
name=\"docTypeRef_NotificationType2\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
565
|
+
name=\"Message\" type=\"s2:Message\"/>\n\t\t</xsd:sequence>\n\t\t<xsd:attribute
|
566
|
+
name=\"code\" type=\"s2:_x0040_code2\"/>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
567
|
+
name=\"_x0040_code2\">\n\t\t<xsd:restriction base=\"xsd:nonNegativeInteger\">\n\t\t\t<xsd:totalDigits
|
568
|
+
value=\"6\"/>\n\t\t\t<xsd:whiteSpace value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
569
|
+
name=\"Message\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
570
|
+
value=\"collapse\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
571
|
+
name=\"docTypeRef_PackagesResultsType\">\n\t\t<xsd:sequence>\n\t\t\t<xsd:element
|
572
|
+
maxOccurs=\"unbounded\" name=\"PackageResult\" type=\"s2:docTypeRef_PackageResultType\"/>\n\t\t</xsd:sequence>\n\t</xsd:complexType>\n\t<xsd:complexType
|
573
|
+
name=\"docTypeRef_PackageResultType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element
|
574
|
+
name=\"TrackingNumber\" type=\"s2:TrackingNumber\"/>\n\t\t</xsd:all>\n\t\t<xsd:attribute
|
575
|
+
name=\"number\" type=\"s2:_x0040_number2\"/>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
576
|
+
name=\"_x0040_number2\">\n\t\t<xsd:restriction base=\"xsd:int\">\n\t\t\t<xsd:minInclusive
|
577
|
+
value=\"1\"/>\n\t\t\t<xsd:maxInclusive value=\"50\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
578
|
+
name=\"TrackingNumber\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
579
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"1\"/>\n\t\t\t<xsd:maxLength
|
580
|
+
value=\"35\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:complexType
|
581
|
+
name=\"docTypeRef_LabelImageType\">\n\t\t<xsd:all>\n\t\t\t<xsd:element name=\"LabelImageFormat\"
|
582
|
+
type=\"s2:LabelImageFormat\"/>\n\t\t\t<xsd:element name=\"GraphicImage\" type=\"xsd:base64Binary\"/>\n\t\t\t<xsd:element
|
583
|
+
minOccurs=\"0\" name=\"HTMLImage\" type=\"xsd:base64Binary\"/>\n\t\t</xsd:all>\n\t</xsd:complexType>\n\t<xsd:simpleType
|
584
|
+
name=\"LabelImageFormat\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
585
|
+
value=\"collapse\"/>\n\t\t\t<xsd:maxLength value=\"3\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n\t<xsd:simpleType
|
586
|
+
name=\"ShipmentIdentificationNumber3\">\n\t\t<xsd:restriction base=\"xsd:token\">\n\t\t\t<xsd:whiteSpace
|
587
|
+
value=\"collapse\"/>\n\t\t\t<xsd:minLength value=\"10\"/>\n\t\t\t<xsd:maxLength
|
588
|
+
value=\"35\"/>\n\t\t</xsd:restriction>\n\t</xsd:simpleType>\n</xsd:schema><xsd:schema
|
589
|
+
targetNamespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/providerServices/ShipmentHandlingServices\">\n
|
590
|
+
\ <!--xmlns:ship="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentHandlingSchema"-->\n
|
591
|
+
\ <xsd:import namespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgRequest\"/>\n
|
592
|
+
\ <xsd:import namespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgResponse\"/>\n
|
593
|
+
\ <xsd:import namespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgResponse\"/>\n
|
594
|
+
\ <xsd:import namespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgRequest\"/>\n
|
595
|
+
\ <xsd:import namespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentRequest\"/>\n
|
596
|
+
\ <xsd:import namespace=\"http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentResponse\"/>\n
|
597
|
+
\ \n </xsd:schema></wsdl:types><wsdl:message name=\"getRateRequestIn\"><wsdl:part
|
598
|
+
name=\"parameters\" element=\"tns:RateRequest\"/></wsdl:message><wsdl:message
|
599
|
+
name=\"getRateRequestOut\"><wsdl:part name=\"parameters\" element=\"s1:RateResponse\"/></wsdl:message><wsdl:message
|
600
|
+
name=\"createShipmentRequestIn\"><wsdl:part name=\"parameters\" element=\"s3:ShipmentRequest\"/></wsdl:message><wsdl:message
|
601
|
+
name=\"createShipmentRequestOut\"><wsdl:part name=\"parameters\" element=\"s2:ShipmentResponse\"/></wsdl:message><wsdl:message
|
602
|
+
name=\"deleteShipmentRequestIn\"><wsdl:part name=\"parameters\" element=\"s4:DeleteRequest\"/></wsdl:message><wsdl:message
|
603
|
+
name=\"deleteShipmentRequestOut\"><wsdl:part name=\"parameters\" element=\"s5:DeleteResponse\"/></wsdl:message><wsdl:portType
|
604
|
+
name=\"amerGEeuExpressRateBook\"><wsdl:operation name=\"getRateRequest\"><wsdl:input
|
605
|
+
message=\"tns:getRateRequestIn\"/><wsdl:output message=\"tns:getRateRequestOut\"/></wsdl:operation><wsdl:operation
|
606
|
+
name=\"createShipmentRequest\"><wsdl:input message=\"tns:createShipmentRequestIn\"/><wsdl:output
|
607
|
+
message=\"tns:createShipmentRequestOut\"/></wsdl:operation><wsdl:operation
|
608
|
+
name=\"deleteShipmentRequest\"><wsdl:input message=\"tns:deleteShipmentRequestIn\"/><wsdl:output
|
609
|
+
message=\"tns:deleteShipmentRequestOut\"/></wsdl:operation></wsdl:portType><wsdl:binding
|
610
|
+
name=\"amerGEeuExpressRateBook\" type=\"tns:amerGEeuExpressRateBook\"><soap:binding
|
611
|
+
style=\"document\" transport=\"http://schemas.xmlsoap.org/soap/http\"/><wsdl:operation
|
612
|
+
name=\"getRateRequest\"><soap:operation soapAction=\"euExpressRateBook_providerServices_ShipmentHandlingServices_Binder_getRateRequest\"
|
613
|
+
style=\"document\"/><wsdl:input><soap:body use=\"literal\" parts=\"parameters\"/></wsdl:input><wsdl:output><soap:body
|
614
|
+
use=\"literal\" parts=\"parameters\"/></wsdl:output></wsdl:operation><wsdl:operation
|
615
|
+
name=\"createShipmentRequest\"><soap:operation soapAction=\"euExpressRateBook_providerServices_ShipmentHandlingServices_Binder_createShipmentRequest\"
|
616
|
+
style=\"document\"/><wsdl:input><soap:body use=\"literal\" parts=\"parameters\"/></wsdl:input><wsdl:output><soap:body
|
617
|
+
use=\"literal\" parts=\"parameters\"/></wsdl:output></wsdl:operation><wsdl:operation
|
618
|
+
name=\"deleteShipmentRequest\"><soap:operation soapAction=\"euExpressRateBook_providerServices_ShipmentHandlingServices_Binder_deleteShipmentRequest\"
|
619
|
+
style=\"document\"/><wsdl:input><soap:body use=\"literal\" parts=\"parameters\"/></wsdl:input><wsdl:output><soap:body
|
620
|
+
use=\"literal\" parts=\"parameters\"/></wsdl:output></wsdl:operation></wsdl:binding><wsdl:service
|
621
|
+
name=\"amerGEeuExpressRateBook\"><wsdl:port name=\"amerGEeuExpressRateBook\"
|
622
|
+
binding=\"tns:amerGEeuExpressRateBook\"><soap:address location=\"https://wsbuat.dhl.com:8300/amer/GEeuExpressRateBook\"/></wsdl:port></wsdl:service></wsdl:definitions>"
|
623
|
+
http_version:
|
624
|
+
recorded_at: Wed, 08 May 2013 12:36:29 GMT
|
625
|
+
- request:
|
626
|
+
method: post
|
627
|
+
uri: https://wsbuat.dhl.com:8300/amer/GEeuExpressRateBook
|
628
|
+
body:
|
629
|
+
encoding: UTF-8
|
630
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
631
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:s3="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgRequest"
|
632
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgRequest"
|
633
|
+
xmlns:ins1="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentResponse"
|
634
|
+
xmlns:ins2="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/DeleteShipmentRequest"
|
635
|
+
xmlns:ins3="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/RateMsgResponse"
|
636
|
+
xmlns:ins4="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgResponse"><env:Header><wsse:Security
|
637
|
+
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"><wsse:UsernameToken
|
638
|
+
wsu:Id="UsernameToken-1" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"><wsse:Username>username</wsse:Username><wsse:Password
|
639
|
+
Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">password</wsse:Password></wsse:UsernameToken><wsu:Timestamp
|
640
|
+
wsu:Id="Timestamp-2" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"><wsu:Created>2013-05-08T12:36:29Z</wsu:Created><wsu:Expires>2013-05-08T12:37:29Z</wsu:Expires></wsu:Timestamp></wsse:Security></env:Header><env:Body><s3:ShipmentRequest><RequestedShipment><ShipmentInfo><DropOffType>REGULAR_PICKUP</DropOffType><ServiceType>N</ServiceType><Currency>EUR</Currency><UnitOfMeasurement>SI</UnitOfMeasurement><Account>123456789</Account></ShipmentInfo><ShipTimestamp>2013-05-09T14:36:26GMT+02:00</ShipTimestamp><PaymentInfo>DDP</PaymentInfo><InternationalDetail><Commodities><NumberOfPieces>2</NumberOfPieces><Description>General
|
641
|
+
goods</Description></Commodities></InternationalDetail><Ship><Shipper><Contact><PersonName>John
|
642
|
+
Doe</PersonName><CompanyName>ACME Inc</CompanyName><PhoneNumber>+391234567890</PhoneNumber><EmailAddress>john@example.com</EmailAddress></Contact><Address><StreetLines>Piazza
|
643
|
+
Duomo, 1234</StreetLines><StreetLines2>Scala B</StreetLines2><City>Milano</City><PostalCode>20121</PostalCode><CountryCode>IT</CountryCode><StreetName>Piazza
|
644
|
+
Duomo</StreetName><StreetNumber>1234</StreetNumber><StateOrProvinceCode>MI</StateOrProvinceCode></Address></Shipper><Recipient><Contact><PersonName>John
|
645
|
+
Doe</PersonName><CompanyName>ACME Inc</CompanyName><PhoneNumber>+391234567890</PhoneNumber><EmailAddress>john@example.com</EmailAddress></Contact><Address><StreetLines>Piazza
|
646
|
+
Duomo, 1234</StreetLines><StreetLines2>Scala B</StreetLines2><City>Milano</City><PostalCode>20121</PostalCode><CountryCode>IT</CountryCode><StreetName>Piazza
|
647
|
+
Duomo</StreetName><StreetNumber>1234</StreetNumber><StateOrProvinceCode>MI</StateOrProvinceCode></Address></Recipient></Ship><Packages><RequestedPackages
|
648
|
+
number="1"><Weight>50</Weight><Dimensions><Width>10</Width><Height>15</Height><Length>20</Length></Dimensions><CustomerReferences>Ref
|
649
|
+
1</CustomerReferences></RequestedPackages><RequestedPackages number="2"><Weight>100</Weight><Dimensions><Width>40</Width><Height>45</Height><Length>35</Length></Dimensions><CustomerReferences>Ref
|
650
|
+
2</CustomerReferences></RequestedPackages></Packages></RequestedShipment></s3:ShipmentRequest></env:Body></env:Envelope>
|
651
|
+
headers:
|
652
|
+
Soapaction:
|
653
|
+
- '"euExpressRateBook_providerServices_ShipmentHandlingServices_Binder_createShipmentRequest"'
|
654
|
+
Content-Type:
|
655
|
+
- text/xml;charset=UTF-8
|
656
|
+
Content-Length:
|
657
|
+
- '3359'
|
658
|
+
Accept-Encoding:
|
659
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
660
|
+
Accept:
|
661
|
+
- '*/*'
|
662
|
+
User-Agent:
|
663
|
+
- Ruby
|
664
|
+
response:
|
665
|
+
status:
|
666
|
+
code: 200
|
667
|
+
message: OK
|
668
|
+
headers:
|
669
|
+
Date:
|
670
|
+
- Wed, 08 May 2013 12:36:31 GMT
|
671
|
+
Server:
|
672
|
+
- ACE XML Gateway
|
673
|
+
Content-Type:
|
674
|
+
- text/xml
|
675
|
+
Content-Length:
|
676
|
+
- '14808'
|
677
|
+
body:
|
678
|
+
encoding: UTF-8
|
679
|
+
string: |
|
680
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
681
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
682
|
+
<SOAP-ENV:Header xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"></SOAP-ENV:Header><SOAP-ENV:Body>
|
683
|
+
<shipresp:ShipmentResponse xmlns:shipresp="http://scxgxtt.phx-dc.dhl.com/euExpressRateBook/ShipmentMsgResponse">
|
684
|
+
<Notification code="0">
|
685
|
+
<Message></Message>
|
686
|
+
</Notification>
|
687
|
+
<PackagesResult>
|
688
|
+
<PackageResult number="1">
|
689
|
+
<TrackingNumber>JD012038742880323158</TrackingNumber>
|
690
|
+
</PackageResult>
|
691
|
+
<PackageResult number="2">
|
692
|
+
<TrackingNumber>JD012038742880323159</TrackingNumber>
|
693
|
+
</PackageResult>
|
694
|
+
</PackagesResult>
|
695
|
+
<LabelImage>
|
696
|
+
<LabelImageFormat>PDF</LabelImageFormat>
|
697
|
+
<GraphicImage>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NWNwuY+D5z/AKigvONOVjeq2ZAwu1CPGXrHJ25oxuNDHec9lOs77jqde6aivy7znP7XCjNGx6es68z0XaCgvsBDOA0+5sEHNmxjGPiXIAOeBp1zpqM+wTlhfMWMoNHXGRXQnf3QQceZkv8OGqdDUQjb1e98qlSzlPL/i1K+US+0fqH/z0efUNnz+TPp4mpMlUo9Wj+C3QLsztg9/pH//B/oZy74KZW5kc3RyZWFtCmVuZG9iago2IDAgb2JqCjw8L1R5cGUvRm9udC9CYXNlRm9udC9IZWx2ZXRpY2EtQm9sZC9TdWJ0eXBlL1R5cGUxL0VuY29kaW5nL1dpbkFuc2lFbmNvZGluZz4+CmVuZG9iago3IDAgb2JqCjw8L1R5cGUvRm9udC9CYXNlRm9udC9IZWx2ZXRpY2EvU3VidHlwZS9UeXBlMS9FbmNvZGluZy9XaW5BbnNpRW5jb2Rpbmc+PgplbmRvYmoKNCAwIG9iago8PC9GaWx0ZXIvRmxhdGVEZWNvZGUvTGVuZ3RoIDUxPj5zdHJlYW0KeJwr5HIK4TJQMDUz07M0VghJ4XIN4QrkKlQwVDAAQgiZnKugH5FmqOCSrxDIBQD9nwpWCmVuZHN0cmVhbQplbmRvYmoKMSAwIG9iago8PC9UeXBlL1BhZ2UvQ29udGVudHMgNCAwIFIvUGFyZW50IDMgMCBSL1Jlc291cmNlczw8L1Byb2NTZXRbL1BERi9UZXh0L0ltYWdlQi9JbWFnZUMvSW1hZ2VJXS9YT2JqZWN0PDwvWGYxIDUgMCBSPj4+Pi9NZWRpYUJveFswIDAgMjgwLjYzIDU2Ni45M10+PgplbmRvYmoKMyAwIG9iago8PC9Db3VudCAyL1R5cGUvUGFnZXMvS2lkc1sxIDAgUiAyIDAgUl0+PgplbmRvYmoKMTIgMCBvYmoKPDwvVHlwZS9DYXRhbG9nL1BhZ2VzIDMgMCBSPj4KZW5kb2JqCjEzIDAgb2JqCjw8L0NyZWF0aW9uRGF0ZShEOjIwMTMwNTA4MTIzNjQ0WikvUHJvZHVjZXIoaVRleHQgMi4xLjQgXChieSBsb3dhZ2llLmNvbVwpKS9Nb2REYXRlKEQ6MjAxMzA1MDgxMjM2NDRaKT4+CmVuZG9iagp4cmVmCjAgMTQKMDAwMDAwMDAwMCA2NTUzNSBmIAowMDAwMDA5NDgwIDAwMDAwIG4gCjAwMDAwMDQ2NzEgMDAwMDAgbiAKMDAwMDAwOTY0MiAwMDAwMCBuIAowMDAwMDA5MzYzIDAwMDAwIG4gCjAwMDAwMDQ4MzMgMDAwMDAgbiAKMDAwMDAwOTE4MiAwMDAwMCBuIAowMDAwMDA5Mjc1IDAwMDAwIG4gCjAwMDAwMDQ1NTQgMDAwMDAgbiAKMDAwMDAwMDAxNSAwMDAwMCBuIAowMDAwMDA0MzcxIDAwMDAwIG4gCjAwMDAwMDQ0NjUgMDAwMDAgbiAKMDAwMDAwOTY5OSAwMDAwMCBuIAowMDAwMDA5NzQ1IDAwMDAwIG4gCnRyYWlsZXIKPDwvSUQgWzxiMTMwYzE1YzM3ZGNhMjJlOGFjNzAzYjM5NTJmMDVlNT48NDI0NzU2OTg4NGNiY2QwNTkwZGZjODY2NTViZGZiNjY+XS9Sb290IDEyIDAgUi9TaXplIDE0L0luZm8gMTMgMCBSPj4Kc3RhcnR4cmVmCjk4NjYKJSVFT0YK</GraphicImage>
|
698
|
+
</LabelImage>
|
699
|
+
<ShipmentIdentificationNumber>9085882330</ShipmentIdentificationNumber>
|
700
|
+
</shipresp:ShipmentResponse></SOAP-ENV:Body>
|
701
|
+
</SOAP-ENV:Envelope>
|
702
|
+
http_version:
|
703
|
+
recorded_at: Wed, 08 May 2013 12:36:47 GMT
|
704
|
+
recorded_with: VCR 2.4.0
|