endicia_label_server-ruby 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.hound.yml +2 -0
- data/.rspec +1 -0
- data/.rubocop.yml +1065 -0
- data/.travis.yml +10 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +62 -0
- data/LICENSE.txt +14 -0
- data/README.md +66 -0
- data/Rakefile +19 -0
- data/endicia.wsdl +4272 -0
- data/endicia_label_server.gemspec +23 -0
- data/lib/endicia_label_server-ruby.rb +2 -0
- data/lib/endicia_label_server.rb +33 -0
- data/lib/endicia_label_server/builders/builder_base.rb +91 -0
- data/lib/endicia_label_server/builders/change_pass_phrase_builder.rb +18 -0
- data/lib/endicia_label_server/builders/postage_label_builder.rb +24 -0
- data/lib/endicia_label_server/builders/postage_rate_builder.rb +23 -0
- data/lib/endicia_label_server/builders/postage_rates_builder.rb +23 -0
- data/lib/endicia_label_server/builders/user_sign_up_builder.rb +24 -0
- data/lib/endicia_label_server/connection.rb +96 -0
- data/lib/endicia_label_server/exceptions.rb +5 -0
- data/lib/endicia_label_server/parsers/change_pass_phrase_parser.rb +20 -0
- data/lib/endicia_label_server/parsers/parser_base.rb +42 -0
- data/lib/endicia_label_server/parsers/postage_label_parser.rb +52 -0
- data/lib/endicia_label_server/parsers/postage_rate_parser.rb +43 -0
- data/lib/endicia_label_server/parsers/postage_rates_parser.rb +16 -0
- data/lib/endicia_label_server/parsers/user_sign_up_parser.rb +24 -0
- data/lib/endicia_label_server/service/mailpiece_shape.rb +92 -0
- data/lib/endicia_label_server/services.rb +37 -0
- data/lib/endicia_label_server/util.rb +29 -0
- data/lib/endicia_label_server/version.rb +10 -0
- data/spec/endicia_label_server/builders/builder_base_spec.rb +47 -0
- data/spec/endicia_label_server/connection/change_pass_phrase_spec.rb +45 -0
- data/spec/endicia_label_server/connection/multiple_rate_spec.rb +96 -0
- data/spec/endicia_label_server/connection/postage_label_spec.rb +67 -0
- data/spec/endicia_label_server/connection/single_rate_spec.rb +57 -0
- data/spec/endicia_label_server/connection/user_sign_up_spec.rb +93 -0
- data/spec/endicia_label_server/connection_spec.rb +21 -0
- data/spec/endicia_label_server/service/mailpiece_shape_spec.rb +159 -0
- data/spec/spec_helper.rb +18 -0
- data/spec/stubs/change_pass_phrase_success.xml +8 -0
- data/spec/stubs/postage_label_success.xml +17 -0
- data/spec/stubs/postage_rate_success.xml +147 -0
- data/spec/stubs/postage_rates_success.xml +184 -0
- data/spec/stubs/user_sign_up_success.xml +7 -0
- metadata +150 -0
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
endicia_label_server-ruby (0.2.2)
|
5
|
+
excon (~> 0.45, >= 0.45.3)
|
6
|
+
insensitive_hash (~> 0.3.3, >= 0.3.3)
|
7
|
+
ox (~> 2.2, >= 2.2.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: http://rubygems.org/
|
11
|
+
specs:
|
12
|
+
codeclimate-test-reporter (1.0.5)
|
13
|
+
simplecov
|
14
|
+
diff-lcs (1.3)
|
15
|
+
docile (1.1.5)
|
16
|
+
excon (0.54.0)
|
17
|
+
faker (1.7.2)
|
18
|
+
i18n (~> 0.5)
|
19
|
+
i18n (0.7.0)
|
20
|
+
insensitive_hash (0.3.3)
|
21
|
+
json (2.0.3)
|
22
|
+
mini_portile2 (2.1.0)
|
23
|
+
nokogiri (1.7.0.1)
|
24
|
+
mini_portile2 (~> 2.1.0)
|
25
|
+
ox (2.4.9)
|
26
|
+
rake (12.0.0)
|
27
|
+
rspec (3.5.0)
|
28
|
+
rspec-core (~> 3.5.0)
|
29
|
+
rspec-expectations (~> 3.5.0)
|
30
|
+
rspec-mocks (~> 3.5.0)
|
31
|
+
rspec-core (3.5.4)
|
32
|
+
rspec-support (~> 3.5.0)
|
33
|
+
rspec-expectations (3.5.0)
|
34
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
35
|
+
rspec-support (~> 3.5.0)
|
36
|
+
rspec-mocks (3.5.0)
|
37
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
38
|
+
rspec-support (~> 3.5.0)
|
39
|
+
rspec-support (3.5.0)
|
40
|
+
rspec-xsd (0.1.0)
|
41
|
+
nokogiri (~> 1.6)
|
42
|
+
rspec (~> 3)
|
43
|
+
simplecov (0.13.0)
|
44
|
+
docile (~> 1.1.0)
|
45
|
+
json (>= 1.8, < 3)
|
46
|
+
simplecov-html (~> 0.10.0)
|
47
|
+
simplecov-html (0.10.0)
|
48
|
+
|
49
|
+
PLATFORMS
|
50
|
+
ruby
|
51
|
+
|
52
|
+
DEPENDENCIES
|
53
|
+
codeclimate-test-reporter (~> 1.0.0)
|
54
|
+
endicia_label_server-ruby!
|
55
|
+
faker
|
56
|
+
rake
|
57
|
+
rspec
|
58
|
+
rspec-xsd
|
59
|
+
simplecov
|
60
|
+
|
61
|
+
BUNDLED WITH
|
62
|
+
1.13.6
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
Copyright (c) 2017 Paul Trippett and Veeqo Ltd
|
2
|
+
|
3
|
+
This program is free software: you can redistribute it and/or modify
|
4
|
+
it under the terms of the GNU Affero General Public License as
|
5
|
+
published by the Free Software Foundation, either version 3 of the
|
6
|
+
License, or (at your option) any later version.
|
7
|
+
|
8
|
+
This program is distributed in the hope that it will be useful,
|
9
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
GNU Affero General Public License for more details.
|
12
|
+
|
13
|
+
You should have received a copy of the GNU Affero General Public License
|
14
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
data/README.md
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
[](http://badge.fury.io/rb/endicia_label_server)
|
2
|
+
[](https://gemnasium.com/ptrippett/endicia_label_server)
|
3
|
+
[](https://travis-ci.org/ptrippett/endicia_label_server)
|
4
|
+
[](https://codeclimate.com/github/ptrippett/endicia_label_server/coverage)
|
5
|
+
[](https://codeclimate.com/github/ptrippett/endicia_label_server)
|
6
|
+
|
7
|
+
# Endicia Label Server
|
8
|
+
|
9
|
+
Endicia Label Server Gem for accessing the Endicia Label Server API from Ruby. Using the gem you can:
|
10
|
+
- Return quotes from the Endicia Label Server API
|
11
|
+
- Book shipments
|
12
|
+
- Return labels and tracking numbers for a shipment
|
13
|
+
|
14
|
+
This gem is currently used in production at [Veeqo](http://www.veeqo.com)
|
15
|
+
|
16
|
+
## Installation
|
17
|
+
|
18
|
+
```sh
|
19
|
+
$ gem install endicia_label_server-ruby
|
20
|
+
```
|
21
|
+
|
22
|
+
...or add it to your project's [Gemfile](http://bundler.io/).
|
23
|
+
|
24
|
+
## Documentation
|
25
|
+
|
26
|
+
Yard documentation can be found at [RubyDoc](http://www.rubydoc.info/github/ptrippett/endicia_label_server).
|
27
|
+
|
28
|
+
## Sample Usage
|
29
|
+
|
30
|
+
### Return rates
|
31
|
+
|
32
|
+
```sh
|
33
|
+
# For testing on the command line
|
34
|
+
$ rake console
|
35
|
+
```
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
require 'endicia_label_server'
|
39
|
+
server = EndiciaLabelServer::Connection.new(test_mode: true)
|
40
|
+
response = server.rate do |rate_builder|
|
41
|
+
rate_builder.add :certified_intermediary, {
|
42
|
+
account_id: ENV['ENDICIA_ACCOUNT_ID'],
|
43
|
+
pass_phrase: ENV['ENDICIA_PASS_PHRASE'] # or token: ENV['ENDICIA_TOKEN']
|
44
|
+
}
|
45
|
+
rate_builder.add :requester_id, ENV['ENDICIA_REQUESTER_ID']
|
46
|
+
rate_builder.add :mail_class, EndiciaLabelServer::SERVICES.keys.first
|
47
|
+
rate_builder.add :mailpiece_dimensions, {
|
48
|
+
length: '10',
|
49
|
+
width: '10',
|
50
|
+
height: '10'
|
51
|
+
}
|
52
|
+
rate_builder.add :weight_oz, "2"
|
53
|
+
rate_builder.add :from_postal_code, '90210'
|
54
|
+
rate_builder.add :to_postal_code, '02215'
|
55
|
+
rate_builder.add :to_country_code, 'US'
|
56
|
+
end
|
57
|
+
```
|
58
|
+
|
59
|
+
```ruby
|
60
|
+
# Then use...
|
61
|
+
response.success?
|
62
|
+
```
|
63
|
+
|
64
|
+
## Running the tests
|
65
|
+
|
66
|
+
After installing dependencies with `bundle install`, you can run the unit tests using `rspec`.
|
data/Rakefile
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
Bundler.setup
|
3
|
+
Bundler::GemHelper.install_tasks
|
4
|
+
|
5
|
+
require 'rake'
|
6
|
+
require 'rspec'
|
7
|
+
require 'rspec/core/rake_task'
|
8
|
+
|
9
|
+
RSpec::Core::RakeTask.new('spec') do |spec|
|
10
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
11
|
+
end
|
12
|
+
|
13
|
+
Dir.glob('tasks/*.rake').each { |r| import r }
|
14
|
+
|
15
|
+
task default: :spec
|
16
|
+
|
17
|
+
task :console do
|
18
|
+
exec 'irb -r endicia_label_server -I ./lib'
|
19
|
+
end
|
data/endicia.wsdl
ADDED
@@ -0,0 +1,4272 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="www.envmgr.com/LabelService" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="www.envmgr.com/LabelService" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
3
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">You have reached the Help page for the Label Server Web Service.</wsdl:documentation>
|
4
|
+
<wsdl:types>
|
5
|
+
<s:schema elementFormDefault="qualified" targetNamespace="www.envmgr.com/LabelService">
|
6
|
+
<s:element name="GetRefundXML">
|
7
|
+
<s:complexType>
|
8
|
+
<s:sequence>
|
9
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefundRequestXML" type="s:string" />
|
10
|
+
</s:sequence>
|
11
|
+
</s:complexType>
|
12
|
+
</s:element>
|
13
|
+
<s:element name="GetRefundXMLResponse">
|
14
|
+
<s:complexType>
|
15
|
+
<s:sequence>
|
16
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefundResponse" type="tns:RefundResponse" />
|
17
|
+
</s:sequence>
|
18
|
+
</s:complexType>
|
19
|
+
</s:element>
|
20
|
+
<s:complexType name="RefundResponse">
|
21
|
+
<s:sequence>
|
22
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
23
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
24
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
25
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Refund" type="tns:LabelResponse" />
|
26
|
+
<s:element minOccurs="0" maxOccurs="1" name="FormId" type="s:string" />
|
27
|
+
</s:sequence>
|
28
|
+
</s:complexType>
|
29
|
+
<s:complexType name="LabelResponse">
|
30
|
+
<s:sequence>
|
31
|
+
<s:element minOccurs="1" maxOccurs="1" name="RefundStatus" type="tns:RefundStatus" />
|
32
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefundStatusMessage" type="s:string" />
|
33
|
+
</s:sequence>
|
34
|
+
<s:attribute name="PicNumber" type="s:string" />
|
35
|
+
<s:attribute name="TransactionId" type="s:long" use="required" />
|
36
|
+
<s:attribute name="PieceNumber" type="s:int" use="required" />
|
37
|
+
</s:complexType>
|
38
|
+
<s:simpleType name="RefundStatus">
|
39
|
+
<s:restriction base="s:string">
|
40
|
+
<s:enumeration value="Approved" />
|
41
|
+
<s:enumeration value="DeniedInvalid" />
|
42
|
+
</s:restriction>
|
43
|
+
</s:simpleType>
|
44
|
+
<s:element name="ResetSuspendedAccount">
|
45
|
+
<s:complexType>
|
46
|
+
<s:sequence>
|
47
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResetSuspendedAccountRequest" type="tns:ResetSuspendedAccountRequest" />
|
48
|
+
</s:sequence>
|
49
|
+
</s:complexType>
|
50
|
+
</s:element>
|
51
|
+
<s:complexType name="ResetSuspendedAccountRequest">
|
52
|
+
<s:complexContent mixed="false">
|
53
|
+
<s:extension base="tns:DataValidator">
|
54
|
+
<s:sequence>
|
55
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
56
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
57
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountID" type="s:string" />
|
58
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChallengeAnswer" type="s:string" />
|
59
|
+
<s:element minOccurs="0" maxOccurs="1" name="NewPassPhrase" type="s:string" />
|
60
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCardNumber" type="s:string" />
|
61
|
+
</s:sequence>
|
62
|
+
<s:attribute name="TokenRequested" type="s:boolean" use="required" />
|
63
|
+
</s:extension>
|
64
|
+
</s:complexContent>
|
65
|
+
</s:complexType>
|
66
|
+
<s:complexType name="DataValidator" />
|
67
|
+
<s:element name="ResetSuspendedAccountResponse">
|
68
|
+
<s:complexType>
|
69
|
+
<s:sequence>
|
70
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResetSuspendedAccountRequestResponse" type="tns:ResetSuspendedAccountRequestResponse" />
|
71
|
+
</s:sequence>
|
72
|
+
</s:complexType>
|
73
|
+
</s:element>
|
74
|
+
<s:complexType name="ResetSuspendedAccountRequestResponse">
|
75
|
+
<s:sequence>
|
76
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
77
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
78
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
79
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
80
|
+
<s:element minOccurs="0" maxOccurs="1" name="Token" type="s:string" />
|
81
|
+
</s:sequence>
|
82
|
+
</s:complexType>
|
83
|
+
<s:element name="ResetSuspendedAccountXML">
|
84
|
+
<s:complexType>
|
85
|
+
<s:sequence>
|
86
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResetSuspendedAccountRequestXML" type="s:string" />
|
87
|
+
</s:sequence>
|
88
|
+
</s:complexType>
|
89
|
+
</s:element>
|
90
|
+
<s:element name="ResetSuspendedAccountXMLResponse">
|
91
|
+
<s:complexType>
|
92
|
+
<s:sequence>
|
93
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResetSuspendedAccountRequestResponse" type="tns:ResetSuspendedAccountRequestResponse" />
|
94
|
+
</s:sequence>
|
95
|
+
</s:complexType>
|
96
|
+
</s:element>
|
97
|
+
<s:element name="GetChallengeQuestion">
|
98
|
+
<s:complexType>
|
99
|
+
<s:sequence>
|
100
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChallengeQuestionRequest" type="tns:ChallengeQuestionRequest" />
|
101
|
+
</s:sequence>
|
102
|
+
</s:complexType>
|
103
|
+
</s:element>
|
104
|
+
<s:complexType name="ChallengeQuestionRequest">
|
105
|
+
<s:complexContent mixed="false">
|
106
|
+
<s:extension base="tns:DataValidator">
|
107
|
+
<s:sequence>
|
108
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
109
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
110
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountID" type="s:string" />
|
111
|
+
<s:element minOccurs="0" maxOccurs="1" name="EMail" type="s:string" />
|
112
|
+
</s:sequence>
|
113
|
+
</s:extension>
|
114
|
+
</s:complexContent>
|
115
|
+
</s:complexType>
|
116
|
+
<s:element name="GetChallengeQuestionResponse">
|
117
|
+
<s:complexType>
|
118
|
+
<s:sequence>
|
119
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChallengeQuestionResponse" type="tns:ChallengeQuestionResponse" />
|
120
|
+
</s:sequence>
|
121
|
+
</s:complexType>
|
122
|
+
</s:element>
|
123
|
+
<s:complexType name="ChallengeQuestionResponse">
|
124
|
+
<s:sequence>
|
125
|
+
<s:element minOccurs="0" maxOccurs="1" name="Question" type="s:string" />
|
126
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
127
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
128
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
129
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
130
|
+
</s:sequence>
|
131
|
+
</s:complexType>
|
132
|
+
<s:element name="GetChallengeQuestionXML">
|
133
|
+
<s:complexType>
|
134
|
+
<s:sequence>
|
135
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChallengeQuestionRequestXML" type="s:string" />
|
136
|
+
</s:sequence>
|
137
|
+
</s:complexType>
|
138
|
+
</s:element>
|
139
|
+
<s:element name="GetChallengeQuestionXMLResponse">
|
140
|
+
<s:complexType>
|
141
|
+
<s:sequence>
|
142
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChallengeQuestionResponse" type="tns:ChallengeQuestionResponse" />
|
143
|
+
</s:sequence>
|
144
|
+
</s:complexType>
|
145
|
+
</s:element>
|
146
|
+
<s:element name="GetAccountStatus">
|
147
|
+
<s:complexType>
|
148
|
+
<s:sequence>
|
149
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatusRequest" type="tns:AccountStatusRequest" />
|
150
|
+
</s:sequence>
|
151
|
+
</s:complexType>
|
152
|
+
</s:element>
|
153
|
+
<s:complexType name="AccountStatusRequest">
|
154
|
+
<s:complexContent mixed="false">
|
155
|
+
<s:extension base="tns:DataValidator">
|
156
|
+
<s:sequence>
|
157
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
158
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
159
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
160
|
+
</s:sequence>
|
161
|
+
<s:attribute name="ResponseVersion" type="tns:RespVersion" use="required" />
|
162
|
+
</s:extension>
|
163
|
+
</s:complexContent>
|
164
|
+
</s:complexType>
|
165
|
+
<s:complexType name="CertifiedIntermediary">
|
166
|
+
<s:sequence>
|
167
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountID" type="s:string" />
|
168
|
+
<s:element minOccurs="0" maxOccurs="1" name="PassPhrase" type="s:string" />
|
169
|
+
<s:element minOccurs="0" maxOccurs="1" name="Token" type="s:string" />
|
170
|
+
</s:sequence>
|
171
|
+
</s:complexType>
|
172
|
+
<s:simpleType name="RespVersion">
|
173
|
+
<s:restriction base="s:string">
|
174
|
+
<s:enumeration value="0" />
|
175
|
+
<s:enumeration value="1" />
|
176
|
+
</s:restriction>
|
177
|
+
</s:simpleType>
|
178
|
+
<s:element name="GetAccountStatusResponse">
|
179
|
+
<s:complexType>
|
180
|
+
<s:sequence>
|
181
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatusResponse" type="tns:AccountStatusResponse" />
|
182
|
+
</s:sequence>
|
183
|
+
</s:complexType>
|
184
|
+
</s:element>
|
185
|
+
<s:complexType name="AccountStatusResponse">
|
186
|
+
<s:sequence>
|
187
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
188
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
189
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
190
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
191
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediaryStatus" />
|
192
|
+
<s:element minOccurs="0" maxOccurs="1" name="Discounts" type="tns:AccountDiscounts" />
|
193
|
+
<s:element minOccurs="1" maxOccurs="1" name="AccountType" type="tns:AccountTypes" />
|
194
|
+
<s:element minOccurs="1" maxOccurs="1" name="ApprovedShipper" type="s:boolean" />
|
195
|
+
<s:element minOccurs="1" maxOccurs="1" name="ConsolidatorServices" type="s:boolean" />
|
196
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContractID" type="tns:AccountContractIDs" />
|
197
|
+
<s:element minOccurs="1" maxOccurs="1" name="InsuranceAgreement" type="s:boolean" />
|
198
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatus" type="tns:AccountStatus" />
|
199
|
+
</s:sequence>
|
200
|
+
</s:complexType>
|
201
|
+
<s:complexType name="CertifiedIntermediaryStatus">
|
202
|
+
<s:sequence>
|
203
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountID" type="s:string" />
|
204
|
+
<s:element minOccurs="1" maxOccurs="1" name="SerialNumber" type="s:int" />
|
205
|
+
<s:element minOccurs="1" maxOccurs="1" name="PostageBalance" type="s:decimal" />
|
206
|
+
<s:element minOccurs="1" maxOccurs="1" name="AscendingBalance" type="s:decimal" />
|
207
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatus" type="s:string" />
|
208
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeviceID" type="s:string" />
|
209
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID" type="s:string" />
|
210
|
+
</s:sequence>
|
211
|
+
</s:complexType>
|
212
|
+
<s:complexType name="AccountDiscounts">
|
213
|
+
<s:sequence>
|
214
|
+
<s:element minOccurs="0" maxOccurs="1" name="PriorityMail" type="tns:Discounts" />
|
215
|
+
<s:element minOccurs="0" maxOccurs="1" name="PMExpress" type="tns:Discounts" />
|
216
|
+
<s:element minOccurs="0" maxOccurs="1" name="FCPS" type="tns:Discounts" />
|
217
|
+
<s:element minOccurs="0" maxOccurs="1" name="PMI" type="tns:DiscountRates" />
|
218
|
+
<s:element minOccurs="0" maxOccurs="1" name="EMI" type="tns:DiscountRates" />
|
219
|
+
<s:element minOccurs="0" maxOccurs="1" name="FCPIS" type="tns:DiscountRates" />
|
220
|
+
</s:sequence>
|
221
|
+
</s:complexType>
|
222
|
+
<s:complexType name="Discounts">
|
223
|
+
<s:attribute name="Discount" type="tns:MailDiscount" use="required" />
|
224
|
+
<s:attribute name="CubicPricing" type="s:boolean" use="required" />
|
225
|
+
<s:attribute name="FlatRatePaddedEnvelope" type="s:boolean" use="required" />
|
226
|
+
<s:attribute name="HalfPoundRate" type="s:boolean" use="required" />
|
227
|
+
<s:attribute name="CriticalMail" type="s:boolean" use="required" />
|
228
|
+
<s:attribute name="RegionalRateBox" type="s:boolean" use="required" />
|
229
|
+
<s:attribute name="OpenAndDistribute" type="s:boolean" use="required" />
|
230
|
+
</s:complexType>
|
231
|
+
<s:simpleType name="MailDiscount">
|
232
|
+
<s:restriction base="s:string">
|
233
|
+
<s:enumeration value="ComBase" />
|
234
|
+
<s:enumeration value="CPP" />
|
235
|
+
<s:enumeration value="Custom" />
|
236
|
+
</s:restriction>
|
237
|
+
</s:simpleType>
|
238
|
+
<s:complexType name="DiscountRates">
|
239
|
+
<s:attribute name="Discount" type="tns:MailDiscount" use="required" />
|
240
|
+
</s:complexType>
|
241
|
+
<s:simpleType name="AccountTypes">
|
242
|
+
<s:restriction base="s:string">
|
243
|
+
<s:enumeration value="USPS" />
|
244
|
+
<s:enumeration value="Retail" />
|
245
|
+
</s:restriction>
|
246
|
+
</s:simpleType>
|
247
|
+
<s:complexType name="AccountContractIDs">
|
248
|
+
<s:sequence>
|
249
|
+
<s:element minOccurs="0" maxOccurs="1" name="DomesticCID" type="s:string" />
|
250
|
+
<s:element minOccurs="0" maxOccurs="1" name="InternationalCID" type="s:string" />
|
251
|
+
</s:sequence>
|
252
|
+
</s:complexType>
|
253
|
+
<s:complexType name="AccountStatus">
|
254
|
+
<s:sequence>
|
255
|
+
<s:element minOccurs="0" maxOccurs="1" name="Status" type="s:string" />
|
256
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReturnCode" nillable="true" type="s:int" />
|
257
|
+
</s:sequence>
|
258
|
+
</s:complexType>
|
259
|
+
<s:element name="GetAccountStatusXML">
|
260
|
+
<s:complexType>
|
261
|
+
<s:sequence>
|
262
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatusRequestXML" type="s:string" />
|
263
|
+
</s:sequence>
|
264
|
+
</s:complexType>
|
265
|
+
</s:element>
|
266
|
+
<s:element name="GetAccountStatusXMLResponse">
|
267
|
+
<s:complexType>
|
268
|
+
<s:sequence>
|
269
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatusResponse" type="tns:AccountStatusResponse" />
|
270
|
+
</s:sequence>
|
271
|
+
</s:complexType>
|
272
|
+
</s:element>
|
273
|
+
<s:element name="GetPostageLabel">
|
274
|
+
<s:complexType>
|
275
|
+
<s:sequence>
|
276
|
+
<s:element minOccurs="0" maxOccurs="1" name="LabelRequest" type="tns:LabelRequest" />
|
277
|
+
</s:sequence>
|
278
|
+
</s:complexType>
|
279
|
+
</s:element>
|
280
|
+
<s:complexType name="LabelRequest">
|
281
|
+
<s:complexContent mixed="false">
|
282
|
+
<s:extension base="tns:CommonLabelRequestAndPostageRateRequest">
|
283
|
+
<s:sequence>
|
284
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
285
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountID" type="s:string" />
|
286
|
+
<s:element minOccurs="0" maxOccurs="1" name="PassPhrase" type="s:string" />
|
287
|
+
<s:element minOccurs="0" maxOccurs="1" name="AutomationRate" type="s:string" />
|
288
|
+
<s:element minOccurs="0" maxOccurs="1" name="Machinable" type="s:string" />
|
289
|
+
<s:element minOccurs="0" maxOccurs="1" name="ServiceLevel" type="s:string" />
|
290
|
+
<s:element minOccurs="0" maxOccurs="1" name="SortType" type="s:string" />
|
291
|
+
<s:element minOccurs="0" maxOccurs="1" name="IncludePostage" type="s:string" />
|
292
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReplyPostage" type="s:string" />
|
293
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShowReturnAddress" type="s:string" />
|
294
|
+
<s:element minOccurs="0" maxOccurs="1" name="Stealth" type="s:string" />
|
295
|
+
<s:element minOccurs="0" maxOccurs="1" name="ValidateAddress" type="s:string" />
|
296
|
+
<s:element minOccurs="0" maxOccurs="1" name="SignatureWaiver" type="s:string" />
|
297
|
+
<s:element minOccurs="0" maxOccurs="1" name="NoWeekendDelivery" type="s:string" />
|
298
|
+
<s:element minOccurs="0" maxOccurs="1" name="Services" type="tns:SpecialServices" />
|
299
|
+
<s:element minOccurs="1" maxOccurs="1" name="CostCenter" type="s:int" />
|
300
|
+
<s:element minOccurs="1" maxOccurs="1" name="Value" type="s:float" />
|
301
|
+
<s:element minOccurs="0" maxOccurs="1" default="0" name="CODAmount" type="s:double" />
|
302
|
+
<s:element minOccurs="0" maxOccurs="1" default="0" name="RegisteredMailValue" type="s:double" />
|
303
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
304
|
+
<s:element minOccurs="0" maxOccurs="1" name="IntegratedFormType" type="s:string" />
|
305
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsFormType" type="s:string" />
|
306
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsFormImageFormat" type="s:string" />
|
307
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsFormImageResolution" type="s:string" />
|
308
|
+
<s:element minOccurs="0" maxOccurs="1" name="OriginCountry" type="s:string" />
|
309
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContentsType" type="s:string" />
|
310
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContentsExplanation" type="s:string" />
|
311
|
+
<s:element minOccurs="0" maxOccurs="1" name="NonDeliveryOption" type="s:string" />
|
312
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID" type="s:string" />
|
313
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID2" type="s:string" />
|
314
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID3" type="s:string" />
|
315
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID4" type="s:string" />
|
316
|
+
<s:element minOccurs="0" maxOccurs="1" name="PartnerCustomerID" type="s:string" />
|
317
|
+
<s:element minOccurs="0" maxOccurs="1" name="PartnerTransactionID" type="s:string" />
|
318
|
+
<s:element minOccurs="0" maxOccurs="1" name="BpodClientDunsNumber" type="s:string" />
|
319
|
+
<s:element minOccurs="0" maxOccurs="1" name="RubberStamp1" type="s:string" />
|
320
|
+
<s:element minOccurs="0" maxOccurs="1" name="RubberStamp2" type="s:string" />
|
321
|
+
<s:element minOccurs="0" maxOccurs="1" name="RubberStamp3" type="s:string" />
|
322
|
+
<s:element minOccurs="0" maxOccurs="1" name="EntryFacility" type="s:string" />
|
323
|
+
<s:element minOccurs="0" maxOccurs="1" name="POZipCode" type="s:string" />
|
324
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipDate" type="s:string" />
|
325
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipTime" type="s:string" />
|
326
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsInfo" type="tns:CustomsInfo" />
|
327
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsCertify" type="s:string" />
|
328
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsSigner" type="s:string" />
|
329
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpEmailAddress" type="s:string" />
|
330
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpSMS" type="s:string" />
|
331
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityID" type="s:string" />
|
332
|
+
<s:element minOccurs="0" maxOccurs="1" name="MRSPermitNo" type="s:string" />
|
333
|
+
<s:element minOccurs="0" maxOccurs="1" name="MRSPermitCityStateZIP" type="s:string" />
|
334
|
+
<s:element minOccurs="0" maxOccurs="1" name="MRSPermitFirm" type="s:string" />
|
335
|
+
<s:element minOccurs="0" maxOccurs="1" name="MRSPermitStreet" type="s:string" />
|
336
|
+
<s:element minOccurs="0" maxOccurs="1" name="MRSRMANumber" type="s:string" />
|
337
|
+
<s:element minOccurs="0" maxOccurs="1" name="OpenAndDistributeFacilityType" type="s:string" />
|
338
|
+
<s:element minOccurs="0" maxOccurs="1" name="OpenAndDistributeFacilityName" type="s:string" />
|
339
|
+
<s:element minOccurs="0" maxOccurs="1" name="OpenAndDistributeTray" type="s:string" />
|
340
|
+
<s:element minOccurs="0" maxOccurs="1" name="OpenAndDistributeMailClassEnclosed" type="s:string" />
|
341
|
+
<s:element minOccurs="0" maxOccurs="1" name="OpenAndDistributeMailClassOther" type="s:string" />
|
342
|
+
<s:element minOccurs="0" maxOccurs="1" name="GXGFedexTrackingNumber" type="s:string" />
|
343
|
+
<s:element minOccurs="0" maxOccurs="1" name="GXGUSPSTrackingNumber" type="s:string" />
|
344
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintConsolidatorLabel" type="s:string" />
|
345
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResponseOptions" type="tns:ResponseOptions" />
|
346
|
+
<s:element minOccurs="0" maxOccurs="1" name="Token" type="s:string" />
|
347
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsSendersCopy" type="s:string" />
|
348
|
+
<s:element minOccurs="0" maxOccurs="1" name="NoDate" type="s:string" />
|
349
|
+
<s:element minOccurs="0" maxOccurs="1" name="MerchantID" type="s:string" />
|
350
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintScanBasedPaymentLabel" type="s:string" />
|
351
|
+
<s:element minOccurs="0" maxOccurs="1" name="SpecialContents" type="s:string" />
|
352
|
+
<s:element minOccurs="0" maxOccurs="1" name="eVSOptions" type="tns:eVSOptions" />
|
353
|
+
<s:element minOccurs="0" maxOccurs="1" name="COD3816" type="tns:Cod3816" />
|
354
|
+
<s:element minOccurs="0" maxOccurs="1" name="EmailMiscNotes" type="s:string" />
|
355
|
+
<s:element minOccurs="0" maxOccurs="1" name="InsuredValue" type="s:string" />
|
356
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromName" type="s:string" />
|
357
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCompany" type="s:string" />
|
358
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnAddress1" type="s:string" />
|
359
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnAddress2" type="s:string" />
|
360
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnAddress3" type="s:string" />
|
361
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnAddress4" type="s:string" />
|
362
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCity" type="s:string" />
|
363
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromState" type="s:string" />
|
364
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromPostalCode" type="s:string" />
|
365
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromZIP4" type="s:string" />
|
366
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCountry" type="s:string" />
|
367
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromPhone" type="s:string" />
|
368
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromEMail" type="s:string" />
|
369
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToName" type="s:string" />
|
370
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCompany" type="s:string" />
|
371
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToAddress1" type="s:string" />
|
372
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToAddress2" type="s:string" />
|
373
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToAddress3" type="s:string" />
|
374
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToAddress4" type="s:string" />
|
375
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCity" type="s:string" />
|
376
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToState" type="s:string" />
|
377
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToPostalCode" type="s:string" />
|
378
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToZIP4" type="s:string" />
|
379
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToDeliveryPoint" type="s:string" />
|
380
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountry" type="s:string" />
|
381
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountryCode" type="s:string" />
|
382
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToPhone" type="s:string" />
|
383
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToEMail" type="s:string" />
|
384
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsCountry1" type="s:string" />
|
385
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsDescription1" type="s:string" />
|
386
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsQuantity1" type="s:unsignedInt" />
|
387
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsValue1" type="s:float" />
|
388
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsWeight1" type="s:unsignedInt" />
|
389
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsCountry2" type="s:string" />
|
390
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsDescription2" type="s:string" />
|
391
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsQuantity2" type="s:unsignedInt" />
|
392
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsValue2" type="s:float" />
|
393
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsWeight2" type="s:unsignedInt" />
|
394
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsCountry3" type="s:string" />
|
395
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsDescription3" type="s:string" />
|
396
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsQuantity3" type="s:unsignedInt" />
|
397
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsValue3" type="s:float" />
|
398
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsWeight3" type="s:unsignedInt" />
|
399
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsCountry4" type="s:string" />
|
400
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsDescription4" type="s:string" />
|
401
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsQuantity4" type="s:unsignedInt" />
|
402
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsValue4" type="s:float" />
|
403
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsWeight4" type="s:unsignedInt" />
|
404
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsCountry5" type="s:string" />
|
405
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsDescription5" type="s:string" />
|
406
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsQuantity5" type="s:unsignedInt" />
|
407
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsValue5" type="s:float" />
|
408
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsWeight5" type="s:unsignedInt" />
|
409
|
+
<s:element minOccurs="0" maxOccurs="1" name="EelPfc" type="s:string" />
|
410
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityName" type="s:string" />
|
411
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityAddress1" type="s:string" />
|
412
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityCity" type="s:string" />
|
413
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityState" type="s:string" />
|
414
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityPostalCode" type="s:string" />
|
415
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityZIP4" type="s:string" />
|
416
|
+
<s:element minOccurs="0" maxOccurs="1" name="CostCenterAlphaNumeric" type="s:string" />
|
417
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCarrierRoute" type="s:string" />
|
418
|
+
</s:sequence>
|
419
|
+
<s:attribute name="Test" type="s:string" />
|
420
|
+
<s:attribute name="LabelType" type="s:string" />
|
421
|
+
<s:attribute name="LabelSubtype" type="s:string" />
|
422
|
+
<s:attribute name="LabelSize" type="s:string" />
|
423
|
+
<s:attribute name="ImageFormat" type="s:string" />
|
424
|
+
<s:attribute name="ImageResolution" type="s:string" />
|
425
|
+
<s:attribute name="ImageRotation" type="s:string" />
|
426
|
+
<s:attribute name="LabelTemplate" type="s:string" />
|
427
|
+
</s:extension>
|
428
|
+
</s:complexContent>
|
429
|
+
</s:complexType>
|
430
|
+
<s:complexType name="CommonLabelRequestAndPostageRateRequest" abstract="true">
|
431
|
+
<s:complexContent mixed="false">
|
432
|
+
<s:extension base="tns:DataValidator">
|
433
|
+
<s:sequence>
|
434
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailpieceShape" type="s:string" />
|
435
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailClass" type="s:string" />
|
436
|
+
<s:element minOccurs="1" maxOccurs="1" name="WeightOz" type="s:double" />
|
437
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageTypeIndicator" type="s:string" />
|
438
|
+
<s:element minOccurs="0" maxOccurs="1" default="0" name="DateAdvance" type="s:int" />
|
439
|
+
<s:element minOccurs="0" maxOccurs="1" name="Pricing" type="s:string" />
|
440
|
+
<s:element minOccurs="0" maxOccurs="1" name="SundayHolidayDelivery" type="s:string" />
|
441
|
+
<s:element minOccurs="0" maxOccurs="1" name="LiveAnimalSurcharge" type="s:string" />
|
442
|
+
<s:element minOccurs="0" maxOccurs="1" name="Extension" type="s:string" />
|
443
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailpieceDimensions" type="tns:Dimensions" />
|
444
|
+
</s:sequence>
|
445
|
+
</s:extension>
|
446
|
+
</s:complexContent>
|
447
|
+
</s:complexType>
|
448
|
+
<s:complexType name="Dimensions">
|
449
|
+
<s:sequence>
|
450
|
+
<s:element minOccurs="1" maxOccurs="1" name="Length" type="s:double" />
|
451
|
+
<s:element minOccurs="1" maxOccurs="1" name="Width" type="s:double" />
|
452
|
+
<s:element minOccurs="1" maxOccurs="1" name="Height" type="s:double" />
|
453
|
+
</s:sequence>
|
454
|
+
</s:complexType>
|
455
|
+
<s:complexType name="SpecialServices">
|
456
|
+
<s:attribute name="DeliveryConfirmation" type="s:string" />
|
457
|
+
<s:attribute name="MailClassOnly" type="s:string" />
|
458
|
+
<s:attribute name="CertifiedMail" type="s:string" />
|
459
|
+
<s:attribute name="COD" type="s:string" />
|
460
|
+
<s:attribute name="ElectronicReturnReceipt" type="s:string" />
|
461
|
+
<s:attribute name="InsuredMail" type="s:string" />
|
462
|
+
<s:attribute name="RegisteredMail" type="s:string" />
|
463
|
+
<s:attribute name="RestrictedDelivery" type="s:string" />
|
464
|
+
<s:attribute name="ReturnReceipt" type="s:string" />
|
465
|
+
<s:attribute name="SignatureConfirmation" type="s:string" />
|
466
|
+
<s:attribute name="SignatureService" type="s:string" />
|
467
|
+
<s:attribute name="HoldForPickup" type="s:string" />
|
468
|
+
<s:attribute name="MerchandiseReturnService" type="s:string" />
|
469
|
+
<s:attribute name="OpenAndDistribute" type="s:string" />
|
470
|
+
<s:attribute name="AdultSignature" type="s:string" />
|
471
|
+
<s:attribute name="AdultSignatureRestrictedDelivery" type="s:string" />
|
472
|
+
<s:attribute name="AMDelivery" type="s:string" />
|
473
|
+
</s:complexType>
|
474
|
+
<s:complexType name="CustomsInfo">
|
475
|
+
<s:complexContent mixed="false">
|
476
|
+
<s:extension base="tns:DataValidator">
|
477
|
+
<s:sequence>
|
478
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContentsType" type="s:string" />
|
479
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContentsExplanation" type="s:string" />
|
480
|
+
<s:element minOccurs="0" maxOccurs="1" name="RestrictionType" type="s:string" />
|
481
|
+
<s:element minOccurs="0" maxOccurs="1" name="RestrictionComments" type="s:string" />
|
482
|
+
<s:element minOccurs="0" maxOccurs="1" name="SendersCustomsReference" type="s:string" />
|
483
|
+
<s:element minOccurs="0" maxOccurs="1" name="ImportersCustomsReference" type="s:string" />
|
484
|
+
<s:element minOccurs="0" maxOccurs="1" name="LicenseNumber" type="s:string" />
|
485
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertificateNumber" type="s:string" />
|
486
|
+
<s:element minOccurs="0" maxOccurs="1" name="InvoiceNumber" type="s:string" />
|
487
|
+
<s:element minOccurs="0" maxOccurs="1" name="NonDeliveryOption" type="s:string" />
|
488
|
+
<s:element minOccurs="0" maxOccurs="1" name="InsuredNumber" type="s:string" />
|
489
|
+
<s:element minOccurs="0" maxOccurs="1" name="EelPfc" type="s:string" />
|
490
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsItems" type="tns:ArrayOfCustomsItem" />
|
491
|
+
<s:element minOccurs="0" maxOccurs="1" name="RecipientTaxID" type="s:string" />
|
492
|
+
<s:element minOccurs="0" maxOccurs="1" name="DDPPayer" type="s:string" />
|
493
|
+
<s:element minOccurs="0" maxOccurs="1" name="DDPNonPaymentOption" type="s:string" />
|
494
|
+
</s:sequence>
|
495
|
+
</s:extension>
|
496
|
+
</s:complexContent>
|
497
|
+
</s:complexType>
|
498
|
+
<s:complexType name="ArrayOfCustomsItem">
|
499
|
+
<s:sequence>
|
500
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="CustomsItem" nillable="true" type="tns:CustomsItem" />
|
501
|
+
</s:sequence>
|
502
|
+
</s:complexType>
|
503
|
+
<s:complexType name="CustomsItem">
|
504
|
+
<s:complexContent mixed="false">
|
505
|
+
<s:extension base="tns:DataValidator">
|
506
|
+
<s:sequence>
|
507
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
508
|
+
<s:element minOccurs="1" maxOccurs="1" name="Quantity" type="s:int" />
|
509
|
+
<s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:decimal" />
|
510
|
+
<s:element minOccurs="1" maxOccurs="1" name="Value" type="s:decimal" />
|
511
|
+
<s:element minOccurs="0" maxOccurs="1" name="HSTariffNumber" type="s:string" />
|
512
|
+
<s:element minOccurs="0" maxOccurs="1" name="CountryOfOrigin" type="s:string" />
|
513
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemCode" type="s:string" />
|
514
|
+
<s:element minOccurs="0" maxOccurs="1" name="ProductFamilyCode" type="s:string" />
|
515
|
+
</s:sequence>
|
516
|
+
</s:extension>
|
517
|
+
</s:complexContent>
|
518
|
+
</s:complexType>
|
519
|
+
<s:complexType name="ResponseOptions">
|
520
|
+
<s:attribute name="PostagePrice" type="s:string" />
|
521
|
+
</s:complexType>
|
522
|
+
<s:complexType name="eVSOptions">
|
523
|
+
<s:sequence>
|
524
|
+
<s:element minOccurs="0" maxOccurs="1" name="PermitNumber" type="s:string" />
|
525
|
+
<s:element minOccurs="0" maxOccurs="1" name="eVSMailerId" type="s:string" />
|
526
|
+
</s:sequence>
|
527
|
+
</s:complexType>
|
528
|
+
<s:complexType name="Cod3816">
|
529
|
+
<s:sequence>
|
530
|
+
<s:element minOccurs="0" maxOccurs="1" name="AS3816" type="s:string" />
|
531
|
+
<s:element minOccurs="0" maxOccurs="1" name="USPSCA" type="s:string" />
|
532
|
+
<s:element minOccurs="0" maxOccurs="1" name="PMExpressReturn" type="s:string" />
|
533
|
+
<s:element minOccurs="0" maxOccurs="1" name="OptionalEndorsement" type="s:string" />
|
534
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnName" type="s:string" />
|
535
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnCompany" type="s:string" />
|
536
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnAddress1" type="s:string" />
|
537
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnAddress2" type="s:string" />
|
538
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnCity" type="s:string" />
|
539
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnState" type="s:string" />
|
540
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReturnPostalCode" type="s:string" />
|
541
|
+
</s:sequence>
|
542
|
+
</s:complexType>
|
543
|
+
<s:element name="GetPostageLabelResponse">
|
544
|
+
<s:complexType>
|
545
|
+
<s:sequence>
|
546
|
+
<s:element minOccurs="0" maxOccurs="1" name="LabelRequestResponse" type="tns:LabelRequestResponse" />
|
547
|
+
</s:sequence>
|
548
|
+
</s:complexType>
|
549
|
+
</s:element>
|
550
|
+
<s:complexType name="LabelRequestResponse">
|
551
|
+
<s:sequence>
|
552
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
553
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
554
|
+
<s:element minOccurs="0" maxOccurs="1" name="Base64LabelImage" type="s:string" />
|
555
|
+
<s:element minOccurs="0" maxOccurs="1" name="Label" type="tns:ImageSet" />
|
556
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsForm" type="tns:ImageSet" />
|
557
|
+
<s:element minOccurs="0" maxOccurs="1" name="PIC" type="s:string" />
|
558
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsNumber" type="s:string" />
|
559
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingNumber" type="s:string" />
|
560
|
+
<s:element minOccurs="1" maxOccurs="1" name="FinalPostage" type="s:decimal" />
|
561
|
+
<s:element minOccurs="1" maxOccurs="1" name="TransactionID" type="s:int" />
|
562
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionDateTime" type="s:string" />
|
563
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostmarkDate" type="s:string" />
|
564
|
+
<s:element minOccurs="1" maxOccurs="1" name="PostageBalance" type="s:decimal" />
|
565
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID" type="s:string" />
|
566
|
+
<s:element minOccurs="1" maxOccurs="1" name="CostCenter" type="s:int" />
|
567
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityID" type="s:string" />
|
568
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityName" type="s:string" />
|
569
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityAddress1" type="s:string" />
|
570
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityCity" type="s:string" />
|
571
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityState" type="s:string" />
|
572
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityPostalCode" type="s:string" />
|
573
|
+
<s:element minOccurs="0" maxOccurs="1" name="HfpFacilityZIP4" type="s:string" />
|
574
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostagePrice" type="tns:PostagePrice" />
|
575
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
576
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID2" type="s:string" />
|
577
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID3" type="s:string" />
|
578
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID4" type="s:string" />
|
579
|
+
<s:element minOccurs="0" maxOccurs="1" name="CostCenterAlphaNumeric" type="s:string" />
|
580
|
+
<s:element minOccurs="0" maxOccurs="1" name="Indicium" type="s:string" />
|
581
|
+
<s:element minOccurs="0" maxOccurs="1" name="BarcodeDisplay" type="s:string" />
|
582
|
+
<s:element minOccurs="0" maxOccurs="1" name="BarcodeNumber" type="s:string" />
|
583
|
+
<s:element minOccurs="0" maxOccurs="1" name="Banner" type="s:string" />
|
584
|
+
<s:element minOccurs="0" maxOccurs="1" name="RDC" type="s:string" />
|
585
|
+
<s:element minOccurs="0" maxOccurs="1" name="RoutingNumber" type="s:string" />
|
586
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeliveryTimeDays" type="s:string" />
|
587
|
+
<s:element minOccurs="0" maxOccurs="1" name="DHLInboundSortCode" type="s:string" />
|
588
|
+
<s:element minOccurs="0" maxOccurs="1" name="DHLOutboundSortCode" type="s:string" />
|
589
|
+
<s:element minOccurs="0" maxOccurs="1" name="DHLDestMailTerminal" type="s:string" />
|
590
|
+
<s:element minOccurs="0" maxOccurs="1" name="DHLMailType" type="s:string" />
|
591
|
+
<s:element minOccurs="0" maxOccurs="1" name="DHLITVersion" type="s:string" />
|
592
|
+
<s:element minOccurs="0" maxOccurs="1" name="DHLServiceLevel" type="s:string" />
|
593
|
+
<s:element minOccurs="0" maxOccurs="1" name="PriorityMailExpressCommitments" type="tns:ArrayOfCommitment" />
|
594
|
+
<s:element minOccurs="0" maxOccurs="1" name="SequenceNumber" type="s:string" />
|
595
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResellerInformation" type="tns:ResellerInformation" />
|
596
|
+
</s:sequence>
|
597
|
+
</s:complexType>
|
598
|
+
<s:complexType name="ImageSet">
|
599
|
+
<s:sequence>
|
600
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Image" type="tns:ImageData" />
|
601
|
+
</s:sequence>
|
602
|
+
<s:attribute name="Name" type="s:string" />
|
603
|
+
</s:complexType>
|
604
|
+
<s:complexType name="ImageData">
|
605
|
+
<s:simpleContent>
|
606
|
+
<s:extension base="s:string">
|
607
|
+
<s:attribute name="PartNumber" type="s:int" use="required" />
|
608
|
+
</s:extension>
|
609
|
+
</s:simpleContent>
|
610
|
+
</s:complexType>
|
611
|
+
<s:complexType name="PostagePrice">
|
612
|
+
<s:sequence>
|
613
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailClass" type="s:string" />
|
614
|
+
<s:element minOccurs="0" maxOccurs="1" name="Postage" type="tns:Postage" />
|
615
|
+
<s:element minOccurs="0" maxOccurs="1" name="Fees" type="tns:Fees" />
|
616
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeliveryTimeDays" type="s:string" />
|
617
|
+
</s:sequence>
|
618
|
+
<s:attribute name="TotalAmount" type="s:decimal" use="required" />
|
619
|
+
</s:complexType>
|
620
|
+
<s:complexType name="Postage">
|
621
|
+
<s:sequence>
|
622
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailService" type="s:string" />
|
623
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zone" type="s:string" />
|
624
|
+
<s:element minOccurs="0" maxOccurs="1" name="IntraBMC" type="s:string" />
|
625
|
+
<s:element minOccurs="0" maxOccurs="1" name="Pricing" type="s:string" />
|
626
|
+
</s:sequence>
|
627
|
+
<s:attribute name="TotalAmount" type="s:decimal" use="required" />
|
628
|
+
</s:complexType>
|
629
|
+
<s:complexType name="Fees">
|
630
|
+
<s:sequence>
|
631
|
+
<s:element minOccurs="1" maxOccurs="1" name="CertificateOfMailing" type="s:decimal" />
|
632
|
+
<s:element minOccurs="1" maxOccurs="1" name="CertifiedMail" type="s:decimal" />
|
633
|
+
<s:element minOccurs="1" maxOccurs="1" name="CollectOnDelivery" type="s:decimal" />
|
634
|
+
<s:element minOccurs="1" maxOccurs="1" name="DeliveryConfirmation" type="s:decimal" />
|
635
|
+
<s:element minOccurs="1" maxOccurs="1" name="ElectronicReturnReceipt" type="s:decimal" />
|
636
|
+
<s:element minOccurs="1" maxOccurs="1" name="InsuredMail" type="s:decimal" />
|
637
|
+
<s:element minOccurs="1" maxOccurs="1" name="RegisteredMail" type="s:decimal" />
|
638
|
+
<s:element minOccurs="1" maxOccurs="1" name="RestrictedDelivery" type="s:decimal" />
|
639
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReturnReceipt" type="s:decimal" />
|
640
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReturnReceiptForMerchandise" type="s:decimal" />
|
641
|
+
<s:element minOccurs="1" maxOccurs="1" name="SignatureConfirmation" type="s:decimal" />
|
642
|
+
<s:element minOccurs="1" maxOccurs="1" name="SpecialHandling" type="s:decimal" />
|
643
|
+
<s:element minOccurs="1" maxOccurs="1" name="CriticalMail" type="s:decimal" />
|
644
|
+
<s:element minOccurs="1" maxOccurs="1" name="MerchandiseReturn" type="s:decimal" />
|
645
|
+
<s:element minOccurs="1" maxOccurs="1" name="OpenAndDistribute" type="s:decimal" />
|
646
|
+
<s:element minOccurs="1" maxOccurs="1" name="AdultSignature" type="s:decimal" />
|
647
|
+
<s:element minOccurs="1" maxOccurs="1" name="AdultSignatureRestrictedDelivery" type="s:decimal" />
|
648
|
+
<s:element minOccurs="1" maxOccurs="1" name="LiveAnimalSurcharge" type="s:decimal" />
|
649
|
+
<s:element minOccurs="1" maxOccurs="1" name="FragileHandling" type="s:decimal" />
|
650
|
+
<s:element minOccurs="1" maxOccurs="1" name="AMDelivery" type="s:decimal" />
|
651
|
+
<s:element minOccurs="0" maxOccurs="1" name="GroupedExtraServices" type="tns:GroupedExtraServices" />
|
652
|
+
</s:sequence>
|
653
|
+
<s:attribute name="TotalAmount" type="s:decimal" use="required" />
|
654
|
+
</s:complexType>
|
655
|
+
<s:complexType name="GroupedExtraServices">
|
656
|
+
<s:sequence>
|
657
|
+
<s:element minOccurs="1" maxOccurs="1" name="FeeAmount" type="s:decimal" />
|
658
|
+
</s:sequence>
|
659
|
+
<s:attribute name="Services" type="s:string" />
|
660
|
+
</s:complexType>
|
661
|
+
<s:complexType name="ArrayOfCommitment">
|
662
|
+
<s:sequence>
|
663
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Commitment" nillable="true" type="tns:Commitment" />
|
664
|
+
</s:sequence>
|
665
|
+
</s:complexType>
|
666
|
+
<s:complexType name="Commitment">
|
667
|
+
<s:sequence>
|
668
|
+
<s:element minOccurs="0" maxOccurs="1" name="CommitmentName" type="s:string" />
|
669
|
+
<s:element minOccurs="0" maxOccurs="1" name="CommitmentTime" type="s:string" />
|
670
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Location" type="tns:Location" />
|
671
|
+
</s:sequence>
|
672
|
+
</s:complexType>
|
673
|
+
<s:complexType name="Location">
|
674
|
+
<s:sequence>
|
675
|
+
<s:element minOccurs="0" maxOccurs="1" name="CutOff" type="s:string" />
|
676
|
+
<s:element minOccurs="0" maxOccurs="1" name="Facility" type="s:string" />
|
677
|
+
<s:element minOccurs="0" maxOccurs="1" name="Street" type="s:string" />
|
678
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
679
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
680
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zip" type="s:string" />
|
681
|
+
</s:sequence>
|
682
|
+
</s:complexType>
|
683
|
+
<s:complexType name="ResellerInformation">
|
684
|
+
<s:sequence>
|
685
|
+
<s:element minOccurs="1" maxOccurs="1" name="AccountId" type="s:long" />
|
686
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeviceId" type="s:string" />
|
687
|
+
<s:element minOccurs="1" maxOccurs="1" name="PostageAmount" type="s:decimal" />
|
688
|
+
<s:element minOccurs="1" maxOccurs="1" name="CustomerEndUserId" type="s:int" />
|
689
|
+
</s:sequence>
|
690
|
+
</s:complexType>
|
691
|
+
<s:element name="GetPostageLabelXML">
|
692
|
+
<s:complexType>
|
693
|
+
<s:sequence>
|
694
|
+
<s:element minOccurs="0" maxOccurs="1" name="LabelRequestXML" type="s:string" />
|
695
|
+
</s:sequence>
|
696
|
+
</s:complexType>
|
697
|
+
</s:element>
|
698
|
+
<s:element name="GetPostageLabelXMLResponse">
|
699
|
+
<s:complexType>
|
700
|
+
<s:sequence>
|
701
|
+
<s:element minOccurs="0" maxOccurs="1" name="LabelRequestResponse" type="tns:LabelRequestResponse" />
|
702
|
+
</s:sequence>
|
703
|
+
</s:complexType>
|
704
|
+
</s:element>
|
705
|
+
<s:element name="GetVersion">
|
706
|
+
<s:complexType />
|
707
|
+
</s:element>
|
708
|
+
<s:element name="GetVersionResponse">
|
709
|
+
<s:complexType>
|
710
|
+
<s:sequence>
|
711
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetVersionResults" type="tns:GetVersionResults" />
|
712
|
+
</s:sequence>
|
713
|
+
</s:complexType>
|
714
|
+
</s:element>
|
715
|
+
<s:complexType name="GetVersionResults">
|
716
|
+
<s:sequence>
|
717
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
718
|
+
<s:element minOccurs="0" maxOccurs="1" name="Mode" type="s:string" />
|
719
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostalSystem" type="s:string" />
|
720
|
+
<s:element minOccurs="0" maxOccurs="1" name="ServerName" type="s:string" />
|
721
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
722
|
+
<s:element minOccurs="0" maxOccurs="1" name="Version" type="s:string" />
|
723
|
+
</s:sequence>
|
724
|
+
</s:complexType>
|
725
|
+
<s:element name="GetVersionXML">
|
726
|
+
<s:complexType />
|
727
|
+
</s:element>
|
728
|
+
<s:element name="GetVersionXMLResponse">
|
729
|
+
<s:complexType>
|
730
|
+
<s:sequence>
|
731
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetVersionResults" type="tns:GetVersionResults" />
|
732
|
+
</s:sequence>
|
733
|
+
</s:complexType>
|
734
|
+
</s:element>
|
735
|
+
<s:element name="VoideVSLabel">
|
736
|
+
<s:complexType>
|
737
|
+
<s:sequence>
|
738
|
+
<s:element minOccurs="0" maxOccurs="1" name="VoidLabelRequest" type="tns:VoidLabelRequest" />
|
739
|
+
</s:sequence>
|
740
|
+
</s:complexType>
|
741
|
+
</s:element>
|
742
|
+
<s:complexType name="VoidLabelRequest">
|
743
|
+
<s:complexContent mixed="false">
|
744
|
+
<s:extension base="tns:DataValidator">
|
745
|
+
<s:sequence>
|
746
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
747
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
748
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
749
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingNumber" type="s:string" />
|
750
|
+
</s:sequence>
|
751
|
+
</s:extension>
|
752
|
+
</s:complexContent>
|
753
|
+
</s:complexType>
|
754
|
+
<s:element name="VoideVSLabelResponse">
|
755
|
+
<s:complexType>
|
756
|
+
<s:sequence>
|
757
|
+
<s:element minOccurs="0" maxOccurs="1" name="VoidLabelResponse" type="tns:VoidLabelResponse" />
|
758
|
+
</s:sequence>
|
759
|
+
</s:complexType>
|
760
|
+
</s:element>
|
761
|
+
<s:complexType name="VoidLabelResponse">
|
762
|
+
<s:sequence>
|
763
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
764
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
765
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
766
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
767
|
+
</s:sequence>
|
768
|
+
</s:complexType>
|
769
|
+
<s:element name="VoideVSLabelXML">
|
770
|
+
<s:complexType>
|
771
|
+
<s:sequence>
|
772
|
+
<s:element minOccurs="0" maxOccurs="1" name="VoidLabelRequestXML" type="s:string" />
|
773
|
+
</s:sequence>
|
774
|
+
</s:complexType>
|
775
|
+
</s:element>
|
776
|
+
<s:element name="VoideVSLabelXMLResponse">
|
777
|
+
<s:complexType>
|
778
|
+
<s:sequence>
|
779
|
+
<s:element minOccurs="0" maxOccurs="1" name="VoidLabelResponse" type="tns:VoidLabelResponse" />
|
780
|
+
</s:sequence>
|
781
|
+
</s:complexType>
|
782
|
+
</s:element>
|
783
|
+
<s:element name="BuyPostage">
|
784
|
+
<s:complexType>
|
785
|
+
<s:sequence>
|
786
|
+
<s:element minOccurs="0" maxOccurs="1" name="RecreditRequest" type="tns:RecreditRequest" />
|
787
|
+
</s:sequence>
|
788
|
+
</s:complexType>
|
789
|
+
</s:element>
|
790
|
+
<s:complexType name="RecreditRequest">
|
791
|
+
<s:complexContent mixed="false">
|
792
|
+
<s:extension base="tns:DataValidator">
|
793
|
+
<s:sequence>
|
794
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
795
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
796
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
797
|
+
<s:element minOccurs="0" maxOccurs="1" name="RecreditAmount" type="s:string" />
|
798
|
+
</s:sequence>
|
799
|
+
</s:extension>
|
800
|
+
</s:complexContent>
|
801
|
+
</s:complexType>
|
802
|
+
<s:element name="BuyPostageResponse">
|
803
|
+
<s:complexType>
|
804
|
+
<s:sequence>
|
805
|
+
<s:element minOccurs="0" maxOccurs="1" name="RecreditRequestResponse" type="tns:RecreditRequestResponse" />
|
806
|
+
</s:sequence>
|
807
|
+
</s:complexType>
|
808
|
+
</s:element>
|
809
|
+
<s:complexType name="RecreditRequestResponse">
|
810
|
+
<s:sequence>
|
811
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
812
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
813
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
814
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
815
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediaryStatus" />
|
816
|
+
</s:sequence>
|
817
|
+
</s:complexType>
|
818
|
+
<s:element name="BuyPostageXML">
|
819
|
+
<s:complexType>
|
820
|
+
<s:sequence>
|
821
|
+
<s:element minOccurs="0" maxOccurs="1" name="RecreditRequestXML" type="s:string" />
|
822
|
+
</s:sequence>
|
823
|
+
</s:complexType>
|
824
|
+
</s:element>
|
825
|
+
<s:element name="BuyPostageXMLResponse">
|
826
|
+
<s:complexType>
|
827
|
+
<s:sequence>
|
828
|
+
<s:element minOccurs="0" maxOccurs="1" name="RecreditRequestResponse" type="tns:RecreditRequestResponse" />
|
829
|
+
</s:sequence>
|
830
|
+
</s:complexType>
|
831
|
+
</s:element>
|
832
|
+
<s:element name="CalculateDdpRate">
|
833
|
+
<s:complexType>
|
834
|
+
<s:sequence>
|
835
|
+
<s:element minOccurs="0" maxOccurs="1" name="DdpRateRequest" type="tns:DdpRateRequest" />
|
836
|
+
</s:sequence>
|
837
|
+
</s:complexType>
|
838
|
+
</s:element>
|
839
|
+
<s:complexType name="DdpRateRequest">
|
840
|
+
<s:complexContent mixed="false">
|
841
|
+
<s:extension base="tns:DataValidator">
|
842
|
+
<s:sequence>
|
843
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
844
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromState" type="s:string" />
|
845
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCity" type="s:string" />
|
846
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCountryCode" type="s:string" />
|
847
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToState" type="s:string" />
|
848
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCity" type="s:string" />
|
849
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountryCode" type="s:string" />
|
850
|
+
<s:element minOccurs="1" maxOccurs="1" name="WeightOz" type="s:double" />
|
851
|
+
<s:element minOccurs="1" maxOccurs="1" name="Value" type="s:double" />
|
852
|
+
<s:element minOccurs="0" maxOccurs="1" name="CustomsItems" type="tns:ArrayOfCustomsItem" />
|
853
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailpieceDimensions" type="tns:Dimensions" />
|
854
|
+
</s:sequence>
|
855
|
+
</s:extension>
|
856
|
+
</s:complexContent>
|
857
|
+
</s:complexType>
|
858
|
+
<s:element name="CalculateDdpRateResponse">
|
859
|
+
<s:complexType>
|
860
|
+
<s:sequence>
|
861
|
+
<s:element minOccurs="0" maxOccurs="1" name="DdpRateResponse" type="tns:DdpRateResponse" />
|
862
|
+
</s:sequence>
|
863
|
+
</s:complexType>
|
864
|
+
</s:element>
|
865
|
+
<s:complexType name="DdpRateResponse">
|
866
|
+
<s:sequence>
|
867
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
868
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
869
|
+
<s:element minOccurs="1" maxOccurs="1" name="DdpRate" type="s:decimal" />
|
870
|
+
</s:sequence>
|
871
|
+
</s:complexType>
|
872
|
+
<s:element name="CalculateDdpRateXML">
|
873
|
+
<s:complexType>
|
874
|
+
<s:sequence>
|
875
|
+
<s:element minOccurs="0" maxOccurs="1" name="DdpRateRequestXML" type="s:string" />
|
876
|
+
</s:sequence>
|
877
|
+
</s:complexType>
|
878
|
+
</s:element>
|
879
|
+
<s:element name="CalculateDdpRateXMLResponse">
|
880
|
+
<s:complexType>
|
881
|
+
<s:sequence>
|
882
|
+
<s:element minOccurs="0" maxOccurs="1" name="DdpRateResponse" type="tns:DdpRateResponse" />
|
883
|
+
</s:sequence>
|
884
|
+
</s:complexType>
|
885
|
+
</s:element>
|
886
|
+
<s:element name="CalculatePostageRate">
|
887
|
+
<s:complexType>
|
888
|
+
<s:sequence>
|
889
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateRequest" type="tns:PostageRateRequest" />
|
890
|
+
</s:sequence>
|
891
|
+
</s:complexType>
|
892
|
+
</s:element>
|
893
|
+
<s:complexType name="PostageRateRequest">
|
894
|
+
<s:complexContent mixed="false">
|
895
|
+
<s:extension base="tns:CommonLabelRequestAndPostageRateRequest">
|
896
|
+
<s:sequence>
|
897
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
898
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
899
|
+
<s:element minOccurs="0" maxOccurs="1" name="AutomationRate" type="s:string" />
|
900
|
+
<s:element minOccurs="0" maxOccurs="1" name="Machinable" type="s:string" />
|
901
|
+
<s:element minOccurs="0" maxOccurs="1" name="ServiceLevel" type="s:string" />
|
902
|
+
<s:element minOccurs="0" maxOccurs="1" name="SortType" type="s:string" />
|
903
|
+
<s:element minOccurs="0" maxOccurs="1" name="Services" type="tns:SpecialServices" />
|
904
|
+
<s:element minOccurs="1" maxOccurs="1" name="Value" type="s:float" />
|
905
|
+
<s:element minOccurs="0" maxOccurs="1" default="0" name="CODAmount" type="s:double" />
|
906
|
+
<s:element minOccurs="0" maxOccurs="1" name="InsuredValue" type="s:string" />
|
907
|
+
<s:element minOccurs="0" maxOccurs="1" default="0" name="RegisteredMailValue" type="s:double" />
|
908
|
+
<s:element minOccurs="0" maxOccurs="1" name="EntryFacility" type="s:string" />
|
909
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromPostalCode" type="s:string" />
|
910
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToPostalCode" type="s:string" />
|
911
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountry" type="s:string" />
|
912
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountryCode" type="s:string" />
|
913
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipDate" type="s:string" />
|
914
|
+
<s:element minOccurs="0" maxOccurs="1" name="ShipTime" type="s:string" />
|
915
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResponseOptions" type="tns:ResponseOptions" />
|
916
|
+
<s:element minOccurs="0" maxOccurs="1" name="OpenAndDistributeFacilityTypeCode" type="s:string" />
|
917
|
+
<s:element minOccurs="0" maxOccurs="1" name="IsConsolidator" type="s:string" />
|
918
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeliveryTimeDays" type="s:string" />
|
919
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintScanBasedPaymentLabel" type="s:string" />
|
920
|
+
<s:element minOccurs="0" maxOccurs="1" name="SpecialContents" type="s:string" />
|
921
|
+
</s:sequence>
|
922
|
+
</s:extension>
|
923
|
+
</s:complexContent>
|
924
|
+
</s:complexType>
|
925
|
+
<s:element name="CalculatePostageRateResponse">
|
926
|
+
<s:complexType>
|
927
|
+
<s:sequence>
|
928
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateResponse" type="tns:PostageRateResponse" />
|
929
|
+
</s:sequence>
|
930
|
+
</s:complexType>
|
931
|
+
</s:element>
|
932
|
+
<s:complexType name="PostageRateResponse">
|
933
|
+
<s:sequence>
|
934
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
935
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
936
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zone" type="s:string" />
|
937
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Postage" type="tns:PostageRate" />
|
938
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PostagePrice" type="tns:PostagePrice" />
|
939
|
+
<s:element minOccurs="0" maxOccurs="1" name="PriorityMailExpressCommitments" type="tns:ArrayOfCommitment" />
|
940
|
+
</s:sequence>
|
941
|
+
</s:complexType>
|
942
|
+
<s:complexType name="PostageRate">
|
943
|
+
<s:sequence>
|
944
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailService" type="s:string" />
|
945
|
+
<s:element minOccurs="1" maxOccurs="1" name="Rate" type="s:decimal" />
|
946
|
+
</s:sequence>
|
947
|
+
</s:complexType>
|
948
|
+
<s:element name="CalculatePostageRateXML">
|
949
|
+
<s:complexType>
|
950
|
+
<s:sequence>
|
951
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateRequestXML" type="s:string" />
|
952
|
+
</s:sequence>
|
953
|
+
</s:complexType>
|
954
|
+
</s:element>
|
955
|
+
<s:element name="CalculatePostageRateXMLResponse">
|
956
|
+
<s:complexType>
|
957
|
+
<s:sequence>
|
958
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateResponse" type="tns:PostageRateResponse" />
|
959
|
+
</s:sequence>
|
960
|
+
</s:complexType>
|
961
|
+
</s:element>
|
962
|
+
<s:element name="ChangePassPhrase">
|
963
|
+
<s:complexType>
|
964
|
+
<s:sequence>
|
965
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChangePassPhraseRequest" type="tns:ChangePassPhraseRequest" />
|
966
|
+
</s:sequence>
|
967
|
+
</s:complexType>
|
968
|
+
</s:element>
|
969
|
+
<s:complexType name="ChangePassPhraseRequest">
|
970
|
+
<s:complexContent mixed="false">
|
971
|
+
<s:extension base="tns:DataValidator">
|
972
|
+
<s:sequence>
|
973
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
974
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
975
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
976
|
+
<s:element minOccurs="0" maxOccurs="1" name="NewPassPhrase" type="s:string" />
|
977
|
+
</s:sequence>
|
978
|
+
<s:attribute name="TokenRequested" type="s:boolean" use="required" />
|
979
|
+
</s:extension>
|
980
|
+
</s:complexContent>
|
981
|
+
</s:complexType>
|
982
|
+
<s:element name="ChangePassPhraseResponse">
|
983
|
+
<s:complexType>
|
984
|
+
<s:sequence>
|
985
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChangePassPhraseRequestResponse" type="tns:ChangePassPhraseRequestResponse" />
|
986
|
+
</s:sequence>
|
987
|
+
</s:complexType>
|
988
|
+
</s:element>
|
989
|
+
<s:complexType name="ChangePassPhraseRequestResponse">
|
990
|
+
<s:sequence>
|
991
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
992
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
993
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
994
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
995
|
+
<s:element minOccurs="0" maxOccurs="1" name="Token" type="s:string" />
|
996
|
+
</s:sequence>
|
997
|
+
</s:complexType>
|
998
|
+
<s:element name="ChangePassPhraseXML">
|
999
|
+
<s:complexType>
|
1000
|
+
<s:sequence>
|
1001
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChangePassPhraseRequestXML" type="s:string" />
|
1002
|
+
</s:sequence>
|
1003
|
+
</s:complexType>
|
1004
|
+
</s:element>
|
1005
|
+
<s:element name="ChangePassPhraseXMLResponse">
|
1006
|
+
<s:complexType>
|
1007
|
+
<s:sequence>
|
1008
|
+
<s:element minOccurs="0" maxOccurs="1" name="ChangePassPhraseRequestResponse" type="tns:ChangePassPhraseRequestResponse" />
|
1009
|
+
</s:sequence>
|
1010
|
+
</s:complexType>
|
1011
|
+
</s:element>
|
1012
|
+
<s:element name="CalculatePostageRates">
|
1013
|
+
<s:complexType>
|
1014
|
+
<s:sequence>
|
1015
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRatesRequest" type="tns:PostageRatesRequest" />
|
1016
|
+
</s:sequence>
|
1017
|
+
</s:complexType>
|
1018
|
+
</s:element>
|
1019
|
+
<s:complexType name="PostageRatesRequest">
|
1020
|
+
<s:complexContent mixed="false">
|
1021
|
+
<s:extension base="tns:DataValidator">
|
1022
|
+
<s:sequence>
|
1023
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1024
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1025
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailClass" type="s:string" />
|
1026
|
+
<s:element minOccurs="1" maxOccurs="1" name="WeightOz" type="s:double" />
|
1027
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailpieceShape" type="s:string" />
|
1028
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailpieceDimensions" type="tns:Dimensions" />
|
1029
|
+
<s:element minOccurs="0" maxOccurs="1" name="Machinable" type="s:string" />
|
1030
|
+
<s:element minOccurs="0" maxOccurs="1" name="Services" type="tns:SpecialServices" />
|
1031
|
+
<s:element minOccurs="1" maxOccurs="1" name="CODAmount" type="s:double" />
|
1032
|
+
<s:element minOccurs="1" maxOccurs="1" name="InsuredValue" type="s:double" />
|
1033
|
+
<s:element minOccurs="1" maxOccurs="1" name="RegisteredMailValue" type="s:double" />
|
1034
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromPostalCode" type="s:string" />
|
1035
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToPostalCode" type="s:string" />
|
1036
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountry" type="s:string" />
|
1037
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToCountryCode" type="s:string" />
|
1038
|
+
<s:element minOccurs="0" maxOccurs="1" default="0" name="DateAdvance" type="s:int" />
|
1039
|
+
<s:element minOccurs="0" maxOccurs="1" name="Extension" type="s:string" />
|
1040
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeliveryTimeDays" type="s:string" />
|
1041
|
+
</s:sequence>
|
1042
|
+
</s:extension>
|
1043
|
+
</s:complexContent>
|
1044
|
+
</s:complexType>
|
1045
|
+
<s:element name="CalculatePostageRatesResponse">
|
1046
|
+
<s:complexType>
|
1047
|
+
<s:sequence>
|
1048
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRatesResponse" type="tns:PostageRatesResponse" />
|
1049
|
+
</s:sequence>
|
1050
|
+
</s:complexType>
|
1051
|
+
</s:element>
|
1052
|
+
<s:complexType name="PostageRatesResponse">
|
1053
|
+
<s:sequence>
|
1054
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1055
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1056
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PostagePrice" type="tns:PostagePrice" />
|
1057
|
+
</s:sequence>
|
1058
|
+
</s:complexType>
|
1059
|
+
<s:element name="CalculatePostageRatesXML">
|
1060
|
+
<s:complexType>
|
1061
|
+
<s:sequence>
|
1062
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRatesRequestXML" type="s:string" />
|
1063
|
+
</s:sequence>
|
1064
|
+
</s:complexType>
|
1065
|
+
</s:element>
|
1066
|
+
<s:element name="CalculatePostageRatesXMLResponse">
|
1067
|
+
<s:complexType>
|
1068
|
+
<s:sequence>
|
1069
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRatesResponse" type="tns:PostageRatesResponse" />
|
1070
|
+
</s:sequence>
|
1071
|
+
</s:complexType>
|
1072
|
+
</s:element>
|
1073
|
+
<s:element name="CreateDhlgmManifest">
|
1074
|
+
<s:complexType>
|
1075
|
+
<s:sequence>
|
1076
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreateDhlgmManifestRequest" type="tns:CreateDhlgmManifestRequest" />
|
1077
|
+
</s:sequence>
|
1078
|
+
</s:complexType>
|
1079
|
+
</s:element>
|
1080
|
+
<s:complexType name="CreateDhlgmManifestRequest">
|
1081
|
+
<s:complexContent mixed="false">
|
1082
|
+
<s:extension base="tns:DataValidator">
|
1083
|
+
<s:sequence>
|
1084
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1085
|
+
</s:sequence>
|
1086
|
+
</s:extension>
|
1087
|
+
</s:complexContent>
|
1088
|
+
</s:complexType>
|
1089
|
+
<s:element name="CreateDhlgmManifestResponse">
|
1090
|
+
<s:complexType>
|
1091
|
+
<s:sequence>
|
1092
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreateDhlgmManifestResponse" type="tns:DhlgmManifestResponse" />
|
1093
|
+
</s:sequence>
|
1094
|
+
</s:complexType>
|
1095
|
+
</s:element>
|
1096
|
+
<s:complexType name="DhlgmManifestResponse">
|
1097
|
+
<s:sequence>
|
1098
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1099
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1100
|
+
<s:element minOccurs="1" maxOccurs="1" name="ManifestID" type="s:int" />
|
1101
|
+
</s:sequence>
|
1102
|
+
</s:complexType>
|
1103
|
+
<s:element name="CreateDhlgmManifestXML">
|
1104
|
+
<s:complexType>
|
1105
|
+
<s:sequence>
|
1106
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreateDhlgmManifestRequestXML" type="s:string" />
|
1107
|
+
</s:sequence>
|
1108
|
+
</s:complexType>
|
1109
|
+
</s:element>
|
1110
|
+
<s:element name="CreateDhlgmManifestXMLResponse">
|
1111
|
+
<s:complexType>
|
1112
|
+
<s:sequence>
|
1113
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreateDhlgmManifestResponse" type="tns:DhlgmManifestResponse" />
|
1114
|
+
</s:sequence>
|
1115
|
+
</s:complexType>
|
1116
|
+
</s:element>
|
1117
|
+
<s:element name="StatusRequest">
|
1118
|
+
<s:complexType>
|
1119
|
+
<s:sequence>
|
1120
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageStatusRequest" type="tns:PackageStatusRequest" />
|
1121
|
+
</s:sequence>
|
1122
|
+
</s:complexType>
|
1123
|
+
</s:element>
|
1124
|
+
<s:complexType name="PackageStatusRequest">
|
1125
|
+
<s:complexContent mixed="false">
|
1126
|
+
<s:extension base="tns:DataValidator">
|
1127
|
+
<s:sequence>
|
1128
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1129
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1130
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1131
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestOptions" type="tns:PackageStatusRequestOptions" />
|
1132
|
+
<s:element minOccurs="0" maxOccurs="1" name="PicNumbers" type="tns:ArrayOfString" />
|
1133
|
+
<s:element minOccurs="0" maxOccurs="1" name="PieceNumbers" type="tns:ArrayOfString1" />
|
1134
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionIds" type="tns:ArrayOfString2" />
|
1135
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceIds" type="tns:ArrayOfString3" />
|
1136
|
+
</s:sequence>
|
1137
|
+
</s:extension>
|
1138
|
+
</s:complexContent>
|
1139
|
+
</s:complexType>
|
1140
|
+
<s:complexType name="PackageStatusRequestOptions">
|
1141
|
+
<s:attribute name="CostCenter" type="s:string" />
|
1142
|
+
<s:attribute name="ReferenceID" type="s:string" />
|
1143
|
+
<s:attribute name="PackageStatus" type="tns:GetPackageStatus" use="required" />
|
1144
|
+
<s:attribute name="StartingTransactionID" type="s:string" />
|
1145
|
+
</s:complexType>
|
1146
|
+
<s:simpleType name="GetPackageStatus">
|
1147
|
+
<s:restriction base="s:string">
|
1148
|
+
<s:enumeration value="CURRENT" />
|
1149
|
+
<s:enumeration value="COMPLETE" />
|
1150
|
+
</s:restriction>
|
1151
|
+
</s:simpleType>
|
1152
|
+
<s:complexType name="ArrayOfString">
|
1153
|
+
<s:sequence>
|
1154
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PicNumber" nillable="true" type="s:string" />
|
1155
|
+
</s:sequence>
|
1156
|
+
</s:complexType>
|
1157
|
+
<s:complexType name="ArrayOfString1">
|
1158
|
+
<s:sequence>
|
1159
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PieceNumber" nillable="true" type="s:string" />
|
1160
|
+
</s:sequence>
|
1161
|
+
</s:complexType>
|
1162
|
+
<s:complexType name="ArrayOfString2">
|
1163
|
+
<s:sequence>
|
1164
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="TransactionId" nillable="true" type="s:string" />
|
1165
|
+
</s:sequence>
|
1166
|
+
</s:complexType>
|
1167
|
+
<s:complexType name="ArrayOfString3">
|
1168
|
+
<s:sequence>
|
1169
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ReferenceId" nillable="true" type="s:string" />
|
1170
|
+
</s:sequence>
|
1171
|
+
</s:complexType>
|
1172
|
+
<s:element name="StatusRequestResponse">
|
1173
|
+
<s:complexType>
|
1174
|
+
<s:sequence>
|
1175
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageStatusResponse" type="tns:PackageStatusResponse" />
|
1176
|
+
</s:sequence>
|
1177
|
+
</s:complexType>
|
1178
|
+
</s:element>
|
1179
|
+
<s:complexType name="PackageStatusResponse">
|
1180
|
+
<s:sequence>
|
1181
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1182
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1183
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1184
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1185
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageStatus" type="tns:ArrayOfStatusResponse" />
|
1186
|
+
</s:sequence>
|
1187
|
+
<s:attribute name="StartingTransactionID" type="s:string" />
|
1188
|
+
<s:attribute name="EndingTransactionID" type="s:string" />
|
1189
|
+
<s:attribute name="CompleteDataSet" type="s:boolean" use="required" />
|
1190
|
+
</s:complexType>
|
1191
|
+
<s:complexType name="ArrayOfStatusResponse">
|
1192
|
+
<s:sequence>
|
1193
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="StatusResponse" nillable="true" type="tns:StatusResponse" />
|
1194
|
+
</s:sequence>
|
1195
|
+
</s:complexType>
|
1196
|
+
<s:complexType name="StatusResponse">
|
1197
|
+
<s:sequence>
|
1198
|
+
<s:element minOccurs="0" maxOccurs="1" name="PicNumber" type="s:string" />
|
1199
|
+
<s:element minOccurs="0" maxOccurs="1" name="PieceId" type="s:string" />
|
1200
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionID" type="s:string" />
|
1201
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageStatusEventList" type="tns:ArrayOfStatusEventList" />
|
1202
|
+
</s:sequence>
|
1203
|
+
</s:complexType>
|
1204
|
+
<s:complexType name="ArrayOfStatusEventList">
|
1205
|
+
<s:sequence>
|
1206
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="StatusEventList" nillable="true" type="tns:StatusEventList" />
|
1207
|
+
</s:sequence>
|
1208
|
+
</s:complexType>
|
1209
|
+
<s:complexType name="StatusEventList">
|
1210
|
+
<s:sequence>
|
1211
|
+
<s:element minOccurs="0" maxOccurs="1" name="StatusCode" type="s:string" />
|
1212
|
+
<s:element minOccurs="0" maxOccurs="1" name="StatusDescription" type="s:string" />
|
1213
|
+
<s:element minOccurs="0" maxOccurs="1" name="EventDateTime" type="s:string" />
|
1214
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingSummary" type="s:string" />
|
1215
|
+
<s:element minOccurs="0" maxOccurs="1" name="TrackingResults" type="tns:ArrayOfTrackingResult" />
|
1216
|
+
</s:sequence>
|
1217
|
+
</s:complexType>
|
1218
|
+
<s:complexType name="ArrayOfTrackingResult">
|
1219
|
+
<s:sequence>
|
1220
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="TrackingResult" nillable="true" type="tns:TrackingResult" />
|
1221
|
+
</s:sequence>
|
1222
|
+
</s:complexType>
|
1223
|
+
<s:complexType name="TrackingResult">
|
1224
|
+
<s:attribute name="Status" type="s:string" />
|
1225
|
+
</s:complexType>
|
1226
|
+
<s:element name="StatusRequestXML">
|
1227
|
+
<s:complexType>
|
1228
|
+
<s:sequence>
|
1229
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageStatusRequestXML" type="s:string" />
|
1230
|
+
</s:sequence>
|
1231
|
+
</s:complexType>
|
1232
|
+
</s:element>
|
1233
|
+
<s:element name="StatusRequestXMLResponse">
|
1234
|
+
<s:complexType>
|
1235
|
+
<s:sequence>
|
1236
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageStatusResponse" type="tns:PackageStatusResponse" />
|
1237
|
+
</s:sequence>
|
1238
|
+
</s:complexType>
|
1239
|
+
</s:element>
|
1240
|
+
<s:element name="GetRetailAccounts">
|
1241
|
+
<s:complexType>
|
1242
|
+
<s:sequence>
|
1243
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAccountsRequest" type="tns:RetailAccountsRequest" />
|
1244
|
+
</s:sequence>
|
1245
|
+
</s:complexType>
|
1246
|
+
</s:element>
|
1247
|
+
<s:complexType name="RetailAccountsRequest">
|
1248
|
+
<s:complexContent mixed="false">
|
1249
|
+
<s:extension base="tns:DataValidator">
|
1250
|
+
<s:sequence>
|
1251
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountID" type="s:string" />
|
1252
|
+
<s:element minOccurs="0" maxOccurs="1" name="PassPhrase" type="s:string" />
|
1253
|
+
<s:element minOccurs="0" maxOccurs="1" name="StartDateTime" type="s:string" />
|
1254
|
+
<s:element minOccurs="0" maxOccurs="1" name="EndDateTime" type="s:string" />
|
1255
|
+
</s:sequence>
|
1256
|
+
</s:extension>
|
1257
|
+
</s:complexContent>
|
1258
|
+
</s:complexType>
|
1259
|
+
<s:element name="GetRetailAccountsResponse">
|
1260
|
+
<s:complexType>
|
1261
|
+
<s:sequence>
|
1262
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAccountsResponse" type="tns:RetailAccountsResponse" />
|
1263
|
+
</s:sequence>
|
1264
|
+
</s:complexType>
|
1265
|
+
</s:element>
|
1266
|
+
<s:complexType name="RetailAccountsResponse">
|
1267
|
+
<s:sequence>
|
1268
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAccounts" type="tns:ArrayOfRetailAccount" />
|
1269
|
+
</s:sequence>
|
1270
|
+
<s:attribute name="Status" type="s:int" use="required" />
|
1271
|
+
<s:attribute name="ErrorMessage" type="s:string" />
|
1272
|
+
</s:complexType>
|
1273
|
+
<s:complexType name="ArrayOfRetailAccount">
|
1274
|
+
<s:sequence>
|
1275
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="RetailAccount" nillable="true" type="tns:RetailAccount" />
|
1276
|
+
</s:sequence>
|
1277
|
+
</s:complexType>
|
1278
|
+
<s:complexType name="RetailAccount">
|
1279
|
+
<s:sequence>
|
1280
|
+
<s:element minOccurs="1" maxOccurs="1" name="AccountNumber" type="s:int" />
|
1281
|
+
<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
|
1282
|
+
<s:element minOccurs="0" maxOccurs="1" name="CompanyName" type="s:string" />
|
1283
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhoneNumber" type="s:string" />
|
1284
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhoneExt" type="s:string" />
|
1285
|
+
<s:element minOccurs="0" maxOccurs="1" name="FaxNumber" type="s:string" />
|
1286
|
+
<s:element minOccurs="0" maxOccurs="1" name="EmailAddress" type="s:string" />
|
1287
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferredBy" type="s:string" />
|
1288
|
+
<s:element minOccurs="1" maxOccurs="1" name="SignupDate" type="s:dateTime" />
|
1289
|
+
<s:element minOccurs="0" maxOccurs="1" name="DomesticContractId" type="s:string" />
|
1290
|
+
<s:element minOccurs="0" maxOccurs="1" name="InternationalContractId" type="s:string" />
|
1291
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalAddress" type="s:string" />
|
1292
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalCity" type="s:string" />
|
1293
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalState" type="s:string" />
|
1294
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalZip" type="s:string" />
|
1295
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountStatus" type="s:string" />
|
1296
|
+
<s:element minOccurs="1" maxOccurs="1" name="Purchased" type="s:decimal" />
|
1297
|
+
<s:element minOccurs="1" maxOccurs="1" name="Printed" type="s:decimal" />
|
1298
|
+
<s:element minOccurs="1" maxOccurs="1" name="Refunded" type="s:decimal" />
|
1299
|
+
<s:element minOccurs="1" maxOccurs="1" name="Balance" type="s:decimal" />
|
1300
|
+
</s:sequence>
|
1301
|
+
</s:complexType>
|
1302
|
+
<s:element name="GetRetailAccountsXML">
|
1303
|
+
<s:complexType>
|
1304
|
+
<s:sequence>
|
1305
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAccountsRequestXML" type="s:string" />
|
1306
|
+
</s:sequence>
|
1307
|
+
</s:complexType>
|
1308
|
+
</s:element>
|
1309
|
+
<s:element name="GetRetailAccountsXMLResponse">
|
1310
|
+
<s:complexType>
|
1311
|
+
<s:sequence>
|
1312
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAccountsResponse" type="tns:RetailAccountsResponse" />
|
1313
|
+
</s:sequence>
|
1314
|
+
</s:complexType>
|
1315
|
+
</s:element>
|
1316
|
+
<s:element name="GetUserSignUp">
|
1317
|
+
<s:complexType>
|
1318
|
+
<s:sequence>
|
1319
|
+
<s:element minOccurs="0" maxOccurs="1" name="UserSignUpRequest" type="tns:UserSignUpRequest" />
|
1320
|
+
</s:sequence>
|
1321
|
+
</s:complexType>
|
1322
|
+
</s:element>
|
1323
|
+
<s:complexType name="UserSignUpRequest">
|
1324
|
+
<s:complexContent mixed="false">
|
1325
|
+
<s:extension base="tns:DataValidator">
|
1326
|
+
<s:sequence>
|
1327
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1328
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1329
|
+
<s:element minOccurs="0" maxOccurs="1" name="FirstName" type="s:string" />
|
1330
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastName" type="s:string" />
|
1331
|
+
<s:element minOccurs="0" maxOccurs="1" name="MiddleName" type="s:string" />
|
1332
|
+
<s:element minOccurs="0" maxOccurs="1" name="Title" type="s:string" />
|
1333
|
+
<s:element minOccurs="0" maxOccurs="1" name="EmailAddress" type="s:string" />
|
1334
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhoneNumber" type="s:string" />
|
1335
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhoneNumberExt" type="s:string" />
|
1336
|
+
<s:element minOccurs="0" maxOccurs="1" name="FaxNumber" type="s:string" />
|
1337
|
+
<s:element minOccurs="0" maxOccurs="1" name="BillingType" type="s:string" />
|
1338
|
+
<s:element minOccurs="0" maxOccurs="1" name="PartnerID" type="s:string" />
|
1339
|
+
<s:element minOccurs="0" maxOccurs="1" name="OriginatingIpAddress" type="s:string" />
|
1340
|
+
<s:element minOccurs="0" maxOccurs="1" name="Contracts" type="tns:ArrayOfString4" />
|
1341
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountCredentials" type="tns:AccountCredentials" />
|
1342
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCard" type="tns:CreditCard" />
|
1343
|
+
<s:element minOccurs="0" maxOccurs="1" name="CheckingAccount" type="tns:CheckingAccount" />
|
1344
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalAddress" type="tns:PhysicalPickupAddress" />
|
1345
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailingAddress" type="tns:PhysicalPickupAddress" />
|
1346
|
+
<s:element minOccurs="1" maxOccurs="1" name="PaymentDetailsDeferred" type="s:boolean" />
|
1347
|
+
<s:element minOccurs="0" maxOccurs="1" name="USPSRep" type="s:string" />
|
1348
|
+
<s:element minOccurs="1" maxOccurs="1" name="DedicatedResellerAccount" type="s:boolean" />
|
1349
|
+
<s:element minOccurs="1" maxOccurs="1" name="ICertify" type="s:boolean" />
|
1350
|
+
</s:sequence>
|
1351
|
+
<s:attribute name="TokenRequested" type="s:boolean" use="required" />
|
1352
|
+
</s:extension>
|
1353
|
+
</s:complexContent>
|
1354
|
+
</s:complexType>
|
1355
|
+
<s:complexType name="ArrayOfString4">
|
1356
|
+
<s:sequence>
|
1357
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ContractId" nillable="true" type="s:string" />
|
1358
|
+
</s:sequence>
|
1359
|
+
</s:complexType>
|
1360
|
+
<s:complexType name="AccountCredentials">
|
1361
|
+
<s:complexContent mixed="false">
|
1362
|
+
<s:extension base="tns:DataValidator">
|
1363
|
+
<s:sequence>
|
1364
|
+
<s:element minOccurs="0" maxOccurs="1" name="WebPassword" type="s:string" />
|
1365
|
+
<s:element minOccurs="0" maxOccurs="1" name="TemporaryPassPhrase" type="s:string" />
|
1366
|
+
<s:element minOccurs="0" maxOccurs="1" name="SecurityQuestion" type="s:string" />
|
1367
|
+
<s:element minOccurs="0" maxOccurs="1" name="SecurityAnswer" type="s:string" />
|
1368
|
+
</s:sequence>
|
1369
|
+
</s:extension>
|
1370
|
+
</s:complexContent>
|
1371
|
+
</s:complexType>
|
1372
|
+
<s:complexType name="CreditCard">
|
1373
|
+
<s:complexContent mixed="false">
|
1374
|
+
<s:extension base="tns:DataValidator">
|
1375
|
+
<s:sequence>
|
1376
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCardNumber" type="s:string" />
|
1377
|
+
<s:element minOccurs="1" maxOccurs="1" name="CreditCardType" type="tns:CreditCardType" />
|
1378
|
+
<s:element minOccurs="1" maxOccurs="1" name="CreditCardMonth" type="tns:CreditCardMonth" />
|
1379
|
+
<s:element minOccurs="1" maxOccurs="1" name="CreditCardYear" type="s:int" />
|
1380
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCardAddress" type="s:string" />
|
1381
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCardCity" type="s:string" />
|
1382
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCardState" type="s:string" />
|
1383
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreditCardZip5" type="s:string" />
|
1384
|
+
</s:sequence>
|
1385
|
+
</s:extension>
|
1386
|
+
</s:complexContent>
|
1387
|
+
</s:complexType>
|
1388
|
+
<s:simpleType name="CreditCardType">
|
1389
|
+
<s:restriction base="s:string">
|
1390
|
+
<s:enumeration value="Visa" />
|
1391
|
+
<s:enumeration value="Mastercard" />
|
1392
|
+
<s:enumeration value="AmericanExpress" />
|
1393
|
+
<s:enumeration value="CarteBlanche" />
|
1394
|
+
<s:enumeration value="Discover" />
|
1395
|
+
<s:enumeration value="DinersClub" />
|
1396
|
+
</s:restriction>
|
1397
|
+
</s:simpleType>
|
1398
|
+
<s:simpleType name="CreditCardMonth">
|
1399
|
+
<s:restriction base="s:string">
|
1400
|
+
<s:enumeration value="January" />
|
1401
|
+
<s:enumeration value="February" />
|
1402
|
+
<s:enumeration value="March" />
|
1403
|
+
<s:enumeration value="April" />
|
1404
|
+
<s:enumeration value="May" />
|
1405
|
+
<s:enumeration value="June" />
|
1406
|
+
<s:enumeration value="July" />
|
1407
|
+
<s:enumeration value="August" />
|
1408
|
+
<s:enumeration value="September" />
|
1409
|
+
<s:enumeration value="October" />
|
1410
|
+
<s:enumeration value="November" />
|
1411
|
+
<s:enumeration value="December" />
|
1412
|
+
</s:restriction>
|
1413
|
+
</s:simpleType>
|
1414
|
+
<s:complexType name="CheckingAccount">
|
1415
|
+
<s:complexContent mixed="false">
|
1416
|
+
<s:extension base="tns:DataValidator">
|
1417
|
+
<s:sequence>
|
1418
|
+
<s:element minOccurs="0" maxOccurs="1" name="AccountNumber" type="s:string" />
|
1419
|
+
<s:element minOccurs="0" maxOccurs="1" name="RoutingNumber" type="s:string" />
|
1420
|
+
</s:sequence>
|
1421
|
+
</s:extension>
|
1422
|
+
</s:complexContent>
|
1423
|
+
</s:complexType>
|
1424
|
+
<s:complexType name="PhysicalPickupAddress">
|
1425
|
+
<s:complexContent mixed="false">
|
1426
|
+
<s:extension base="tns:DataValidator">
|
1427
|
+
<s:sequence>
|
1428
|
+
<s:element minOccurs="0" maxOccurs="1" name="FirstName" type="s:string" />
|
1429
|
+
<s:element minOccurs="0" maxOccurs="1" name="LastName" type="s:string" />
|
1430
|
+
<s:element minOccurs="0" maxOccurs="1" name="CompanyName" type="s:string" />
|
1431
|
+
<s:element minOccurs="0" maxOccurs="1" name="SuiteOrApt" type="s:string" />
|
1432
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address" type="s:string" />
|
1433
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
1434
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
1435
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zip5" type="s:string" />
|
1436
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zip4" type="s:string" />
|
1437
|
+
<s:element minOccurs="0" maxOccurs="1" name="Phone" type="s:string" />
|
1438
|
+
<s:element minOccurs="0" maxOccurs="1" name="Extension" type="s:string" />
|
1439
|
+
</s:sequence>
|
1440
|
+
</s:extension>
|
1441
|
+
</s:complexContent>
|
1442
|
+
</s:complexType>
|
1443
|
+
<s:element name="GetUserSignUpResponse">
|
1444
|
+
<s:complexType>
|
1445
|
+
<s:sequence>
|
1446
|
+
<s:element minOccurs="0" maxOccurs="1" name="UserSignUpResponse" type="tns:UserSignUpResponse" />
|
1447
|
+
</s:sequence>
|
1448
|
+
</s:complexType>
|
1449
|
+
</s:element>
|
1450
|
+
<s:complexType name="UserSignUpResponse">
|
1451
|
+
<s:sequence>
|
1452
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1453
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1454
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1455
|
+
<s:element minOccurs="0" maxOccurs="1" name="Token" type="s:string" />
|
1456
|
+
<s:element minOccurs="1" maxOccurs="1" name="ConfirmationNumber" type="s:long" />
|
1457
|
+
<s:element minOccurs="1" maxOccurs="1" name="AccountID" type="s:long" />
|
1458
|
+
</s:sequence>
|
1459
|
+
</s:complexType>
|
1460
|
+
<s:element name="GetUserSignUpXML">
|
1461
|
+
<s:complexType>
|
1462
|
+
<s:sequence>
|
1463
|
+
<s:element minOccurs="0" maxOccurs="1" name="UserSignUpRequestXML" type="s:string" />
|
1464
|
+
</s:sequence>
|
1465
|
+
</s:complexType>
|
1466
|
+
</s:element>
|
1467
|
+
<s:element name="GetUserSignUpXMLResponse">
|
1468
|
+
<s:complexType>
|
1469
|
+
<s:sequence>
|
1470
|
+
<s:element minOccurs="0" maxOccurs="1" name="UserSignUpResponse" type="tns:UserSignUpResponse" />
|
1471
|
+
</s:sequence>
|
1472
|
+
</s:complexType>
|
1473
|
+
</s:element>
|
1474
|
+
<s:element name="GetTransactionsListing">
|
1475
|
+
<s:complexType>
|
1476
|
+
<s:sequence>
|
1477
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetTransactionsListingRequest" type="tns:GetTransactionsListingRequest" />
|
1478
|
+
</s:sequence>
|
1479
|
+
</s:complexType>
|
1480
|
+
</s:element>
|
1481
|
+
<s:complexType name="GetTransactionsListingRequest">
|
1482
|
+
<s:complexContent mixed="false">
|
1483
|
+
<s:extension base="tns:DataValidator">
|
1484
|
+
<s:sequence>
|
1485
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1486
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1487
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1488
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestOptions" type="tns:TransactionListingsRequestOptions" />
|
1489
|
+
<s:element minOccurs="0" maxOccurs="1" name="PicNumbers" type="tns:ArrayOfString5" />
|
1490
|
+
<s:element minOccurs="0" maxOccurs="1" name="PieceIDs" type="tns:ArrayOfString6" />
|
1491
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionIDs" type="tns:ArrayOfString7" />
|
1492
|
+
<s:element minOccurs="0" maxOccurs="1" name="CostCenters" type="tns:ArrayOfString8" />
|
1493
|
+
<s:element minOccurs="0" maxOccurs="1" name="IncludeTracking" type="s:string" />
|
1494
|
+
<s:element minOccurs="0" maxOccurs="1" name="IncludeFromAddress" type="s:string" />
|
1495
|
+
</s:sequence>
|
1496
|
+
</s:extension>
|
1497
|
+
</s:complexContent>
|
1498
|
+
</s:complexType>
|
1499
|
+
<s:complexType name="TransactionListingsRequestOptions">
|
1500
|
+
<s:attribute name="CostCenter" type="s:string" />
|
1501
|
+
<s:attribute name="StartDateTime" type="s:string" />
|
1502
|
+
<s:attribute name="EndDateTime" type="s:string" />
|
1503
|
+
<s:attribute name="ShipFromZip" type="s:string" />
|
1504
|
+
<s:attribute name="ShipToZip" type="s:string" />
|
1505
|
+
<s:attribute name="ReferenceID" type="s:string" />
|
1506
|
+
<s:attribute name="TransactionType" type="tns:GetTransactionsType" use="required" />
|
1507
|
+
<s:attribute name="StartingTransactionID" type="s:string" />
|
1508
|
+
<s:attribute name="RefundStatus" type="tns:TransactionRefundStatus" use="required" />
|
1509
|
+
</s:complexType>
|
1510
|
+
<s:simpleType name="GetTransactionsType">
|
1511
|
+
<s:restriction base="s:string">
|
1512
|
+
<s:enumeration value="ALL" />
|
1513
|
+
<s:enumeration value="PRINTS" />
|
1514
|
+
<s:enumeration value="PURCHASES" />
|
1515
|
+
</s:restriction>
|
1516
|
+
</s:simpleType>
|
1517
|
+
<s:simpleType name="TransactionRefundStatus">
|
1518
|
+
<s:restriction base="s:string">
|
1519
|
+
<s:enumeration value="ALL" />
|
1520
|
+
<s:enumeration value="SUBMITTED" />
|
1521
|
+
<s:enumeration value="VALIDATED" />
|
1522
|
+
<s:enumeration value="REJECTED" />
|
1523
|
+
<s:enumeration value="REFUNDED" />
|
1524
|
+
<s:enumeration value="MANUAL" />
|
1525
|
+
</s:restriction>
|
1526
|
+
</s:simpleType>
|
1527
|
+
<s:complexType name="ArrayOfString5">
|
1528
|
+
<s:sequence>
|
1529
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PIC" nillable="true" type="s:string" />
|
1530
|
+
</s:sequence>
|
1531
|
+
</s:complexType>
|
1532
|
+
<s:complexType name="ArrayOfString6">
|
1533
|
+
<s:sequence>
|
1534
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PieceID" nillable="true" type="s:string" />
|
1535
|
+
</s:sequence>
|
1536
|
+
</s:complexType>
|
1537
|
+
<s:complexType name="ArrayOfString7">
|
1538
|
+
<s:sequence>
|
1539
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="TransactionID" nillable="true" type="s:string" />
|
1540
|
+
</s:sequence>
|
1541
|
+
</s:complexType>
|
1542
|
+
<s:complexType name="ArrayOfString8">
|
1543
|
+
<s:sequence>
|
1544
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="CostCenterID" nillable="true" type="s:string" />
|
1545
|
+
</s:sequence>
|
1546
|
+
</s:complexType>
|
1547
|
+
<s:element name="GetTransactionsListingResponse">
|
1548
|
+
<s:complexType>
|
1549
|
+
<s:sequence>
|
1550
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionsListingResponse" type="tns:TransactionsListingResponse" />
|
1551
|
+
</s:sequence>
|
1552
|
+
</s:complexType>
|
1553
|
+
</s:element>
|
1554
|
+
<s:complexType name="TransactionsListingResponse">
|
1555
|
+
<s:sequence>
|
1556
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1557
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1558
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1559
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1560
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionsResults" type="tns:ArrayOfTransaction" />
|
1561
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResponseOptions" type="tns:TransactionsResponseOptions" />
|
1562
|
+
</s:sequence>
|
1563
|
+
<s:attribute name="StartingTransactionID" type="s:long" use="required" />
|
1564
|
+
<s:attribute name="EndingTransactionID" type="s:long" use="required" />
|
1565
|
+
<s:attribute name="CompleteDataSet" type="s:boolean" use="required" />
|
1566
|
+
</s:complexType>
|
1567
|
+
<s:complexType name="ArrayOfTransaction">
|
1568
|
+
<s:sequence>
|
1569
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Transaction" nillable="true" type="tns:Transaction" />
|
1570
|
+
</s:sequence>
|
1571
|
+
</s:complexType>
|
1572
|
+
<s:complexType name="Transaction">
|
1573
|
+
<s:sequence>
|
1574
|
+
<s:element minOccurs="0" maxOccurs="1" name="PIC" type="s:string" />
|
1575
|
+
<s:element minOccurs="1" maxOccurs="1" name="TransactionID" type="s:long" />
|
1576
|
+
<s:element minOccurs="0" maxOccurs="1" name="PieceID" type="s:string" />
|
1577
|
+
<s:element minOccurs="0" maxOccurs="1" name="Amount" type="s:string" />
|
1578
|
+
<s:element minOccurs="0" maxOccurs="1" name="Weight" type="s:string" />
|
1579
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailClass" type="s:string" />
|
1580
|
+
<s:element minOccurs="0" maxOccurs="1" name="ToAddress" type="tns:TransactionAddress" />
|
1581
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromAddress" type="tns:TransactionAddress" />
|
1582
|
+
<s:element minOccurs="0" maxOccurs="1" name="CostCenter" type="s:string" />
|
1583
|
+
<s:element minOccurs="0" maxOccurs="1" name="ReferenceID" type="s:string" />
|
1584
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAccountID" type="s:string" />
|
1585
|
+
<s:element minOccurs="0" maxOccurs="1" name="RetailAmount" type="s:string" />
|
1586
|
+
<s:element minOccurs="0" maxOccurs="1" name="ContractID" type="s:string" />
|
1587
|
+
<s:element minOccurs="0" maxOccurs="1" name="Status" type="tns:TransactionStatus" />
|
1588
|
+
</s:sequence>
|
1589
|
+
<s:attribute name="TransactionType" type="tns:TransactionType" use="required" />
|
1590
|
+
<s:attribute name="TransactionDateTime" type="s:string" />
|
1591
|
+
<s:attribute name="PostmarkDate" type="s:string" />
|
1592
|
+
<s:attribute name="RefundStatus" type="s:string" />
|
1593
|
+
</s:complexType>
|
1594
|
+
<s:complexType name="TransactionAddress">
|
1595
|
+
<s:sequence>
|
1596
|
+
<s:element minOccurs="0" maxOccurs="1" name="Company" type="s:string" />
|
1597
|
+
<s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
|
1598
|
+
<s:element minOccurs="0" maxOccurs="1" name="Phone" type="s:string" />
|
1599
|
+
<s:element minOccurs="0" maxOccurs="1" name="Email" type="s:string" />
|
1600
|
+
<s:element minOccurs="0" maxOccurs="1" name="AddressLines" type="tns:AddressLines" />
|
1601
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
1602
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
1603
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostalCode" type="s:string" />
|
1604
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zip4" type="s:string" />
|
1605
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
1606
|
+
</s:sequence>
|
1607
|
+
</s:complexType>
|
1608
|
+
<s:complexType name="AddressLines">
|
1609
|
+
<s:sequence>
|
1610
|
+
<s:element minOccurs="0" maxOccurs="1" name="AddressLine1" type="s:string" />
|
1611
|
+
<s:element minOccurs="0" maxOccurs="1" name="AddressLine2" type="s:string" />
|
1612
|
+
</s:sequence>
|
1613
|
+
</s:complexType>
|
1614
|
+
<s:complexType name="TransactionStatus">
|
1615
|
+
<s:sequence>
|
1616
|
+
<s:element minOccurs="0" maxOccurs="1" name="StatusEvent" type="s:string" />
|
1617
|
+
<s:element minOccurs="0" maxOccurs="1" name="StatusDescription" type="s:string" />
|
1618
|
+
<s:element minOccurs="0" maxOccurs="1" name="DeliveryDateTime" type="s:string" />
|
1619
|
+
</s:sequence>
|
1620
|
+
</s:complexType>
|
1621
|
+
<s:simpleType name="TransactionType">
|
1622
|
+
<s:restriction base="s:string">
|
1623
|
+
<s:enumeration value="PRINT" />
|
1624
|
+
<s:enumeration value="PURCHASE" />
|
1625
|
+
</s:restriction>
|
1626
|
+
</s:simpleType>
|
1627
|
+
<s:complexType name="TransactionsResponseOptions">
|
1628
|
+
<s:attribute name="StartDateTime" type="s:string" />
|
1629
|
+
<s:attribute name="EndDateTime" type="s:string" />
|
1630
|
+
</s:complexType>
|
1631
|
+
<s:element name="GetTransactionsListingXML">
|
1632
|
+
<s:complexType>
|
1633
|
+
<s:sequence>
|
1634
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetTransactionsListingRequestXML" type="s:string" />
|
1635
|
+
</s:sequence>
|
1636
|
+
</s:complexType>
|
1637
|
+
</s:element>
|
1638
|
+
<s:element name="GetTransactionsListingXMLResponse">
|
1639
|
+
<s:complexType>
|
1640
|
+
<s:sequence>
|
1641
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionsListingResponse" type="tns:TransactionsListingResponse" />
|
1642
|
+
</s:sequence>
|
1643
|
+
</s:complexType>
|
1644
|
+
</s:element>
|
1645
|
+
<s:element name="GetPackagePickupChange">
|
1646
|
+
<s:complexType>
|
1647
|
+
<s:sequence>
|
1648
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupChangeRequest" type="tns:PackagePickupChangeRequest" />
|
1649
|
+
</s:sequence>
|
1650
|
+
</s:complexType>
|
1651
|
+
</s:element>
|
1652
|
+
<s:complexType name="PackagePickupChangeRequest">
|
1653
|
+
<s:complexContent mixed="false">
|
1654
|
+
<s:extension base="tns:PackagePickupRequest">
|
1655
|
+
<s:sequence>
|
1656
|
+
<s:element minOccurs="0" maxOccurs="1" name="ConfirmationNumber" type="s:string" />
|
1657
|
+
</s:sequence>
|
1658
|
+
</s:extension>
|
1659
|
+
</s:complexContent>
|
1660
|
+
</s:complexType>
|
1661
|
+
<s:complexType name="PackagePickupRequest">
|
1662
|
+
<s:complexContent mixed="false">
|
1663
|
+
<s:extension base="tns:DataValidator">
|
1664
|
+
<s:sequence>
|
1665
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1666
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1667
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1668
|
+
<s:element minOccurs="0" maxOccurs="1" name="UseAddressOnFile" type="s:string" />
|
1669
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalPickupAddress" type="tns:PhysicalPickupAddress" />
|
1670
|
+
<s:element minOccurs="1" maxOccurs="1" name="ExpressMailCount" type="s:int" />
|
1671
|
+
<s:element minOccurs="1" maxOccurs="1" name="PriorityMailCount" type="s:int" />
|
1672
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReturnsCount" type="s:int" />
|
1673
|
+
<s:element minOccurs="1" maxOccurs="1" name="InternationalCount" type="s:int" />
|
1674
|
+
<s:element minOccurs="1" maxOccurs="1" name="OtherPackagesCount" type="s:int" />
|
1675
|
+
<s:element minOccurs="1" maxOccurs="1" name="EstimatedWeightLb" type="s:double" />
|
1676
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackageLocation" type="s:string" />
|
1677
|
+
<s:element minOccurs="0" maxOccurs="1" name="SpecialInstructions" type="s:string" />
|
1678
|
+
</s:sequence>
|
1679
|
+
<s:attribute name="Test" type="s:string" />
|
1680
|
+
</s:extension>
|
1681
|
+
</s:complexContent>
|
1682
|
+
</s:complexType>
|
1683
|
+
<s:element name="GetPackagePickupChangeResponse">
|
1684
|
+
<s:complexType>
|
1685
|
+
<s:sequence>
|
1686
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupChangeResponse" type="tns:PackagePickupChangeResponse" />
|
1687
|
+
</s:sequence>
|
1688
|
+
</s:complexType>
|
1689
|
+
</s:element>
|
1690
|
+
<s:complexType name="PackagePickupChangeResponse">
|
1691
|
+
<s:sequence>
|
1692
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1693
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1694
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1695
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1696
|
+
<s:element minOccurs="0" maxOccurs="1" name="ConfirmationNumber" type="s:string" />
|
1697
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickup" type="tns:PackagePickup" />
|
1698
|
+
</s:sequence>
|
1699
|
+
</s:complexType>
|
1700
|
+
<s:complexType name="PackagePickup">
|
1701
|
+
<s:sequence>
|
1702
|
+
<s:element minOccurs="0" maxOccurs="1" name="DayOfWeek" type="s:string" />
|
1703
|
+
<s:element minOccurs="0" maxOccurs="1" name="Date" type="s:string" />
|
1704
|
+
<s:element minOccurs="0" maxOccurs="1" name="CarrierRoute" type="s:string" />
|
1705
|
+
</s:sequence>
|
1706
|
+
</s:complexType>
|
1707
|
+
<s:element name="GetPackagePickupChangeXML">
|
1708
|
+
<s:complexType>
|
1709
|
+
<s:sequence>
|
1710
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupChangeRequestXML" type="s:string" />
|
1711
|
+
</s:sequence>
|
1712
|
+
</s:complexType>
|
1713
|
+
</s:element>
|
1714
|
+
<s:element name="GetPackagePickupChangeXMLResponse">
|
1715
|
+
<s:complexType>
|
1716
|
+
<s:sequence>
|
1717
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupChangeResponse" type="tns:PackagePickupChangeResponse" />
|
1718
|
+
</s:sequence>
|
1719
|
+
</s:complexType>
|
1720
|
+
</s:element>
|
1721
|
+
<s:element name="GetPackagePickupAvailability">
|
1722
|
+
<s:complexType>
|
1723
|
+
<s:sequence>
|
1724
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupAvailabilityRequest" type="tns:PackagePickupAvailabilityRequest" />
|
1725
|
+
</s:sequence>
|
1726
|
+
</s:complexType>
|
1727
|
+
</s:element>
|
1728
|
+
<s:complexType name="PackagePickupAvailabilityRequest">
|
1729
|
+
<s:complexContent mixed="false">
|
1730
|
+
<s:extension base="tns:DataValidator">
|
1731
|
+
<s:sequence>
|
1732
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1733
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1734
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1735
|
+
<s:element minOccurs="0" maxOccurs="1" name="UseAddressOnFile" type="s:string" />
|
1736
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalPickupAddress" type="tns:PhysicalPickupAddress" />
|
1737
|
+
</s:sequence>
|
1738
|
+
</s:extension>
|
1739
|
+
</s:complexContent>
|
1740
|
+
</s:complexType>
|
1741
|
+
<s:element name="GetPackagePickupAvailabilityResponse">
|
1742
|
+
<s:complexType>
|
1743
|
+
<s:sequence>
|
1744
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupAvailabilityResponse" type="tns:PackagePickupAvailabilityResponse" />
|
1745
|
+
</s:sequence>
|
1746
|
+
</s:complexType>
|
1747
|
+
</s:element>
|
1748
|
+
<s:complexType name="PackagePickupAvailabilityResponse">
|
1749
|
+
<s:sequence>
|
1750
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1751
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1752
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1753
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1754
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickup" type="tns:PackagePickup" />
|
1755
|
+
</s:sequence>
|
1756
|
+
</s:complexType>
|
1757
|
+
<s:element name="GetPackagePickupAvailabilityXML">
|
1758
|
+
<s:complexType>
|
1759
|
+
<s:sequence>
|
1760
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupAvailabilityRequestXML" type="s:string" />
|
1761
|
+
</s:sequence>
|
1762
|
+
</s:complexType>
|
1763
|
+
</s:element>
|
1764
|
+
<s:element name="GetPackagePickupAvailabilityXMLResponse">
|
1765
|
+
<s:complexType>
|
1766
|
+
<s:sequence>
|
1767
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupAvailabilityResponse" type="tns:PackagePickupAvailabilityResponse" />
|
1768
|
+
</s:sequence>
|
1769
|
+
</s:complexType>
|
1770
|
+
</s:element>
|
1771
|
+
<s:element name="GetPackagePickup">
|
1772
|
+
<s:complexType>
|
1773
|
+
<s:sequence>
|
1774
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupRequest" type="tns:PackagePickupRequest" />
|
1775
|
+
</s:sequence>
|
1776
|
+
</s:complexType>
|
1777
|
+
</s:element>
|
1778
|
+
<s:element name="GetPackagePickupResponse">
|
1779
|
+
<s:complexType>
|
1780
|
+
<s:sequence>
|
1781
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupResponse" type="tns:PackagePickupResponse" />
|
1782
|
+
</s:sequence>
|
1783
|
+
</s:complexType>
|
1784
|
+
</s:element>
|
1785
|
+
<s:complexType name="PackagePickupResponse">
|
1786
|
+
<s:sequence>
|
1787
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1788
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1789
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1790
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1791
|
+
<s:element minOccurs="0" maxOccurs="1" name="ConfirmationNumber" type="s:string" />
|
1792
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickup" type="tns:PackagePickup" />
|
1793
|
+
</s:sequence>
|
1794
|
+
</s:complexType>
|
1795
|
+
<s:element name="GetPackagePickupXML">
|
1796
|
+
<s:complexType>
|
1797
|
+
<s:sequence>
|
1798
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupRequestXML" type="s:string" />
|
1799
|
+
</s:sequence>
|
1800
|
+
</s:complexType>
|
1801
|
+
</s:element>
|
1802
|
+
<s:element name="GetPackagePickupXMLResponse">
|
1803
|
+
<s:complexType>
|
1804
|
+
<s:sequence>
|
1805
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupResponse" type="tns:PackagePickupResponse" />
|
1806
|
+
</s:sequence>
|
1807
|
+
</s:complexType>
|
1808
|
+
</s:element>
|
1809
|
+
<s:element name="GetPackagePickupCancel">
|
1810
|
+
<s:complexType>
|
1811
|
+
<s:sequence>
|
1812
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupCancelRequest" type="tns:PackagePickupCancelRequest" />
|
1813
|
+
</s:sequence>
|
1814
|
+
</s:complexType>
|
1815
|
+
</s:element>
|
1816
|
+
<s:complexType name="PackagePickupCancelRequest">
|
1817
|
+
<s:complexContent mixed="false">
|
1818
|
+
<s:extension base="tns:DataValidator">
|
1819
|
+
<s:sequence>
|
1820
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1821
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1822
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1823
|
+
<s:element minOccurs="0" maxOccurs="1" name="UseAddressOnFile" type="s:string" />
|
1824
|
+
<s:element minOccurs="0" maxOccurs="1" name="PhysicalPickupAddress" type="tns:PhysicalPickupAddress" />
|
1825
|
+
<s:element minOccurs="0" maxOccurs="1" name="ConfirmationNumber" type="s:string" />
|
1826
|
+
</s:sequence>
|
1827
|
+
<s:attribute name="Test" type="s:string" />
|
1828
|
+
</s:extension>
|
1829
|
+
</s:complexContent>
|
1830
|
+
</s:complexType>
|
1831
|
+
<s:element name="GetPackagePickupCancelResponse">
|
1832
|
+
<s:complexType>
|
1833
|
+
<s:sequence>
|
1834
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupCancelResponse" type="tns:PackagePickupCancelResponse" />
|
1835
|
+
</s:sequence>
|
1836
|
+
</s:complexType>
|
1837
|
+
</s:element>
|
1838
|
+
<s:complexType name="PackagePickupCancelResponse">
|
1839
|
+
<s:sequence>
|
1840
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1841
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1842
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1843
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1844
|
+
<s:element minOccurs="0" maxOccurs="1" name="ConfirmationNumber" type="s:string" />
|
1845
|
+
<s:element minOccurs="0" maxOccurs="1" name="PickupStatus" type="s:string" />
|
1846
|
+
</s:sequence>
|
1847
|
+
</s:complexType>
|
1848
|
+
<s:element name="GetPackagePickupCancelXML">
|
1849
|
+
<s:complexType>
|
1850
|
+
<s:sequence>
|
1851
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupCancelRequestXML" type="s:string" />
|
1852
|
+
</s:sequence>
|
1853
|
+
</s:complexType>
|
1854
|
+
</s:element>
|
1855
|
+
<s:element name="GetPackagePickupCancelXMLResponse">
|
1856
|
+
<s:complexType>
|
1857
|
+
<s:sequence>
|
1858
|
+
<s:element minOccurs="0" maxOccurs="1" name="PackagePickupCancelResponse" type="tns:PackagePickupCancelResponse" />
|
1859
|
+
</s:sequence>
|
1860
|
+
</s:complexType>
|
1861
|
+
</s:element>
|
1862
|
+
<s:element name="GetPostageRateTable">
|
1863
|
+
<s:complexType>
|
1864
|
+
<s:sequence>
|
1865
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateRequest" type="tns:PostageRateRequest" />
|
1866
|
+
</s:sequence>
|
1867
|
+
</s:complexType>
|
1868
|
+
</s:element>
|
1869
|
+
<s:element name="GetPostageRateTableResponse">
|
1870
|
+
<s:complexType>
|
1871
|
+
<s:sequence>
|
1872
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateResponse" type="tns:PostageRateTableResponse" />
|
1873
|
+
</s:sequence>
|
1874
|
+
</s:complexType>
|
1875
|
+
</s:element>
|
1876
|
+
<s:complexType name="PostageRateTableResponse">
|
1877
|
+
<s:sequence>
|
1878
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
1879
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1880
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zone" type="s:string" />
|
1881
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostagePrice" type="tns:PostageRateTable" />
|
1882
|
+
</s:sequence>
|
1883
|
+
</s:complexType>
|
1884
|
+
<s:complexType name="PostageRateTable">
|
1885
|
+
<s:sequence>
|
1886
|
+
<s:element minOccurs="0" maxOccurs="1" name="MailClass" type="s:string" />
|
1887
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zone" type="s:string" />
|
1888
|
+
<s:element minOccurs="0" maxOccurs="1" name="IntraBMC" type="s:string" />
|
1889
|
+
<s:element minOccurs="0" maxOccurs="1" name="Pricing" type="s:string" />
|
1890
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Postage" type="tns:PostageWeightRatePair" />
|
1891
|
+
</s:sequence>
|
1892
|
+
</s:complexType>
|
1893
|
+
<s:complexType name="PostageWeightRatePair">
|
1894
|
+
<s:sequence>
|
1895
|
+
<s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:double" />
|
1896
|
+
<s:element minOccurs="1" maxOccurs="1" name="Rate" type="s:decimal" />
|
1897
|
+
</s:sequence>
|
1898
|
+
</s:complexType>
|
1899
|
+
<s:element name="GetPostageRateTableXML">
|
1900
|
+
<s:complexType>
|
1901
|
+
<s:sequence>
|
1902
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateRequestXML" type="s:string" />
|
1903
|
+
</s:sequence>
|
1904
|
+
</s:complexType>
|
1905
|
+
</s:element>
|
1906
|
+
<s:element name="GetPostageRateTableXMLResponse">
|
1907
|
+
<s:complexType>
|
1908
|
+
<s:sequence>
|
1909
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostageRateResponse" type="tns:PostageRateTableResponse" />
|
1910
|
+
</s:sequence>
|
1911
|
+
</s:complexType>
|
1912
|
+
</s:element>
|
1913
|
+
<s:element name="GetSCAN">
|
1914
|
+
<s:complexType>
|
1915
|
+
<s:sequence>
|
1916
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetSCANRequest" type="tns:SCANRequest" />
|
1917
|
+
</s:sequence>
|
1918
|
+
</s:complexType>
|
1919
|
+
</s:element>
|
1920
|
+
<s:complexType name="SCANRequest">
|
1921
|
+
<s:complexContent mixed="false">
|
1922
|
+
<s:extension base="tns:DataValidator">
|
1923
|
+
<s:sequence>
|
1924
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1925
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1926
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1927
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetSCANRequestParameters" type="tns:GetSCANParameters" />
|
1928
|
+
<s:element minOccurs="0" maxOccurs="1" name="PicNumbers" type="tns:ArrayOfString" />
|
1929
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionIds" type="tns:ArrayOfString2" />
|
1930
|
+
<s:element minOccurs="0" maxOccurs="1" name="PieceNumbers" type="tns:ArrayOfString1" />
|
1931
|
+
</s:sequence>
|
1932
|
+
</s:extension>
|
1933
|
+
</s:complexContent>
|
1934
|
+
</s:complexType>
|
1935
|
+
<s:complexType name="GetSCANParameters">
|
1936
|
+
<s:sequence>
|
1937
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromName" type="s:string" />
|
1938
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCompany" type="s:string" />
|
1939
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromAddress" type="s:string" />
|
1940
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromCity" type="s:string" />
|
1941
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromState" type="s:string" />
|
1942
|
+
<s:element minOccurs="0" maxOccurs="1" name="FromZip" type="s:string" />
|
1943
|
+
</s:sequence>
|
1944
|
+
<s:attribute name="ImageResolution" type="s:string" />
|
1945
|
+
<s:attribute name="ImageFormat" type="s:string" />
|
1946
|
+
<s:attribute name="SubmissionID" type="s:string" />
|
1947
|
+
<s:attribute name="CostCenter" type="s:string" />
|
1948
|
+
<s:attribute name="FormType" type="s:string" />
|
1949
|
+
<s:attribute name="ReferenceID" type="s:string" />
|
1950
|
+
<s:attribute name="SearchZip" type="s:string" />
|
1951
|
+
</s:complexType>
|
1952
|
+
<s:element name="GetSCANResponse">
|
1953
|
+
<s:complexType>
|
1954
|
+
<s:sequence>
|
1955
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetSCANResponse" type="tns:SCANResponse" />
|
1956
|
+
</s:sequence>
|
1957
|
+
</s:complexType>
|
1958
|
+
</s:element>
|
1959
|
+
<s:complexType name="SCANResponse">
|
1960
|
+
<s:sequence>
|
1961
|
+
<s:element minOccurs="0" maxOccurs="1" name="ErrorMessage" type="s:string" />
|
1962
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1963
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1964
|
+
<s:element minOccurs="0" maxOccurs="1" name="SubmissionID" type="s:string" />
|
1965
|
+
<s:element minOccurs="0" maxOccurs="1" name="SCANForm" type="s:string" />
|
1966
|
+
<s:element minOccurs="0" maxOccurs="1" name="SubmissionIdOld" type="s:string" />
|
1967
|
+
<s:element minOccurs="0" maxOccurs="1" name="ScanFormOld" type="s:string" />
|
1968
|
+
</s:sequence>
|
1969
|
+
</s:complexType>
|
1970
|
+
<s:element name="GetSCANXML">
|
1971
|
+
<s:complexType>
|
1972
|
+
<s:sequence>
|
1973
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetSCANRequestXML" type="s:string" />
|
1974
|
+
</s:sequence>
|
1975
|
+
</s:complexType>
|
1976
|
+
</s:element>
|
1977
|
+
<s:element name="GetSCANXMLResponse">
|
1978
|
+
<s:complexType>
|
1979
|
+
<s:sequence>
|
1980
|
+
<s:element minOccurs="0" maxOccurs="1" name="SCANResponse" type="tns:SCANResponse" />
|
1981
|
+
</s:sequence>
|
1982
|
+
</s:complexType>
|
1983
|
+
</s:element>
|
1984
|
+
<s:element name="GetRefund">
|
1985
|
+
<s:complexType>
|
1986
|
+
<s:sequence>
|
1987
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefundRequest" type="tns:RefundRequest" />
|
1988
|
+
</s:sequence>
|
1989
|
+
</s:complexType>
|
1990
|
+
</s:element>
|
1991
|
+
<s:complexType name="RefundRequest">
|
1992
|
+
<s:complexContent mixed="false">
|
1993
|
+
<s:extension base="tns:DataValidator">
|
1994
|
+
<s:sequence>
|
1995
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequesterID" type="s:string" />
|
1996
|
+
<s:element minOccurs="0" maxOccurs="1" name="RequestID" type="s:string" />
|
1997
|
+
<s:element minOccurs="0" maxOccurs="1" name="CertifiedIntermediary" type="tns:CertifiedIntermediary" />
|
1998
|
+
<s:element minOccurs="0" maxOccurs="1" name="PicNumbers" type="tns:ArrayOfString" />
|
1999
|
+
<s:element minOccurs="0" maxOccurs="1" name="TransactionIds" type="tns:ArrayOfLong" />
|
2000
|
+
<s:element minOccurs="0" maxOccurs="1" name="PieceNumbers" type="tns:ArrayOfInt" />
|
2001
|
+
</s:sequence>
|
2002
|
+
</s:extension>
|
2003
|
+
</s:complexContent>
|
2004
|
+
</s:complexType>
|
2005
|
+
<s:complexType name="ArrayOfLong">
|
2006
|
+
<s:sequence>
|
2007
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="TransactionId" type="s:long" />
|
2008
|
+
</s:sequence>
|
2009
|
+
</s:complexType>
|
2010
|
+
<s:complexType name="ArrayOfInt">
|
2011
|
+
<s:sequence>
|
2012
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="PieceNumber" type="s:int" />
|
2013
|
+
</s:sequence>
|
2014
|
+
</s:complexType>
|
2015
|
+
<s:element name="GetRefundResponse">
|
2016
|
+
<s:complexType>
|
2017
|
+
<s:sequence>
|
2018
|
+
<s:element minOccurs="0" maxOccurs="1" name="RefundResponse" type="tns:RefundResponse" />
|
2019
|
+
</s:sequence>
|
2020
|
+
</s:complexType>
|
2021
|
+
</s:element>
|
2022
|
+
<s:element name="RefundResponse" nillable="true" type="tns:RefundResponse" />
|
2023
|
+
<s:element name="ResetSuspendedAccountRequestResponse" nillable="true" type="tns:ResetSuspendedAccountRequestResponse" />
|
2024
|
+
<s:element name="ChallengeQuestionResponse" nillable="true" type="tns:ChallengeQuestionResponse" />
|
2025
|
+
<s:element name="AccountStatusResponse" nillable="true" type="tns:AccountStatusResponse" />
|
2026
|
+
<s:element name="LabelRequestResponse" nillable="true" type="tns:LabelRequestResponse" />
|
2027
|
+
<s:element name="GetVersionResults" nillable="true" type="tns:GetVersionResults" />
|
2028
|
+
<s:element name="VoidLabelResponse" nillable="true" type="tns:VoidLabelResponse" />
|
2029
|
+
<s:element name="RecreditRequestResponse" nillable="true" type="tns:RecreditRequestResponse" />
|
2030
|
+
<s:element name="DdpRateResponse" nillable="true" type="tns:DdpRateResponse" />
|
2031
|
+
<s:element name="PostageRateResponse" nillable="true" type="tns:PostageRateResponse" />
|
2032
|
+
<s:element name="ChangePassPhraseRequestResponse" nillable="true" type="tns:ChangePassPhraseRequestResponse" />
|
2033
|
+
<s:element name="PostageRatesResponse" nillable="true" type="tns:PostageRatesResponse" />
|
2034
|
+
<s:element name="DhlgmManifestResponse" nillable="true" type="tns:DhlgmManifestResponse" />
|
2035
|
+
<s:element name="PackageStatusResponse" nillable="true" type="tns:PackageStatusResponse" />
|
2036
|
+
<s:element name="RetailAccountsResponse" nillable="true" type="tns:RetailAccountsResponse" />
|
2037
|
+
<s:element name="UserSignUpResponse" nillable="true" type="tns:UserSignUpResponse" />
|
2038
|
+
<s:element name="TransactionsListingResponse" nillable="true" type="tns:TransactionsListingResponse" />
|
2039
|
+
<s:element name="PackagePickupChangeResponse" nillable="true" type="tns:PackagePickupChangeResponse" />
|
2040
|
+
<s:element name="PackagePickupAvailabilityResponse" nillable="true" type="tns:PackagePickupAvailabilityResponse" />
|
2041
|
+
<s:element name="PackagePickupResponse" nillable="true" type="tns:PackagePickupResponse" />
|
2042
|
+
<s:element name="PackagePickupCancelResponse" nillable="true" type="tns:PackagePickupCancelResponse" />
|
2043
|
+
<s:element name="PostageRateTableResponse" nillable="true" type="tns:PostageRateTableResponse" />
|
2044
|
+
<s:element name="SCANResponse" nillable="true" type="tns:SCANResponse" />
|
2045
|
+
</s:schema>
|
2046
|
+
</wsdl:types>
|
2047
|
+
<wsdl:message name="GetRefundXMLSoapIn">
|
2048
|
+
<wsdl:part name="parameters" element="tns:GetRefundXML" />
|
2049
|
+
</wsdl:message>
|
2050
|
+
<wsdl:message name="GetRefundXMLSoapOut">
|
2051
|
+
<wsdl:part name="parameters" element="tns:GetRefundXMLResponse" />
|
2052
|
+
</wsdl:message>
|
2053
|
+
<wsdl:message name="ResetSuspendedAccountSoapIn">
|
2054
|
+
<wsdl:part name="parameters" element="tns:ResetSuspendedAccount" />
|
2055
|
+
</wsdl:message>
|
2056
|
+
<wsdl:message name="ResetSuspendedAccountSoapOut">
|
2057
|
+
<wsdl:part name="parameters" element="tns:ResetSuspendedAccountResponse" />
|
2058
|
+
</wsdl:message>
|
2059
|
+
<wsdl:message name="ResetSuspendedAccountXMLSoapIn">
|
2060
|
+
<wsdl:part name="parameters" element="tns:ResetSuspendedAccountXML" />
|
2061
|
+
</wsdl:message>
|
2062
|
+
<wsdl:message name="ResetSuspendedAccountXMLSoapOut">
|
2063
|
+
<wsdl:part name="parameters" element="tns:ResetSuspendedAccountXMLResponse" />
|
2064
|
+
</wsdl:message>
|
2065
|
+
<wsdl:message name="GetChallengeQuestionSoapIn">
|
2066
|
+
<wsdl:part name="parameters" element="tns:GetChallengeQuestion" />
|
2067
|
+
</wsdl:message>
|
2068
|
+
<wsdl:message name="GetChallengeQuestionSoapOut">
|
2069
|
+
<wsdl:part name="parameters" element="tns:GetChallengeQuestionResponse" />
|
2070
|
+
</wsdl:message>
|
2071
|
+
<wsdl:message name="GetChallengeQuestionXMLSoapIn">
|
2072
|
+
<wsdl:part name="parameters" element="tns:GetChallengeQuestionXML" />
|
2073
|
+
</wsdl:message>
|
2074
|
+
<wsdl:message name="GetChallengeQuestionXMLSoapOut">
|
2075
|
+
<wsdl:part name="parameters" element="tns:GetChallengeQuestionXMLResponse" />
|
2076
|
+
</wsdl:message>
|
2077
|
+
<wsdl:message name="GetAccountStatusSoapIn">
|
2078
|
+
<wsdl:part name="parameters" element="tns:GetAccountStatus" />
|
2079
|
+
</wsdl:message>
|
2080
|
+
<wsdl:message name="GetAccountStatusSoapOut">
|
2081
|
+
<wsdl:part name="parameters" element="tns:GetAccountStatusResponse" />
|
2082
|
+
</wsdl:message>
|
2083
|
+
<wsdl:message name="GetAccountStatusXMLSoapIn">
|
2084
|
+
<wsdl:part name="parameters" element="tns:GetAccountStatusXML" />
|
2085
|
+
</wsdl:message>
|
2086
|
+
<wsdl:message name="GetAccountStatusXMLSoapOut">
|
2087
|
+
<wsdl:part name="parameters" element="tns:GetAccountStatusXMLResponse" />
|
2088
|
+
</wsdl:message>
|
2089
|
+
<wsdl:message name="GetPostageLabelSoapIn">
|
2090
|
+
<wsdl:part name="parameters" element="tns:GetPostageLabel" />
|
2091
|
+
</wsdl:message>
|
2092
|
+
<wsdl:message name="GetPostageLabelSoapOut">
|
2093
|
+
<wsdl:part name="parameters" element="tns:GetPostageLabelResponse" />
|
2094
|
+
</wsdl:message>
|
2095
|
+
<wsdl:message name="GetPostageLabelXMLSoapIn">
|
2096
|
+
<wsdl:part name="parameters" element="tns:GetPostageLabelXML" />
|
2097
|
+
</wsdl:message>
|
2098
|
+
<wsdl:message name="GetPostageLabelXMLSoapOut">
|
2099
|
+
<wsdl:part name="parameters" element="tns:GetPostageLabelXMLResponse" />
|
2100
|
+
</wsdl:message>
|
2101
|
+
<wsdl:message name="GetVersionSoapIn">
|
2102
|
+
<wsdl:part name="parameters" element="tns:GetVersion" />
|
2103
|
+
</wsdl:message>
|
2104
|
+
<wsdl:message name="GetVersionSoapOut">
|
2105
|
+
<wsdl:part name="parameters" element="tns:GetVersionResponse" />
|
2106
|
+
</wsdl:message>
|
2107
|
+
<wsdl:message name="GetVersionXMLSoapIn">
|
2108
|
+
<wsdl:part name="parameters" element="tns:GetVersionXML" />
|
2109
|
+
</wsdl:message>
|
2110
|
+
<wsdl:message name="GetVersionXMLSoapOut">
|
2111
|
+
<wsdl:part name="parameters" element="tns:GetVersionXMLResponse" />
|
2112
|
+
</wsdl:message>
|
2113
|
+
<wsdl:message name="VoideVSLabelSoapIn">
|
2114
|
+
<wsdl:part name="parameters" element="tns:VoideVSLabel" />
|
2115
|
+
</wsdl:message>
|
2116
|
+
<wsdl:message name="VoideVSLabelSoapOut">
|
2117
|
+
<wsdl:part name="parameters" element="tns:VoideVSLabelResponse" />
|
2118
|
+
</wsdl:message>
|
2119
|
+
<wsdl:message name="VoideVSLabelXMLSoapIn">
|
2120
|
+
<wsdl:part name="parameters" element="tns:VoideVSLabelXML" />
|
2121
|
+
</wsdl:message>
|
2122
|
+
<wsdl:message name="VoideVSLabelXMLSoapOut">
|
2123
|
+
<wsdl:part name="parameters" element="tns:VoideVSLabelXMLResponse" />
|
2124
|
+
</wsdl:message>
|
2125
|
+
<wsdl:message name="BuyPostageSoapIn">
|
2126
|
+
<wsdl:part name="parameters" element="tns:BuyPostage" />
|
2127
|
+
</wsdl:message>
|
2128
|
+
<wsdl:message name="BuyPostageSoapOut">
|
2129
|
+
<wsdl:part name="parameters" element="tns:BuyPostageResponse" />
|
2130
|
+
</wsdl:message>
|
2131
|
+
<wsdl:message name="BuyPostageXMLSoapIn">
|
2132
|
+
<wsdl:part name="parameters" element="tns:BuyPostageXML" />
|
2133
|
+
</wsdl:message>
|
2134
|
+
<wsdl:message name="BuyPostageXMLSoapOut">
|
2135
|
+
<wsdl:part name="parameters" element="tns:BuyPostageXMLResponse" />
|
2136
|
+
</wsdl:message>
|
2137
|
+
<wsdl:message name="CalculateDdpRateSoapIn">
|
2138
|
+
<wsdl:part name="parameters" element="tns:CalculateDdpRate" />
|
2139
|
+
</wsdl:message>
|
2140
|
+
<wsdl:message name="CalculateDdpRateSoapOut">
|
2141
|
+
<wsdl:part name="parameters" element="tns:CalculateDdpRateResponse" />
|
2142
|
+
</wsdl:message>
|
2143
|
+
<wsdl:message name="CalculateDdpRateXMLSoapIn">
|
2144
|
+
<wsdl:part name="parameters" element="tns:CalculateDdpRateXML" />
|
2145
|
+
</wsdl:message>
|
2146
|
+
<wsdl:message name="CalculateDdpRateXMLSoapOut">
|
2147
|
+
<wsdl:part name="parameters" element="tns:CalculateDdpRateXMLResponse" />
|
2148
|
+
</wsdl:message>
|
2149
|
+
<wsdl:message name="CalculatePostageRateSoapIn">
|
2150
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRate" />
|
2151
|
+
</wsdl:message>
|
2152
|
+
<wsdl:message name="CalculatePostageRateSoapOut">
|
2153
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRateResponse" />
|
2154
|
+
</wsdl:message>
|
2155
|
+
<wsdl:message name="CalculatePostageRateXMLSoapIn">
|
2156
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRateXML" />
|
2157
|
+
</wsdl:message>
|
2158
|
+
<wsdl:message name="CalculatePostageRateXMLSoapOut">
|
2159
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRateXMLResponse" />
|
2160
|
+
</wsdl:message>
|
2161
|
+
<wsdl:message name="ChangePassPhraseSoapIn">
|
2162
|
+
<wsdl:part name="parameters" element="tns:ChangePassPhrase" />
|
2163
|
+
</wsdl:message>
|
2164
|
+
<wsdl:message name="ChangePassPhraseSoapOut">
|
2165
|
+
<wsdl:part name="parameters" element="tns:ChangePassPhraseResponse" />
|
2166
|
+
</wsdl:message>
|
2167
|
+
<wsdl:message name="ChangePassPhraseXMLSoapIn">
|
2168
|
+
<wsdl:part name="parameters" element="tns:ChangePassPhraseXML" />
|
2169
|
+
</wsdl:message>
|
2170
|
+
<wsdl:message name="ChangePassPhraseXMLSoapOut">
|
2171
|
+
<wsdl:part name="parameters" element="tns:ChangePassPhraseXMLResponse" />
|
2172
|
+
</wsdl:message>
|
2173
|
+
<wsdl:message name="CalculatePostageRatesSoapIn">
|
2174
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRates" />
|
2175
|
+
</wsdl:message>
|
2176
|
+
<wsdl:message name="CalculatePostageRatesSoapOut">
|
2177
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRatesResponse" />
|
2178
|
+
</wsdl:message>
|
2179
|
+
<wsdl:message name="CalculatePostageRatesXMLSoapIn">
|
2180
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRatesXML" />
|
2181
|
+
</wsdl:message>
|
2182
|
+
<wsdl:message name="CalculatePostageRatesXMLSoapOut">
|
2183
|
+
<wsdl:part name="parameters" element="tns:CalculatePostageRatesXMLResponse" />
|
2184
|
+
</wsdl:message>
|
2185
|
+
<wsdl:message name="CreateDhlgmManifestSoapIn">
|
2186
|
+
<wsdl:part name="parameters" element="tns:CreateDhlgmManifest" />
|
2187
|
+
</wsdl:message>
|
2188
|
+
<wsdl:message name="CreateDhlgmManifestSoapOut">
|
2189
|
+
<wsdl:part name="parameters" element="tns:CreateDhlgmManifestResponse" />
|
2190
|
+
</wsdl:message>
|
2191
|
+
<wsdl:message name="CreateDhlgmManifestXMLSoapIn">
|
2192
|
+
<wsdl:part name="parameters" element="tns:CreateDhlgmManifestXML" />
|
2193
|
+
</wsdl:message>
|
2194
|
+
<wsdl:message name="CreateDhlgmManifestXMLSoapOut">
|
2195
|
+
<wsdl:part name="parameters" element="tns:CreateDhlgmManifestXMLResponse" />
|
2196
|
+
</wsdl:message>
|
2197
|
+
<wsdl:message name="StatusRequestSoapIn">
|
2198
|
+
<wsdl:part name="parameters" element="tns:StatusRequest" />
|
2199
|
+
</wsdl:message>
|
2200
|
+
<wsdl:message name="StatusRequestSoapOut">
|
2201
|
+
<wsdl:part name="parameters" element="tns:StatusRequestResponse" />
|
2202
|
+
</wsdl:message>
|
2203
|
+
<wsdl:message name="StatusRequestXMLSoapIn">
|
2204
|
+
<wsdl:part name="parameters" element="tns:StatusRequestXML" />
|
2205
|
+
</wsdl:message>
|
2206
|
+
<wsdl:message name="StatusRequestXMLSoapOut">
|
2207
|
+
<wsdl:part name="parameters" element="tns:StatusRequestXMLResponse" />
|
2208
|
+
</wsdl:message>
|
2209
|
+
<wsdl:message name="GetRetailAccountsSoapIn">
|
2210
|
+
<wsdl:part name="parameters" element="tns:GetRetailAccounts" />
|
2211
|
+
</wsdl:message>
|
2212
|
+
<wsdl:message name="GetRetailAccountsSoapOut">
|
2213
|
+
<wsdl:part name="parameters" element="tns:GetRetailAccountsResponse" />
|
2214
|
+
</wsdl:message>
|
2215
|
+
<wsdl:message name="GetRetailAccountsXMLSoapIn">
|
2216
|
+
<wsdl:part name="parameters" element="tns:GetRetailAccountsXML" />
|
2217
|
+
</wsdl:message>
|
2218
|
+
<wsdl:message name="GetRetailAccountsXMLSoapOut">
|
2219
|
+
<wsdl:part name="parameters" element="tns:GetRetailAccountsXMLResponse" />
|
2220
|
+
</wsdl:message>
|
2221
|
+
<wsdl:message name="GetUserSignUpSoapIn">
|
2222
|
+
<wsdl:part name="parameters" element="tns:GetUserSignUp" />
|
2223
|
+
</wsdl:message>
|
2224
|
+
<wsdl:message name="GetUserSignUpSoapOut">
|
2225
|
+
<wsdl:part name="parameters" element="tns:GetUserSignUpResponse" />
|
2226
|
+
</wsdl:message>
|
2227
|
+
<wsdl:message name="GetUserSignUpXMLSoapIn">
|
2228
|
+
<wsdl:part name="parameters" element="tns:GetUserSignUpXML" />
|
2229
|
+
</wsdl:message>
|
2230
|
+
<wsdl:message name="GetUserSignUpXMLSoapOut">
|
2231
|
+
<wsdl:part name="parameters" element="tns:GetUserSignUpXMLResponse" />
|
2232
|
+
</wsdl:message>
|
2233
|
+
<wsdl:message name="GetTransactionsListingSoapIn">
|
2234
|
+
<wsdl:part name="parameters" element="tns:GetTransactionsListing" />
|
2235
|
+
</wsdl:message>
|
2236
|
+
<wsdl:message name="GetTransactionsListingSoapOut">
|
2237
|
+
<wsdl:part name="parameters" element="tns:GetTransactionsListingResponse" />
|
2238
|
+
</wsdl:message>
|
2239
|
+
<wsdl:message name="GetTransactionsListingXMLSoapIn">
|
2240
|
+
<wsdl:part name="parameters" element="tns:GetTransactionsListingXML" />
|
2241
|
+
</wsdl:message>
|
2242
|
+
<wsdl:message name="GetTransactionsListingXMLSoapOut">
|
2243
|
+
<wsdl:part name="parameters" element="tns:GetTransactionsListingXMLResponse" />
|
2244
|
+
</wsdl:message>
|
2245
|
+
<wsdl:message name="GetPackagePickupChangeSoapIn">
|
2246
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupChange" />
|
2247
|
+
</wsdl:message>
|
2248
|
+
<wsdl:message name="GetPackagePickupChangeSoapOut">
|
2249
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupChangeResponse" />
|
2250
|
+
</wsdl:message>
|
2251
|
+
<wsdl:message name="GetPackagePickupChangeXMLSoapIn">
|
2252
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupChangeXML" />
|
2253
|
+
</wsdl:message>
|
2254
|
+
<wsdl:message name="GetPackagePickupChangeXMLSoapOut">
|
2255
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupChangeXMLResponse" />
|
2256
|
+
</wsdl:message>
|
2257
|
+
<wsdl:message name="GetPackagePickupAvailabilitySoapIn">
|
2258
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupAvailability" />
|
2259
|
+
</wsdl:message>
|
2260
|
+
<wsdl:message name="GetPackagePickupAvailabilitySoapOut">
|
2261
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupAvailabilityResponse" />
|
2262
|
+
</wsdl:message>
|
2263
|
+
<wsdl:message name="GetPackagePickupAvailabilityXMLSoapIn">
|
2264
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupAvailabilityXML" />
|
2265
|
+
</wsdl:message>
|
2266
|
+
<wsdl:message name="GetPackagePickupAvailabilityXMLSoapOut">
|
2267
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupAvailabilityXMLResponse" />
|
2268
|
+
</wsdl:message>
|
2269
|
+
<wsdl:message name="GetPackagePickupSoapIn">
|
2270
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickup" />
|
2271
|
+
</wsdl:message>
|
2272
|
+
<wsdl:message name="GetPackagePickupSoapOut">
|
2273
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupResponse" />
|
2274
|
+
</wsdl:message>
|
2275
|
+
<wsdl:message name="GetPackagePickupXMLSoapIn">
|
2276
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupXML" />
|
2277
|
+
</wsdl:message>
|
2278
|
+
<wsdl:message name="GetPackagePickupXMLSoapOut">
|
2279
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupXMLResponse" />
|
2280
|
+
</wsdl:message>
|
2281
|
+
<wsdl:message name="GetPackagePickupCancelSoapIn">
|
2282
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupCancel" />
|
2283
|
+
</wsdl:message>
|
2284
|
+
<wsdl:message name="GetPackagePickupCancelSoapOut">
|
2285
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupCancelResponse" />
|
2286
|
+
</wsdl:message>
|
2287
|
+
<wsdl:message name="GetPackagePickupCancelXMLSoapIn">
|
2288
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupCancelXML" />
|
2289
|
+
</wsdl:message>
|
2290
|
+
<wsdl:message name="GetPackagePickupCancelXMLSoapOut">
|
2291
|
+
<wsdl:part name="parameters" element="tns:GetPackagePickupCancelXMLResponse" />
|
2292
|
+
</wsdl:message>
|
2293
|
+
<wsdl:message name="GetPostageRateTableSoapIn">
|
2294
|
+
<wsdl:part name="parameters" element="tns:GetPostageRateTable" />
|
2295
|
+
</wsdl:message>
|
2296
|
+
<wsdl:message name="GetPostageRateTableSoapOut">
|
2297
|
+
<wsdl:part name="parameters" element="tns:GetPostageRateTableResponse" />
|
2298
|
+
</wsdl:message>
|
2299
|
+
<wsdl:message name="GetPostageRateTableXMLSoapIn">
|
2300
|
+
<wsdl:part name="parameters" element="tns:GetPostageRateTableXML" />
|
2301
|
+
</wsdl:message>
|
2302
|
+
<wsdl:message name="GetPostageRateTableXMLSoapOut">
|
2303
|
+
<wsdl:part name="parameters" element="tns:GetPostageRateTableXMLResponse" />
|
2304
|
+
</wsdl:message>
|
2305
|
+
<wsdl:message name="GetSCANSoapIn">
|
2306
|
+
<wsdl:part name="parameters" element="tns:GetSCAN" />
|
2307
|
+
</wsdl:message>
|
2308
|
+
<wsdl:message name="GetSCANSoapOut">
|
2309
|
+
<wsdl:part name="parameters" element="tns:GetSCANResponse" />
|
2310
|
+
</wsdl:message>
|
2311
|
+
<wsdl:message name="GetSCANXMLSoapIn">
|
2312
|
+
<wsdl:part name="parameters" element="tns:GetSCANXML" />
|
2313
|
+
</wsdl:message>
|
2314
|
+
<wsdl:message name="GetSCANXMLSoapOut">
|
2315
|
+
<wsdl:part name="parameters" element="tns:GetSCANXMLResponse" />
|
2316
|
+
</wsdl:message>
|
2317
|
+
<wsdl:message name="GetRefundSoapIn">
|
2318
|
+
<wsdl:part name="parameters" element="tns:GetRefund" />
|
2319
|
+
</wsdl:message>
|
2320
|
+
<wsdl:message name="GetRefundSoapOut">
|
2321
|
+
<wsdl:part name="parameters" element="tns:GetRefundResponse" />
|
2322
|
+
</wsdl:message>
|
2323
|
+
<wsdl:message name="GetRefundXMLHttpGetIn">
|
2324
|
+
<wsdl:part name="refundRequestXML" type="s:string" />
|
2325
|
+
</wsdl:message>
|
2326
|
+
<wsdl:message name="GetRefundXMLHttpGetOut">
|
2327
|
+
<wsdl:part name="Body" element="tns:RefundResponse" />
|
2328
|
+
</wsdl:message>
|
2329
|
+
<wsdl:message name="ResetSuspendedAccountXMLHttpGetIn">
|
2330
|
+
<wsdl:part name="resetSuspendedAccountRequestXML" type="s:string" />
|
2331
|
+
</wsdl:message>
|
2332
|
+
<wsdl:message name="ResetSuspendedAccountXMLHttpGetOut">
|
2333
|
+
<wsdl:part name="Body" element="tns:ResetSuspendedAccountRequestResponse" />
|
2334
|
+
</wsdl:message>
|
2335
|
+
<wsdl:message name="GetChallengeQuestionXMLHttpGetIn">
|
2336
|
+
<wsdl:part name="challengeQuestionRequestXML" type="s:string" />
|
2337
|
+
</wsdl:message>
|
2338
|
+
<wsdl:message name="GetChallengeQuestionXMLHttpGetOut">
|
2339
|
+
<wsdl:part name="Body" element="tns:ChallengeQuestionResponse" />
|
2340
|
+
</wsdl:message>
|
2341
|
+
<wsdl:message name="GetAccountStatusXMLHttpGetIn">
|
2342
|
+
<wsdl:part name="accountStatusRequestXML" type="s:string" />
|
2343
|
+
</wsdl:message>
|
2344
|
+
<wsdl:message name="GetAccountStatusXMLHttpGetOut">
|
2345
|
+
<wsdl:part name="Body" element="tns:AccountStatusResponse" />
|
2346
|
+
</wsdl:message>
|
2347
|
+
<wsdl:message name="GetPostageLabelXMLHttpGetIn">
|
2348
|
+
<wsdl:part name="labelRequestXML" type="s:string" />
|
2349
|
+
</wsdl:message>
|
2350
|
+
<wsdl:message name="GetPostageLabelXMLHttpGetOut">
|
2351
|
+
<wsdl:part name="Body" element="tns:LabelRequestResponse" />
|
2352
|
+
</wsdl:message>
|
2353
|
+
<wsdl:message name="GetVersionHttpGetIn" />
|
2354
|
+
<wsdl:message name="GetVersionHttpGetOut">
|
2355
|
+
<wsdl:part name="Body" element="tns:GetVersionResults" />
|
2356
|
+
</wsdl:message>
|
2357
|
+
<wsdl:message name="GetVersionXMLHttpGetIn" />
|
2358
|
+
<wsdl:message name="GetVersionXMLHttpGetOut">
|
2359
|
+
<wsdl:part name="Body" element="tns:GetVersionResults" />
|
2360
|
+
</wsdl:message>
|
2361
|
+
<wsdl:message name="VoideVSLabelXMLHttpGetIn">
|
2362
|
+
<wsdl:part name="voidLabelRequestXML" type="s:string" />
|
2363
|
+
</wsdl:message>
|
2364
|
+
<wsdl:message name="VoideVSLabelXMLHttpGetOut">
|
2365
|
+
<wsdl:part name="Body" element="tns:VoidLabelResponse" />
|
2366
|
+
</wsdl:message>
|
2367
|
+
<wsdl:message name="BuyPostageXMLHttpGetIn">
|
2368
|
+
<wsdl:part name="recreditRequestXML" type="s:string" />
|
2369
|
+
</wsdl:message>
|
2370
|
+
<wsdl:message name="BuyPostageXMLHttpGetOut">
|
2371
|
+
<wsdl:part name="Body" element="tns:RecreditRequestResponse" />
|
2372
|
+
</wsdl:message>
|
2373
|
+
<wsdl:message name="CalculateDdpRateXMLHttpGetIn">
|
2374
|
+
<wsdl:part name="ddpRateRequest" type="s:string" />
|
2375
|
+
</wsdl:message>
|
2376
|
+
<wsdl:message name="CalculateDdpRateXMLHttpGetOut">
|
2377
|
+
<wsdl:part name="Body" element="tns:DdpRateResponse" />
|
2378
|
+
</wsdl:message>
|
2379
|
+
<wsdl:message name="CalculatePostageRateXMLHttpGetIn">
|
2380
|
+
<wsdl:part name="postageRateRequestXML" type="s:string" />
|
2381
|
+
</wsdl:message>
|
2382
|
+
<wsdl:message name="CalculatePostageRateXMLHttpGetOut">
|
2383
|
+
<wsdl:part name="Body" element="tns:PostageRateResponse" />
|
2384
|
+
</wsdl:message>
|
2385
|
+
<wsdl:message name="ChangePassPhraseXMLHttpGetIn">
|
2386
|
+
<wsdl:part name="changePassPhraseRequestXML" type="s:string" />
|
2387
|
+
</wsdl:message>
|
2388
|
+
<wsdl:message name="ChangePassPhraseXMLHttpGetOut">
|
2389
|
+
<wsdl:part name="Body" element="tns:ChangePassPhraseRequestResponse" />
|
2390
|
+
</wsdl:message>
|
2391
|
+
<wsdl:message name="CalculatePostageRatesXMLHttpGetIn">
|
2392
|
+
<wsdl:part name="postageRatesRequestXML" type="s:string" />
|
2393
|
+
</wsdl:message>
|
2394
|
+
<wsdl:message name="CalculatePostageRatesXMLHttpGetOut">
|
2395
|
+
<wsdl:part name="Body" element="tns:PostageRatesResponse" />
|
2396
|
+
</wsdl:message>
|
2397
|
+
<wsdl:message name="CreateDhlgmManifestXMLHttpGetIn">
|
2398
|
+
<wsdl:part name="createDhlgmManifestRequestXML" type="s:string" />
|
2399
|
+
</wsdl:message>
|
2400
|
+
<wsdl:message name="CreateDhlgmManifestXMLHttpGetOut">
|
2401
|
+
<wsdl:part name="Body" element="tns:DhlgmManifestResponse" />
|
2402
|
+
</wsdl:message>
|
2403
|
+
<wsdl:message name="StatusRequestXMLHttpGetIn">
|
2404
|
+
<wsdl:part name="packageStatusRequestXML" type="s:string" />
|
2405
|
+
</wsdl:message>
|
2406
|
+
<wsdl:message name="StatusRequestXMLHttpGetOut">
|
2407
|
+
<wsdl:part name="Body" element="tns:PackageStatusResponse" />
|
2408
|
+
</wsdl:message>
|
2409
|
+
<wsdl:message name="GetRetailAccountsXMLHttpGetIn">
|
2410
|
+
<wsdl:part name="retailAccountsRequestXML" type="s:string" />
|
2411
|
+
</wsdl:message>
|
2412
|
+
<wsdl:message name="GetRetailAccountsXMLHttpGetOut">
|
2413
|
+
<wsdl:part name="Body" element="tns:RetailAccountsResponse" />
|
2414
|
+
</wsdl:message>
|
2415
|
+
<wsdl:message name="GetUserSignUpXMLHttpGetIn">
|
2416
|
+
<wsdl:part name="userSignUpRequestXML" type="s:string" />
|
2417
|
+
</wsdl:message>
|
2418
|
+
<wsdl:message name="GetUserSignUpXMLHttpGetOut">
|
2419
|
+
<wsdl:part name="Body" element="tns:UserSignUpResponse" />
|
2420
|
+
</wsdl:message>
|
2421
|
+
<wsdl:message name="GetTransactionsListingXMLHttpGetIn">
|
2422
|
+
<wsdl:part name="transactionsRequestXML" type="s:string" />
|
2423
|
+
</wsdl:message>
|
2424
|
+
<wsdl:message name="GetTransactionsListingXMLHttpGetOut">
|
2425
|
+
<wsdl:part name="Body" element="tns:TransactionsListingResponse" />
|
2426
|
+
</wsdl:message>
|
2427
|
+
<wsdl:message name="GetPackagePickupChangeXMLHttpGetIn">
|
2428
|
+
<wsdl:part name="packagePickupChangeRequestXML" type="s:string" />
|
2429
|
+
</wsdl:message>
|
2430
|
+
<wsdl:message name="GetPackagePickupChangeXMLHttpGetOut">
|
2431
|
+
<wsdl:part name="Body" element="tns:PackagePickupChangeResponse" />
|
2432
|
+
</wsdl:message>
|
2433
|
+
<wsdl:message name="GetPackagePickupAvailabilityXMLHttpGetIn">
|
2434
|
+
<wsdl:part name="packagePickupAvailabilityRequestXML" type="s:string" />
|
2435
|
+
</wsdl:message>
|
2436
|
+
<wsdl:message name="GetPackagePickupAvailabilityXMLHttpGetOut">
|
2437
|
+
<wsdl:part name="Body" element="tns:PackagePickupAvailabilityResponse" />
|
2438
|
+
</wsdl:message>
|
2439
|
+
<wsdl:message name="GetPackagePickupXMLHttpGetIn">
|
2440
|
+
<wsdl:part name="packagePickupRequestXML" type="s:string" />
|
2441
|
+
</wsdl:message>
|
2442
|
+
<wsdl:message name="GetPackagePickupXMLHttpGetOut">
|
2443
|
+
<wsdl:part name="Body" element="tns:PackagePickupResponse" />
|
2444
|
+
</wsdl:message>
|
2445
|
+
<wsdl:message name="GetPackagePickupCancelXMLHttpGetIn">
|
2446
|
+
<wsdl:part name="packagePickupCancelRequestXML" type="s:string" />
|
2447
|
+
</wsdl:message>
|
2448
|
+
<wsdl:message name="GetPackagePickupCancelXMLHttpGetOut">
|
2449
|
+
<wsdl:part name="Body" element="tns:PackagePickupCancelResponse" />
|
2450
|
+
</wsdl:message>
|
2451
|
+
<wsdl:message name="GetPostageRateTableXMLHttpGetIn">
|
2452
|
+
<wsdl:part name="postageRateRequestXML" type="s:string" />
|
2453
|
+
</wsdl:message>
|
2454
|
+
<wsdl:message name="GetPostageRateTableXMLHttpGetOut">
|
2455
|
+
<wsdl:part name="Body" element="tns:PostageRateTableResponse" />
|
2456
|
+
</wsdl:message>
|
2457
|
+
<wsdl:message name="GetSCANXMLHttpGetIn">
|
2458
|
+
<wsdl:part name="scanRequestXML" type="s:string" />
|
2459
|
+
</wsdl:message>
|
2460
|
+
<wsdl:message name="GetSCANXMLHttpGetOut">
|
2461
|
+
<wsdl:part name="Body" element="tns:SCANResponse" />
|
2462
|
+
</wsdl:message>
|
2463
|
+
<wsdl:message name="GetRefundXMLHttpPostIn">
|
2464
|
+
<wsdl:part name="refundRequestXML" type="s:string" />
|
2465
|
+
</wsdl:message>
|
2466
|
+
<wsdl:message name="GetRefundXMLHttpPostOut">
|
2467
|
+
<wsdl:part name="Body" element="tns:RefundResponse" />
|
2468
|
+
</wsdl:message>
|
2469
|
+
<wsdl:message name="ResetSuspendedAccountXMLHttpPostIn">
|
2470
|
+
<wsdl:part name="resetSuspendedAccountRequestXML" type="s:string" />
|
2471
|
+
</wsdl:message>
|
2472
|
+
<wsdl:message name="ResetSuspendedAccountXMLHttpPostOut">
|
2473
|
+
<wsdl:part name="Body" element="tns:ResetSuspendedAccountRequestResponse" />
|
2474
|
+
</wsdl:message>
|
2475
|
+
<wsdl:message name="GetChallengeQuestionXMLHttpPostIn">
|
2476
|
+
<wsdl:part name="challengeQuestionRequestXML" type="s:string" />
|
2477
|
+
</wsdl:message>
|
2478
|
+
<wsdl:message name="GetChallengeQuestionXMLHttpPostOut">
|
2479
|
+
<wsdl:part name="Body" element="tns:ChallengeQuestionResponse" />
|
2480
|
+
</wsdl:message>
|
2481
|
+
<wsdl:message name="GetAccountStatusXMLHttpPostIn">
|
2482
|
+
<wsdl:part name="accountStatusRequestXML" type="s:string" />
|
2483
|
+
</wsdl:message>
|
2484
|
+
<wsdl:message name="GetAccountStatusXMLHttpPostOut">
|
2485
|
+
<wsdl:part name="Body" element="tns:AccountStatusResponse" />
|
2486
|
+
</wsdl:message>
|
2487
|
+
<wsdl:message name="GetPostageLabelXMLHttpPostIn">
|
2488
|
+
<wsdl:part name="labelRequestXML" type="s:string" />
|
2489
|
+
</wsdl:message>
|
2490
|
+
<wsdl:message name="GetPostageLabelXMLHttpPostOut">
|
2491
|
+
<wsdl:part name="Body" element="tns:LabelRequestResponse" />
|
2492
|
+
</wsdl:message>
|
2493
|
+
<wsdl:message name="GetVersionHttpPostIn" />
|
2494
|
+
<wsdl:message name="GetVersionHttpPostOut">
|
2495
|
+
<wsdl:part name="Body" element="tns:GetVersionResults" />
|
2496
|
+
</wsdl:message>
|
2497
|
+
<wsdl:message name="GetVersionXMLHttpPostIn" />
|
2498
|
+
<wsdl:message name="GetVersionXMLHttpPostOut">
|
2499
|
+
<wsdl:part name="Body" element="tns:GetVersionResults" />
|
2500
|
+
</wsdl:message>
|
2501
|
+
<wsdl:message name="VoideVSLabelXMLHttpPostIn">
|
2502
|
+
<wsdl:part name="voidLabelRequestXML" type="s:string" />
|
2503
|
+
</wsdl:message>
|
2504
|
+
<wsdl:message name="VoideVSLabelXMLHttpPostOut">
|
2505
|
+
<wsdl:part name="Body" element="tns:VoidLabelResponse" />
|
2506
|
+
</wsdl:message>
|
2507
|
+
<wsdl:message name="BuyPostageXMLHttpPostIn">
|
2508
|
+
<wsdl:part name="recreditRequestXML" type="s:string" />
|
2509
|
+
</wsdl:message>
|
2510
|
+
<wsdl:message name="BuyPostageXMLHttpPostOut">
|
2511
|
+
<wsdl:part name="Body" element="tns:RecreditRequestResponse" />
|
2512
|
+
</wsdl:message>
|
2513
|
+
<wsdl:message name="CalculateDdpRateXMLHttpPostIn">
|
2514
|
+
<wsdl:part name="ddpRateRequest" type="s:string" />
|
2515
|
+
</wsdl:message>
|
2516
|
+
<wsdl:message name="CalculateDdpRateXMLHttpPostOut">
|
2517
|
+
<wsdl:part name="Body" element="tns:DdpRateResponse" />
|
2518
|
+
</wsdl:message>
|
2519
|
+
<wsdl:message name="CalculatePostageRateXMLHttpPostIn">
|
2520
|
+
<wsdl:part name="postageRateRequestXML" type="s:string" />
|
2521
|
+
</wsdl:message>
|
2522
|
+
<wsdl:message name="CalculatePostageRateXMLHttpPostOut">
|
2523
|
+
<wsdl:part name="Body" element="tns:PostageRateResponse" />
|
2524
|
+
</wsdl:message>
|
2525
|
+
<wsdl:message name="ChangePassPhraseXMLHttpPostIn">
|
2526
|
+
<wsdl:part name="changePassPhraseRequestXML" type="s:string" />
|
2527
|
+
</wsdl:message>
|
2528
|
+
<wsdl:message name="ChangePassPhraseXMLHttpPostOut">
|
2529
|
+
<wsdl:part name="Body" element="tns:ChangePassPhraseRequestResponse" />
|
2530
|
+
</wsdl:message>
|
2531
|
+
<wsdl:message name="CalculatePostageRatesXMLHttpPostIn">
|
2532
|
+
<wsdl:part name="postageRatesRequestXML" type="s:string" />
|
2533
|
+
</wsdl:message>
|
2534
|
+
<wsdl:message name="CalculatePostageRatesXMLHttpPostOut">
|
2535
|
+
<wsdl:part name="Body" element="tns:PostageRatesResponse" />
|
2536
|
+
</wsdl:message>
|
2537
|
+
<wsdl:message name="CreateDhlgmManifestXMLHttpPostIn">
|
2538
|
+
<wsdl:part name="createDhlgmManifestRequestXML" type="s:string" />
|
2539
|
+
</wsdl:message>
|
2540
|
+
<wsdl:message name="CreateDhlgmManifestXMLHttpPostOut">
|
2541
|
+
<wsdl:part name="Body" element="tns:DhlgmManifestResponse" />
|
2542
|
+
</wsdl:message>
|
2543
|
+
<wsdl:message name="StatusRequestXMLHttpPostIn">
|
2544
|
+
<wsdl:part name="packageStatusRequestXML" type="s:string" />
|
2545
|
+
</wsdl:message>
|
2546
|
+
<wsdl:message name="StatusRequestXMLHttpPostOut">
|
2547
|
+
<wsdl:part name="Body" element="tns:PackageStatusResponse" />
|
2548
|
+
</wsdl:message>
|
2549
|
+
<wsdl:message name="GetRetailAccountsXMLHttpPostIn">
|
2550
|
+
<wsdl:part name="retailAccountsRequestXML" type="s:string" />
|
2551
|
+
</wsdl:message>
|
2552
|
+
<wsdl:message name="GetRetailAccountsXMLHttpPostOut">
|
2553
|
+
<wsdl:part name="Body" element="tns:RetailAccountsResponse" />
|
2554
|
+
</wsdl:message>
|
2555
|
+
<wsdl:message name="GetUserSignUpXMLHttpPostIn">
|
2556
|
+
<wsdl:part name="userSignUpRequestXML" type="s:string" />
|
2557
|
+
</wsdl:message>
|
2558
|
+
<wsdl:message name="GetUserSignUpXMLHttpPostOut">
|
2559
|
+
<wsdl:part name="Body" element="tns:UserSignUpResponse" />
|
2560
|
+
</wsdl:message>
|
2561
|
+
<wsdl:message name="GetTransactionsListingXMLHttpPostIn">
|
2562
|
+
<wsdl:part name="transactionsRequestXML" type="s:string" />
|
2563
|
+
</wsdl:message>
|
2564
|
+
<wsdl:message name="GetTransactionsListingXMLHttpPostOut">
|
2565
|
+
<wsdl:part name="Body" element="tns:TransactionsListingResponse" />
|
2566
|
+
</wsdl:message>
|
2567
|
+
<wsdl:message name="GetPackagePickupChangeXMLHttpPostIn">
|
2568
|
+
<wsdl:part name="packagePickupChangeRequestXML" type="s:string" />
|
2569
|
+
</wsdl:message>
|
2570
|
+
<wsdl:message name="GetPackagePickupChangeXMLHttpPostOut">
|
2571
|
+
<wsdl:part name="Body" element="tns:PackagePickupChangeResponse" />
|
2572
|
+
</wsdl:message>
|
2573
|
+
<wsdl:message name="GetPackagePickupAvailabilityXMLHttpPostIn">
|
2574
|
+
<wsdl:part name="packagePickupAvailabilityRequestXML" type="s:string" />
|
2575
|
+
</wsdl:message>
|
2576
|
+
<wsdl:message name="GetPackagePickupAvailabilityXMLHttpPostOut">
|
2577
|
+
<wsdl:part name="Body" element="tns:PackagePickupAvailabilityResponse" />
|
2578
|
+
</wsdl:message>
|
2579
|
+
<wsdl:message name="GetPackagePickupXMLHttpPostIn">
|
2580
|
+
<wsdl:part name="packagePickupRequestXML" type="s:string" />
|
2581
|
+
</wsdl:message>
|
2582
|
+
<wsdl:message name="GetPackagePickupXMLHttpPostOut">
|
2583
|
+
<wsdl:part name="Body" element="tns:PackagePickupResponse" />
|
2584
|
+
</wsdl:message>
|
2585
|
+
<wsdl:message name="GetPackagePickupCancelXMLHttpPostIn">
|
2586
|
+
<wsdl:part name="packagePickupCancelRequestXML" type="s:string" />
|
2587
|
+
</wsdl:message>
|
2588
|
+
<wsdl:message name="GetPackagePickupCancelXMLHttpPostOut">
|
2589
|
+
<wsdl:part name="Body" element="tns:PackagePickupCancelResponse" />
|
2590
|
+
</wsdl:message>
|
2591
|
+
<wsdl:message name="GetPostageRateTableXMLHttpPostIn">
|
2592
|
+
<wsdl:part name="postageRateRequestXML" type="s:string" />
|
2593
|
+
</wsdl:message>
|
2594
|
+
<wsdl:message name="GetPostageRateTableXMLHttpPostOut">
|
2595
|
+
<wsdl:part name="Body" element="tns:PostageRateTableResponse" />
|
2596
|
+
</wsdl:message>
|
2597
|
+
<wsdl:message name="GetSCANXMLHttpPostIn">
|
2598
|
+
<wsdl:part name="scanRequestXML" type="s:string" />
|
2599
|
+
</wsdl:message>
|
2600
|
+
<wsdl:message name="GetSCANXMLHttpPostOut">
|
2601
|
+
<wsdl:part name="Body" element="tns:SCANResponse" />
|
2602
|
+
</wsdl:message>
|
2603
|
+
<wsdl:portType name="EwsLabelServiceSoap">
|
2604
|
+
<wsdl:operation name="GetRefundXML">
|
2605
|
+
<wsdl:input message="tns:GetRefundXMLSoapIn" />
|
2606
|
+
<wsdl:output message="tns:GetRefundXMLSoapOut" />
|
2607
|
+
</wsdl:operation>
|
2608
|
+
<wsdl:operation name="ResetSuspendedAccount">
|
2609
|
+
<wsdl:input message="tns:ResetSuspendedAccountSoapIn" />
|
2610
|
+
<wsdl:output message="tns:ResetSuspendedAccountSoapOut" />
|
2611
|
+
</wsdl:operation>
|
2612
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
2613
|
+
<wsdl:input message="tns:ResetSuspendedAccountXMLSoapIn" />
|
2614
|
+
<wsdl:output message="tns:ResetSuspendedAccountXMLSoapOut" />
|
2615
|
+
</wsdl:operation>
|
2616
|
+
<wsdl:operation name="GetChallengeQuestion">
|
2617
|
+
<wsdl:input message="tns:GetChallengeQuestionSoapIn" />
|
2618
|
+
<wsdl:output message="tns:GetChallengeQuestionSoapOut" />
|
2619
|
+
</wsdl:operation>
|
2620
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
2621
|
+
<wsdl:input message="tns:GetChallengeQuestionXMLSoapIn" />
|
2622
|
+
<wsdl:output message="tns:GetChallengeQuestionXMLSoapOut" />
|
2623
|
+
</wsdl:operation>
|
2624
|
+
<wsdl:operation name="GetAccountStatus">
|
2625
|
+
<wsdl:input message="tns:GetAccountStatusSoapIn" />
|
2626
|
+
<wsdl:output message="tns:GetAccountStatusSoapOut" />
|
2627
|
+
</wsdl:operation>
|
2628
|
+
<wsdl:operation name="GetAccountStatusXML">
|
2629
|
+
<wsdl:input message="tns:GetAccountStatusXMLSoapIn" />
|
2630
|
+
<wsdl:output message="tns:GetAccountStatusXMLSoapOut" />
|
2631
|
+
</wsdl:operation>
|
2632
|
+
<wsdl:operation name="GetPostageLabel">
|
2633
|
+
<wsdl:input message="tns:GetPostageLabelSoapIn" />
|
2634
|
+
<wsdl:output message="tns:GetPostageLabelSoapOut" />
|
2635
|
+
</wsdl:operation>
|
2636
|
+
<wsdl:operation name="GetPostageLabelXML">
|
2637
|
+
<wsdl:input message="tns:GetPostageLabelXMLSoapIn" />
|
2638
|
+
<wsdl:output message="tns:GetPostageLabelXMLSoapOut" />
|
2639
|
+
</wsdl:operation>
|
2640
|
+
<wsdl:operation name="GetVersion">
|
2641
|
+
<wsdl:input message="tns:GetVersionSoapIn" />
|
2642
|
+
<wsdl:output message="tns:GetVersionSoapOut" />
|
2643
|
+
</wsdl:operation>
|
2644
|
+
<wsdl:operation name="GetVersionXML">
|
2645
|
+
<wsdl:input message="tns:GetVersionXMLSoapIn" />
|
2646
|
+
<wsdl:output message="tns:GetVersionXMLSoapOut" />
|
2647
|
+
</wsdl:operation>
|
2648
|
+
<wsdl:operation name="VoideVSLabel">
|
2649
|
+
<wsdl:input message="tns:VoideVSLabelSoapIn" />
|
2650
|
+
<wsdl:output message="tns:VoideVSLabelSoapOut" />
|
2651
|
+
</wsdl:operation>
|
2652
|
+
<wsdl:operation name="VoideVSLabelXML">
|
2653
|
+
<wsdl:input message="tns:VoideVSLabelXMLSoapIn" />
|
2654
|
+
<wsdl:output message="tns:VoideVSLabelXMLSoapOut" />
|
2655
|
+
</wsdl:operation>
|
2656
|
+
<wsdl:operation name="BuyPostage">
|
2657
|
+
<wsdl:input message="tns:BuyPostageSoapIn" />
|
2658
|
+
<wsdl:output message="tns:BuyPostageSoapOut" />
|
2659
|
+
</wsdl:operation>
|
2660
|
+
<wsdl:operation name="BuyPostageXML">
|
2661
|
+
<wsdl:input message="tns:BuyPostageXMLSoapIn" />
|
2662
|
+
<wsdl:output message="tns:BuyPostageXMLSoapOut" />
|
2663
|
+
</wsdl:operation>
|
2664
|
+
<wsdl:operation name="CalculateDdpRate">
|
2665
|
+
<wsdl:input message="tns:CalculateDdpRateSoapIn" />
|
2666
|
+
<wsdl:output message="tns:CalculateDdpRateSoapOut" />
|
2667
|
+
</wsdl:operation>
|
2668
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
2669
|
+
<wsdl:input message="tns:CalculateDdpRateXMLSoapIn" />
|
2670
|
+
<wsdl:output message="tns:CalculateDdpRateXMLSoapOut" />
|
2671
|
+
</wsdl:operation>
|
2672
|
+
<wsdl:operation name="CalculatePostageRate">
|
2673
|
+
<wsdl:input message="tns:CalculatePostageRateSoapIn" />
|
2674
|
+
<wsdl:output message="tns:CalculatePostageRateSoapOut" />
|
2675
|
+
</wsdl:operation>
|
2676
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
2677
|
+
<wsdl:input message="tns:CalculatePostageRateXMLSoapIn" />
|
2678
|
+
<wsdl:output message="tns:CalculatePostageRateXMLSoapOut" />
|
2679
|
+
</wsdl:operation>
|
2680
|
+
<wsdl:operation name="ChangePassPhrase">
|
2681
|
+
<wsdl:input message="tns:ChangePassPhraseSoapIn" />
|
2682
|
+
<wsdl:output message="tns:ChangePassPhraseSoapOut" />
|
2683
|
+
</wsdl:operation>
|
2684
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
2685
|
+
<wsdl:input message="tns:ChangePassPhraseXMLSoapIn" />
|
2686
|
+
<wsdl:output message="tns:ChangePassPhraseXMLSoapOut" />
|
2687
|
+
</wsdl:operation>
|
2688
|
+
<wsdl:operation name="CalculatePostageRates">
|
2689
|
+
<wsdl:input message="tns:CalculatePostageRatesSoapIn" />
|
2690
|
+
<wsdl:output message="tns:CalculatePostageRatesSoapOut" />
|
2691
|
+
</wsdl:operation>
|
2692
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
2693
|
+
<wsdl:input message="tns:CalculatePostageRatesXMLSoapIn" />
|
2694
|
+
<wsdl:output message="tns:CalculatePostageRatesXMLSoapOut" />
|
2695
|
+
</wsdl:operation>
|
2696
|
+
<wsdl:operation name="CreateDhlgmManifest">
|
2697
|
+
<wsdl:input message="tns:CreateDhlgmManifestSoapIn" />
|
2698
|
+
<wsdl:output message="tns:CreateDhlgmManifestSoapOut" />
|
2699
|
+
</wsdl:operation>
|
2700
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
2701
|
+
<wsdl:input message="tns:CreateDhlgmManifestXMLSoapIn" />
|
2702
|
+
<wsdl:output message="tns:CreateDhlgmManifestXMLSoapOut" />
|
2703
|
+
</wsdl:operation>
|
2704
|
+
<wsdl:operation name="StatusRequest">
|
2705
|
+
<wsdl:input message="tns:StatusRequestSoapIn" />
|
2706
|
+
<wsdl:output message="tns:StatusRequestSoapOut" />
|
2707
|
+
</wsdl:operation>
|
2708
|
+
<wsdl:operation name="StatusRequestXML">
|
2709
|
+
<wsdl:input message="tns:StatusRequestXMLSoapIn" />
|
2710
|
+
<wsdl:output message="tns:StatusRequestXMLSoapOut" />
|
2711
|
+
</wsdl:operation>
|
2712
|
+
<wsdl:operation name="GetRetailAccounts">
|
2713
|
+
<wsdl:input message="tns:GetRetailAccountsSoapIn" />
|
2714
|
+
<wsdl:output message="tns:GetRetailAccountsSoapOut" />
|
2715
|
+
</wsdl:operation>
|
2716
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
2717
|
+
<wsdl:input message="tns:GetRetailAccountsXMLSoapIn" />
|
2718
|
+
<wsdl:output message="tns:GetRetailAccountsXMLSoapOut" />
|
2719
|
+
</wsdl:operation>
|
2720
|
+
<wsdl:operation name="GetUserSignUp">
|
2721
|
+
<wsdl:input message="tns:GetUserSignUpSoapIn" />
|
2722
|
+
<wsdl:output message="tns:GetUserSignUpSoapOut" />
|
2723
|
+
</wsdl:operation>
|
2724
|
+
<wsdl:operation name="GetUserSignUpXML">
|
2725
|
+
<wsdl:input message="tns:GetUserSignUpXMLSoapIn" />
|
2726
|
+
<wsdl:output message="tns:GetUserSignUpXMLSoapOut" />
|
2727
|
+
</wsdl:operation>
|
2728
|
+
<wsdl:operation name="GetTransactionsListing">
|
2729
|
+
<wsdl:input message="tns:GetTransactionsListingSoapIn" />
|
2730
|
+
<wsdl:output message="tns:GetTransactionsListingSoapOut" />
|
2731
|
+
</wsdl:operation>
|
2732
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
2733
|
+
<wsdl:input message="tns:GetTransactionsListingXMLSoapIn" />
|
2734
|
+
<wsdl:output message="tns:GetTransactionsListingXMLSoapOut" />
|
2735
|
+
</wsdl:operation>
|
2736
|
+
<wsdl:operation name="GetPackagePickupChange">
|
2737
|
+
<wsdl:input message="tns:GetPackagePickupChangeSoapIn" />
|
2738
|
+
<wsdl:output message="tns:GetPackagePickupChangeSoapOut" />
|
2739
|
+
</wsdl:operation>
|
2740
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
2741
|
+
<wsdl:input message="tns:GetPackagePickupChangeXMLSoapIn" />
|
2742
|
+
<wsdl:output message="tns:GetPackagePickupChangeXMLSoapOut" />
|
2743
|
+
</wsdl:operation>
|
2744
|
+
<wsdl:operation name="GetPackagePickupAvailability">
|
2745
|
+
<wsdl:input message="tns:GetPackagePickupAvailabilitySoapIn" />
|
2746
|
+
<wsdl:output message="tns:GetPackagePickupAvailabilitySoapOut" />
|
2747
|
+
</wsdl:operation>
|
2748
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
2749
|
+
<wsdl:input message="tns:GetPackagePickupAvailabilityXMLSoapIn" />
|
2750
|
+
<wsdl:output message="tns:GetPackagePickupAvailabilityXMLSoapOut" />
|
2751
|
+
</wsdl:operation>
|
2752
|
+
<wsdl:operation name="GetPackagePickup">
|
2753
|
+
<wsdl:input message="tns:GetPackagePickupSoapIn" />
|
2754
|
+
<wsdl:output message="tns:GetPackagePickupSoapOut" />
|
2755
|
+
</wsdl:operation>
|
2756
|
+
<wsdl:operation name="GetPackagePickupXML">
|
2757
|
+
<wsdl:input message="tns:GetPackagePickupXMLSoapIn" />
|
2758
|
+
<wsdl:output message="tns:GetPackagePickupXMLSoapOut" />
|
2759
|
+
</wsdl:operation>
|
2760
|
+
<wsdl:operation name="GetPackagePickupCancel">
|
2761
|
+
<wsdl:input message="tns:GetPackagePickupCancelSoapIn" />
|
2762
|
+
<wsdl:output message="tns:GetPackagePickupCancelSoapOut" />
|
2763
|
+
</wsdl:operation>
|
2764
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
2765
|
+
<wsdl:input message="tns:GetPackagePickupCancelXMLSoapIn" />
|
2766
|
+
<wsdl:output message="tns:GetPackagePickupCancelXMLSoapOut" />
|
2767
|
+
</wsdl:operation>
|
2768
|
+
<wsdl:operation name="GetPostageRateTable">
|
2769
|
+
<wsdl:input message="tns:GetPostageRateTableSoapIn" />
|
2770
|
+
<wsdl:output message="tns:GetPostageRateTableSoapOut" />
|
2771
|
+
</wsdl:operation>
|
2772
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
2773
|
+
<wsdl:input message="tns:GetPostageRateTableXMLSoapIn" />
|
2774
|
+
<wsdl:output message="tns:GetPostageRateTableXMLSoapOut" />
|
2775
|
+
</wsdl:operation>
|
2776
|
+
<wsdl:operation name="GetSCAN">
|
2777
|
+
<wsdl:input message="tns:GetSCANSoapIn" />
|
2778
|
+
<wsdl:output message="tns:GetSCANSoapOut" />
|
2779
|
+
</wsdl:operation>
|
2780
|
+
<wsdl:operation name="GetSCANXML">
|
2781
|
+
<wsdl:input message="tns:GetSCANXMLSoapIn" />
|
2782
|
+
<wsdl:output message="tns:GetSCANXMLSoapOut" />
|
2783
|
+
</wsdl:operation>
|
2784
|
+
<wsdl:operation name="GetRefund">
|
2785
|
+
<wsdl:input message="tns:GetRefundSoapIn" />
|
2786
|
+
<wsdl:output message="tns:GetRefundSoapOut" />
|
2787
|
+
</wsdl:operation>
|
2788
|
+
</wsdl:portType>
|
2789
|
+
<wsdl:portType name="EwsLabelServiceHttpGet">
|
2790
|
+
<wsdl:operation name="GetRefundXML">
|
2791
|
+
<wsdl:input message="tns:GetRefundXMLHttpGetIn" />
|
2792
|
+
<wsdl:output message="tns:GetRefundXMLHttpGetOut" />
|
2793
|
+
</wsdl:operation>
|
2794
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
2795
|
+
<wsdl:input message="tns:ResetSuspendedAccountXMLHttpGetIn" />
|
2796
|
+
<wsdl:output message="tns:ResetSuspendedAccountXMLHttpGetOut" />
|
2797
|
+
</wsdl:operation>
|
2798
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
2799
|
+
<wsdl:input message="tns:GetChallengeQuestionXMLHttpGetIn" />
|
2800
|
+
<wsdl:output message="tns:GetChallengeQuestionXMLHttpGetOut" />
|
2801
|
+
</wsdl:operation>
|
2802
|
+
<wsdl:operation name="GetAccountStatusXML">
|
2803
|
+
<wsdl:input message="tns:GetAccountStatusXMLHttpGetIn" />
|
2804
|
+
<wsdl:output message="tns:GetAccountStatusXMLHttpGetOut" />
|
2805
|
+
</wsdl:operation>
|
2806
|
+
<wsdl:operation name="GetPostageLabelXML">
|
2807
|
+
<wsdl:input message="tns:GetPostageLabelXMLHttpGetIn" />
|
2808
|
+
<wsdl:output message="tns:GetPostageLabelXMLHttpGetOut" />
|
2809
|
+
</wsdl:operation>
|
2810
|
+
<wsdl:operation name="GetVersion">
|
2811
|
+
<wsdl:input message="tns:GetVersionHttpGetIn" />
|
2812
|
+
<wsdl:output message="tns:GetVersionHttpGetOut" />
|
2813
|
+
</wsdl:operation>
|
2814
|
+
<wsdl:operation name="GetVersionXML">
|
2815
|
+
<wsdl:input message="tns:GetVersionXMLHttpGetIn" />
|
2816
|
+
<wsdl:output message="tns:GetVersionXMLHttpGetOut" />
|
2817
|
+
</wsdl:operation>
|
2818
|
+
<wsdl:operation name="VoideVSLabelXML">
|
2819
|
+
<wsdl:input message="tns:VoideVSLabelXMLHttpGetIn" />
|
2820
|
+
<wsdl:output message="tns:VoideVSLabelXMLHttpGetOut" />
|
2821
|
+
</wsdl:operation>
|
2822
|
+
<wsdl:operation name="BuyPostageXML">
|
2823
|
+
<wsdl:input message="tns:BuyPostageXMLHttpGetIn" />
|
2824
|
+
<wsdl:output message="tns:BuyPostageXMLHttpGetOut" />
|
2825
|
+
</wsdl:operation>
|
2826
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
2827
|
+
<wsdl:input message="tns:CalculateDdpRateXMLHttpGetIn" />
|
2828
|
+
<wsdl:output message="tns:CalculateDdpRateXMLHttpGetOut" />
|
2829
|
+
</wsdl:operation>
|
2830
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
2831
|
+
<wsdl:input message="tns:CalculatePostageRateXMLHttpGetIn" />
|
2832
|
+
<wsdl:output message="tns:CalculatePostageRateXMLHttpGetOut" />
|
2833
|
+
</wsdl:operation>
|
2834
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
2835
|
+
<wsdl:input message="tns:ChangePassPhraseXMLHttpGetIn" />
|
2836
|
+
<wsdl:output message="tns:ChangePassPhraseXMLHttpGetOut" />
|
2837
|
+
</wsdl:operation>
|
2838
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
2839
|
+
<wsdl:input message="tns:CalculatePostageRatesXMLHttpGetIn" />
|
2840
|
+
<wsdl:output message="tns:CalculatePostageRatesXMLHttpGetOut" />
|
2841
|
+
</wsdl:operation>
|
2842
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
2843
|
+
<wsdl:input message="tns:CreateDhlgmManifestXMLHttpGetIn" />
|
2844
|
+
<wsdl:output message="tns:CreateDhlgmManifestXMLHttpGetOut" />
|
2845
|
+
</wsdl:operation>
|
2846
|
+
<wsdl:operation name="StatusRequestXML">
|
2847
|
+
<wsdl:input message="tns:StatusRequestXMLHttpGetIn" />
|
2848
|
+
<wsdl:output message="tns:StatusRequestXMLHttpGetOut" />
|
2849
|
+
</wsdl:operation>
|
2850
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
2851
|
+
<wsdl:input message="tns:GetRetailAccountsXMLHttpGetIn" />
|
2852
|
+
<wsdl:output message="tns:GetRetailAccountsXMLHttpGetOut" />
|
2853
|
+
</wsdl:operation>
|
2854
|
+
<wsdl:operation name="GetUserSignUpXML">
|
2855
|
+
<wsdl:input message="tns:GetUserSignUpXMLHttpGetIn" />
|
2856
|
+
<wsdl:output message="tns:GetUserSignUpXMLHttpGetOut" />
|
2857
|
+
</wsdl:operation>
|
2858
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
2859
|
+
<wsdl:input message="tns:GetTransactionsListingXMLHttpGetIn" />
|
2860
|
+
<wsdl:output message="tns:GetTransactionsListingXMLHttpGetOut" />
|
2861
|
+
</wsdl:operation>
|
2862
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
2863
|
+
<wsdl:input message="tns:GetPackagePickupChangeXMLHttpGetIn" />
|
2864
|
+
<wsdl:output message="tns:GetPackagePickupChangeXMLHttpGetOut" />
|
2865
|
+
</wsdl:operation>
|
2866
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
2867
|
+
<wsdl:input message="tns:GetPackagePickupAvailabilityXMLHttpGetIn" />
|
2868
|
+
<wsdl:output message="tns:GetPackagePickupAvailabilityXMLHttpGetOut" />
|
2869
|
+
</wsdl:operation>
|
2870
|
+
<wsdl:operation name="GetPackagePickupXML">
|
2871
|
+
<wsdl:input message="tns:GetPackagePickupXMLHttpGetIn" />
|
2872
|
+
<wsdl:output message="tns:GetPackagePickupXMLHttpGetOut" />
|
2873
|
+
</wsdl:operation>
|
2874
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
2875
|
+
<wsdl:input message="tns:GetPackagePickupCancelXMLHttpGetIn" />
|
2876
|
+
<wsdl:output message="tns:GetPackagePickupCancelXMLHttpGetOut" />
|
2877
|
+
</wsdl:operation>
|
2878
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
2879
|
+
<wsdl:input message="tns:GetPostageRateTableXMLHttpGetIn" />
|
2880
|
+
<wsdl:output message="tns:GetPostageRateTableXMLHttpGetOut" />
|
2881
|
+
</wsdl:operation>
|
2882
|
+
<wsdl:operation name="GetSCANXML">
|
2883
|
+
<wsdl:input message="tns:GetSCANXMLHttpGetIn" />
|
2884
|
+
<wsdl:output message="tns:GetSCANXMLHttpGetOut" />
|
2885
|
+
</wsdl:operation>
|
2886
|
+
</wsdl:portType>
|
2887
|
+
<wsdl:portType name="EwsLabelServiceHttpPost">
|
2888
|
+
<wsdl:operation name="GetRefundXML">
|
2889
|
+
<wsdl:input message="tns:GetRefundXMLHttpPostIn" />
|
2890
|
+
<wsdl:output message="tns:GetRefundXMLHttpPostOut" />
|
2891
|
+
</wsdl:operation>
|
2892
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
2893
|
+
<wsdl:input message="tns:ResetSuspendedAccountXMLHttpPostIn" />
|
2894
|
+
<wsdl:output message="tns:ResetSuspendedAccountXMLHttpPostOut" />
|
2895
|
+
</wsdl:operation>
|
2896
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
2897
|
+
<wsdl:input message="tns:GetChallengeQuestionXMLHttpPostIn" />
|
2898
|
+
<wsdl:output message="tns:GetChallengeQuestionXMLHttpPostOut" />
|
2899
|
+
</wsdl:operation>
|
2900
|
+
<wsdl:operation name="GetAccountStatusXML">
|
2901
|
+
<wsdl:input message="tns:GetAccountStatusXMLHttpPostIn" />
|
2902
|
+
<wsdl:output message="tns:GetAccountStatusXMLHttpPostOut" />
|
2903
|
+
</wsdl:operation>
|
2904
|
+
<wsdl:operation name="GetPostageLabelXML">
|
2905
|
+
<wsdl:input message="tns:GetPostageLabelXMLHttpPostIn" />
|
2906
|
+
<wsdl:output message="tns:GetPostageLabelXMLHttpPostOut" />
|
2907
|
+
</wsdl:operation>
|
2908
|
+
<wsdl:operation name="GetVersion">
|
2909
|
+
<wsdl:input message="tns:GetVersionHttpPostIn" />
|
2910
|
+
<wsdl:output message="tns:GetVersionHttpPostOut" />
|
2911
|
+
</wsdl:operation>
|
2912
|
+
<wsdl:operation name="GetVersionXML">
|
2913
|
+
<wsdl:input message="tns:GetVersionXMLHttpPostIn" />
|
2914
|
+
<wsdl:output message="tns:GetVersionXMLHttpPostOut" />
|
2915
|
+
</wsdl:operation>
|
2916
|
+
<wsdl:operation name="VoideVSLabelXML">
|
2917
|
+
<wsdl:input message="tns:VoideVSLabelXMLHttpPostIn" />
|
2918
|
+
<wsdl:output message="tns:VoideVSLabelXMLHttpPostOut" />
|
2919
|
+
</wsdl:operation>
|
2920
|
+
<wsdl:operation name="BuyPostageXML">
|
2921
|
+
<wsdl:input message="tns:BuyPostageXMLHttpPostIn" />
|
2922
|
+
<wsdl:output message="tns:BuyPostageXMLHttpPostOut" />
|
2923
|
+
</wsdl:operation>
|
2924
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
2925
|
+
<wsdl:input message="tns:CalculateDdpRateXMLHttpPostIn" />
|
2926
|
+
<wsdl:output message="tns:CalculateDdpRateXMLHttpPostOut" />
|
2927
|
+
</wsdl:operation>
|
2928
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
2929
|
+
<wsdl:input message="tns:CalculatePostageRateXMLHttpPostIn" />
|
2930
|
+
<wsdl:output message="tns:CalculatePostageRateXMLHttpPostOut" />
|
2931
|
+
</wsdl:operation>
|
2932
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
2933
|
+
<wsdl:input message="tns:ChangePassPhraseXMLHttpPostIn" />
|
2934
|
+
<wsdl:output message="tns:ChangePassPhraseXMLHttpPostOut" />
|
2935
|
+
</wsdl:operation>
|
2936
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
2937
|
+
<wsdl:input message="tns:CalculatePostageRatesXMLHttpPostIn" />
|
2938
|
+
<wsdl:output message="tns:CalculatePostageRatesXMLHttpPostOut" />
|
2939
|
+
</wsdl:operation>
|
2940
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
2941
|
+
<wsdl:input message="tns:CreateDhlgmManifestXMLHttpPostIn" />
|
2942
|
+
<wsdl:output message="tns:CreateDhlgmManifestXMLHttpPostOut" />
|
2943
|
+
</wsdl:operation>
|
2944
|
+
<wsdl:operation name="StatusRequestXML">
|
2945
|
+
<wsdl:input message="tns:StatusRequestXMLHttpPostIn" />
|
2946
|
+
<wsdl:output message="tns:StatusRequestXMLHttpPostOut" />
|
2947
|
+
</wsdl:operation>
|
2948
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
2949
|
+
<wsdl:input message="tns:GetRetailAccountsXMLHttpPostIn" />
|
2950
|
+
<wsdl:output message="tns:GetRetailAccountsXMLHttpPostOut" />
|
2951
|
+
</wsdl:operation>
|
2952
|
+
<wsdl:operation name="GetUserSignUpXML">
|
2953
|
+
<wsdl:input message="tns:GetUserSignUpXMLHttpPostIn" />
|
2954
|
+
<wsdl:output message="tns:GetUserSignUpXMLHttpPostOut" />
|
2955
|
+
</wsdl:operation>
|
2956
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
2957
|
+
<wsdl:input message="tns:GetTransactionsListingXMLHttpPostIn" />
|
2958
|
+
<wsdl:output message="tns:GetTransactionsListingXMLHttpPostOut" />
|
2959
|
+
</wsdl:operation>
|
2960
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
2961
|
+
<wsdl:input message="tns:GetPackagePickupChangeXMLHttpPostIn" />
|
2962
|
+
<wsdl:output message="tns:GetPackagePickupChangeXMLHttpPostOut" />
|
2963
|
+
</wsdl:operation>
|
2964
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
2965
|
+
<wsdl:input message="tns:GetPackagePickupAvailabilityXMLHttpPostIn" />
|
2966
|
+
<wsdl:output message="tns:GetPackagePickupAvailabilityXMLHttpPostOut" />
|
2967
|
+
</wsdl:operation>
|
2968
|
+
<wsdl:operation name="GetPackagePickupXML">
|
2969
|
+
<wsdl:input message="tns:GetPackagePickupXMLHttpPostIn" />
|
2970
|
+
<wsdl:output message="tns:GetPackagePickupXMLHttpPostOut" />
|
2971
|
+
</wsdl:operation>
|
2972
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
2973
|
+
<wsdl:input message="tns:GetPackagePickupCancelXMLHttpPostIn" />
|
2974
|
+
<wsdl:output message="tns:GetPackagePickupCancelXMLHttpPostOut" />
|
2975
|
+
</wsdl:operation>
|
2976
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
2977
|
+
<wsdl:input message="tns:GetPostageRateTableXMLHttpPostIn" />
|
2978
|
+
<wsdl:output message="tns:GetPostageRateTableXMLHttpPostOut" />
|
2979
|
+
</wsdl:operation>
|
2980
|
+
<wsdl:operation name="GetSCANXML">
|
2981
|
+
<wsdl:input message="tns:GetSCANXMLHttpPostIn" />
|
2982
|
+
<wsdl:output message="tns:GetSCANXMLHttpPostOut" />
|
2983
|
+
</wsdl:operation>
|
2984
|
+
</wsdl:portType>
|
2985
|
+
<wsdl:binding name="EwsLabelServiceSoap" type="tns:EwsLabelServiceSoap">
|
2986
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
2987
|
+
<wsdl:operation name="GetRefundXML">
|
2988
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetRefundXML" style="document" />
|
2989
|
+
<wsdl:input>
|
2990
|
+
<soap:body use="literal" />
|
2991
|
+
</wsdl:input>
|
2992
|
+
<wsdl:output>
|
2993
|
+
<soap:body use="literal" />
|
2994
|
+
</wsdl:output>
|
2995
|
+
</wsdl:operation>
|
2996
|
+
<wsdl:operation name="ResetSuspendedAccount">
|
2997
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/ResetSuspendedAccount" style="document" />
|
2998
|
+
<wsdl:input>
|
2999
|
+
<soap:body use="literal" />
|
3000
|
+
</wsdl:input>
|
3001
|
+
<wsdl:output>
|
3002
|
+
<soap:body use="literal" />
|
3003
|
+
</wsdl:output>
|
3004
|
+
</wsdl:operation>
|
3005
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
3006
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/ResetSuspendedAccountXML" style="document" />
|
3007
|
+
<wsdl:input>
|
3008
|
+
<soap:body use="literal" />
|
3009
|
+
</wsdl:input>
|
3010
|
+
<wsdl:output>
|
3011
|
+
<soap:body use="literal" />
|
3012
|
+
</wsdl:output>
|
3013
|
+
</wsdl:operation>
|
3014
|
+
<wsdl:operation name="GetChallengeQuestion">
|
3015
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetChallengeQuestion" style="document" />
|
3016
|
+
<wsdl:input>
|
3017
|
+
<soap:body use="literal" />
|
3018
|
+
</wsdl:input>
|
3019
|
+
<wsdl:output>
|
3020
|
+
<soap:body use="literal" />
|
3021
|
+
</wsdl:output>
|
3022
|
+
</wsdl:operation>
|
3023
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
3024
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetChallengeQuestionXML" style="document" />
|
3025
|
+
<wsdl:input>
|
3026
|
+
<soap:body use="literal" />
|
3027
|
+
</wsdl:input>
|
3028
|
+
<wsdl:output>
|
3029
|
+
<soap:body use="literal" />
|
3030
|
+
</wsdl:output>
|
3031
|
+
</wsdl:operation>
|
3032
|
+
<wsdl:operation name="GetAccountStatus">
|
3033
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetAccountStatus" style="document" />
|
3034
|
+
<wsdl:input>
|
3035
|
+
<soap:body use="literal" />
|
3036
|
+
</wsdl:input>
|
3037
|
+
<wsdl:output>
|
3038
|
+
<soap:body use="literal" />
|
3039
|
+
</wsdl:output>
|
3040
|
+
</wsdl:operation>
|
3041
|
+
<wsdl:operation name="GetAccountStatusXML">
|
3042
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetAccountStatusXML" style="document" />
|
3043
|
+
<wsdl:input>
|
3044
|
+
<soap:body use="literal" />
|
3045
|
+
</wsdl:input>
|
3046
|
+
<wsdl:output>
|
3047
|
+
<soap:body use="literal" />
|
3048
|
+
</wsdl:output>
|
3049
|
+
</wsdl:operation>
|
3050
|
+
<wsdl:operation name="GetPostageLabel">
|
3051
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPostageLabel" style="document" />
|
3052
|
+
<wsdl:input>
|
3053
|
+
<soap:body use="literal" />
|
3054
|
+
</wsdl:input>
|
3055
|
+
<wsdl:output>
|
3056
|
+
<soap:body use="literal" />
|
3057
|
+
</wsdl:output>
|
3058
|
+
</wsdl:operation>
|
3059
|
+
<wsdl:operation name="GetPostageLabelXML">
|
3060
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPostageLabelXML" style="document" />
|
3061
|
+
<wsdl:input>
|
3062
|
+
<soap:body use="literal" />
|
3063
|
+
</wsdl:input>
|
3064
|
+
<wsdl:output>
|
3065
|
+
<soap:body use="literal" />
|
3066
|
+
</wsdl:output>
|
3067
|
+
</wsdl:operation>
|
3068
|
+
<wsdl:operation name="GetVersion">
|
3069
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetVersion" style="document" />
|
3070
|
+
<wsdl:input>
|
3071
|
+
<soap:body use="literal" />
|
3072
|
+
</wsdl:input>
|
3073
|
+
<wsdl:output>
|
3074
|
+
<soap:body use="literal" />
|
3075
|
+
</wsdl:output>
|
3076
|
+
</wsdl:operation>
|
3077
|
+
<wsdl:operation name="GetVersionXML">
|
3078
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetVersionXML" style="document" />
|
3079
|
+
<wsdl:input>
|
3080
|
+
<soap:body use="literal" />
|
3081
|
+
</wsdl:input>
|
3082
|
+
<wsdl:output>
|
3083
|
+
<soap:body use="literal" />
|
3084
|
+
</wsdl:output>
|
3085
|
+
</wsdl:operation>
|
3086
|
+
<wsdl:operation name="VoideVSLabel">
|
3087
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/VoideVSLabel" style="document" />
|
3088
|
+
<wsdl:input>
|
3089
|
+
<soap:body use="literal" />
|
3090
|
+
</wsdl:input>
|
3091
|
+
<wsdl:output>
|
3092
|
+
<soap:body use="literal" />
|
3093
|
+
</wsdl:output>
|
3094
|
+
</wsdl:operation>
|
3095
|
+
<wsdl:operation name="VoideVSLabelXML">
|
3096
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/VoideVSLabelXML" style="document" />
|
3097
|
+
<wsdl:input>
|
3098
|
+
<soap:body use="literal" />
|
3099
|
+
</wsdl:input>
|
3100
|
+
<wsdl:output>
|
3101
|
+
<soap:body use="literal" />
|
3102
|
+
</wsdl:output>
|
3103
|
+
</wsdl:operation>
|
3104
|
+
<wsdl:operation name="BuyPostage">
|
3105
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/BuyPostage" style="document" />
|
3106
|
+
<wsdl:input>
|
3107
|
+
<soap:body use="literal" />
|
3108
|
+
</wsdl:input>
|
3109
|
+
<wsdl:output>
|
3110
|
+
<soap:body use="literal" />
|
3111
|
+
</wsdl:output>
|
3112
|
+
</wsdl:operation>
|
3113
|
+
<wsdl:operation name="BuyPostageXML">
|
3114
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/BuyPostageXML" style="document" />
|
3115
|
+
<wsdl:input>
|
3116
|
+
<soap:body use="literal" />
|
3117
|
+
</wsdl:input>
|
3118
|
+
<wsdl:output>
|
3119
|
+
<soap:body use="literal" />
|
3120
|
+
</wsdl:output>
|
3121
|
+
</wsdl:operation>
|
3122
|
+
<wsdl:operation name="CalculateDdpRate">
|
3123
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CalculateDdpRate" style="document" />
|
3124
|
+
<wsdl:input>
|
3125
|
+
<soap:body use="literal" />
|
3126
|
+
</wsdl:input>
|
3127
|
+
<wsdl:output>
|
3128
|
+
<soap:body use="literal" />
|
3129
|
+
</wsdl:output>
|
3130
|
+
</wsdl:operation>
|
3131
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
3132
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CalculateDdpRateXML" style="document" />
|
3133
|
+
<wsdl:input>
|
3134
|
+
<soap:body use="literal" />
|
3135
|
+
</wsdl:input>
|
3136
|
+
<wsdl:output>
|
3137
|
+
<soap:body use="literal" />
|
3138
|
+
</wsdl:output>
|
3139
|
+
</wsdl:operation>
|
3140
|
+
<wsdl:operation name="CalculatePostageRate">
|
3141
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRate" style="document" />
|
3142
|
+
<wsdl:input>
|
3143
|
+
<soap:body use="literal" />
|
3144
|
+
</wsdl:input>
|
3145
|
+
<wsdl:output>
|
3146
|
+
<soap:body use="literal" />
|
3147
|
+
</wsdl:output>
|
3148
|
+
</wsdl:operation>
|
3149
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
3150
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRateXML" style="document" />
|
3151
|
+
<wsdl:input>
|
3152
|
+
<soap:body use="literal" />
|
3153
|
+
</wsdl:input>
|
3154
|
+
<wsdl:output>
|
3155
|
+
<soap:body use="literal" />
|
3156
|
+
</wsdl:output>
|
3157
|
+
</wsdl:operation>
|
3158
|
+
<wsdl:operation name="ChangePassPhrase">
|
3159
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/ChangePassPhrase" style="document" />
|
3160
|
+
<wsdl:input>
|
3161
|
+
<soap:body use="literal" />
|
3162
|
+
</wsdl:input>
|
3163
|
+
<wsdl:output>
|
3164
|
+
<soap:body use="literal" />
|
3165
|
+
</wsdl:output>
|
3166
|
+
</wsdl:operation>
|
3167
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
3168
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/ChangePassPhraseXML" style="document" />
|
3169
|
+
<wsdl:input>
|
3170
|
+
<soap:body use="literal" />
|
3171
|
+
</wsdl:input>
|
3172
|
+
<wsdl:output>
|
3173
|
+
<soap:body use="literal" />
|
3174
|
+
</wsdl:output>
|
3175
|
+
</wsdl:operation>
|
3176
|
+
<wsdl:operation name="CalculatePostageRates">
|
3177
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRates" style="document" />
|
3178
|
+
<wsdl:input>
|
3179
|
+
<soap:body use="literal" />
|
3180
|
+
</wsdl:input>
|
3181
|
+
<wsdl:output>
|
3182
|
+
<soap:body use="literal" />
|
3183
|
+
</wsdl:output>
|
3184
|
+
</wsdl:operation>
|
3185
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
3186
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRatesXML" style="document" />
|
3187
|
+
<wsdl:input>
|
3188
|
+
<soap:body use="literal" />
|
3189
|
+
</wsdl:input>
|
3190
|
+
<wsdl:output>
|
3191
|
+
<soap:body use="literal" />
|
3192
|
+
</wsdl:output>
|
3193
|
+
</wsdl:operation>
|
3194
|
+
<wsdl:operation name="CreateDhlgmManifest">
|
3195
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CreateDhlgmManifest" style="document" />
|
3196
|
+
<wsdl:input>
|
3197
|
+
<soap:body use="literal" />
|
3198
|
+
</wsdl:input>
|
3199
|
+
<wsdl:output>
|
3200
|
+
<soap:body use="literal" />
|
3201
|
+
</wsdl:output>
|
3202
|
+
</wsdl:operation>
|
3203
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
3204
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/CreateDhlgmManifestXML" style="document" />
|
3205
|
+
<wsdl:input>
|
3206
|
+
<soap:body use="literal" />
|
3207
|
+
</wsdl:input>
|
3208
|
+
<wsdl:output>
|
3209
|
+
<soap:body use="literal" />
|
3210
|
+
</wsdl:output>
|
3211
|
+
</wsdl:operation>
|
3212
|
+
<wsdl:operation name="StatusRequest">
|
3213
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/StatusRequest" style="document" />
|
3214
|
+
<wsdl:input>
|
3215
|
+
<soap:body use="literal" />
|
3216
|
+
</wsdl:input>
|
3217
|
+
<wsdl:output>
|
3218
|
+
<soap:body use="literal" />
|
3219
|
+
</wsdl:output>
|
3220
|
+
</wsdl:operation>
|
3221
|
+
<wsdl:operation name="StatusRequestXML">
|
3222
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/StatusRequestXML" style="document" />
|
3223
|
+
<wsdl:input>
|
3224
|
+
<soap:body use="literal" />
|
3225
|
+
</wsdl:input>
|
3226
|
+
<wsdl:output>
|
3227
|
+
<soap:body use="literal" />
|
3228
|
+
</wsdl:output>
|
3229
|
+
</wsdl:operation>
|
3230
|
+
<wsdl:operation name="GetRetailAccounts">
|
3231
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetRetailAccounts" style="document" />
|
3232
|
+
<wsdl:input>
|
3233
|
+
<soap:body use="literal" />
|
3234
|
+
</wsdl:input>
|
3235
|
+
<wsdl:output>
|
3236
|
+
<soap:body use="literal" />
|
3237
|
+
</wsdl:output>
|
3238
|
+
</wsdl:operation>
|
3239
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
3240
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetRetailAccountsXML" style="document" />
|
3241
|
+
<wsdl:input>
|
3242
|
+
<soap:body use="literal" />
|
3243
|
+
</wsdl:input>
|
3244
|
+
<wsdl:output>
|
3245
|
+
<soap:body use="literal" />
|
3246
|
+
</wsdl:output>
|
3247
|
+
</wsdl:operation>
|
3248
|
+
<wsdl:operation name="GetUserSignUp">
|
3249
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetUserSignUp" style="document" />
|
3250
|
+
<wsdl:input>
|
3251
|
+
<soap:body use="literal" />
|
3252
|
+
</wsdl:input>
|
3253
|
+
<wsdl:output>
|
3254
|
+
<soap:body use="literal" />
|
3255
|
+
</wsdl:output>
|
3256
|
+
</wsdl:operation>
|
3257
|
+
<wsdl:operation name="GetUserSignUpXML">
|
3258
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetUserSignUpXML" style="document" />
|
3259
|
+
<wsdl:input>
|
3260
|
+
<soap:body use="literal" />
|
3261
|
+
</wsdl:input>
|
3262
|
+
<wsdl:output>
|
3263
|
+
<soap:body use="literal" />
|
3264
|
+
</wsdl:output>
|
3265
|
+
</wsdl:operation>
|
3266
|
+
<wsdl:operation name="GetTransactionsListing">
|
3267
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetTransactionsListing" style="document" />
|
3268
|
+
<wsdl:input>
|
3269
|
+
<soap:body use="literal" />
|
3270
|
+
</wsdl:input>
|
3271
|
+
<wsdl:output>
|
3272
|
+
<soap:body use="literal" />
|
3273
|
+
</wsdl:output>
|
3274
|
+
</wsdl:operation>
|
3275
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
3276
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetTransactionsListingXML" style="document" />
|
3277
|
+
<wsdl:input>
|
3278
|
+
<soap:body use="literal" />
|
3279
|
+
</wsdl:input>
|
3280
|
+
<wsdl:output>
|
3281
|
+
<soap:body use="literal" />
|
3282
|
+
</wsdl:output>
|
3283
|
+
</wsdl:operation>
|
3284
|
+
<wsdl:operation name="GetPackagePickupChange">
|
3285
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupChange" style="document" />
|
3286
|
+
<wsdl:input>
|
3287
|
+
<soap:body use="literal" />
|
3288
|
+
</wsdl:input>
|
3289
|
+
<wsdl:output>
|
3290
|
+
<soap:body use="literal" />
|
3291
|
+
</wsdl:output>
|
3292
|
+
</wsdl:operation>
|
3293
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
3294
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupChangeXML" style="document" />
|
3295
|
+
<wsdl:input>
|
3296
|
+
<soap:body use="literal" />
|
3297
|
+
</wsdl:input>
|
3298
|
+
<wsdl:output>
|
3299
|
+
<soap:body use="literal" />
|
3300
|
+
</wsdl:output>
|
3301
|
+
</wsdl:operation>
|
3302
|
+
<wsdl:operation name="GetPackagePickupAvailability">
|
3303
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupAvailability" style="document" />
|
3304
|
+
<wsdl:input>
|
3305
|
+
<soap:body use="literal" />
|
3306
|
+
</wsdl:input>
|
3307
|
+
<wsdl:output>
|
3308
|
+
<soap:body use="literal" />
|
3309
|
+
</wsdl:output>
|
3310
|
+
</wsdl:operation>
|
3311
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
3312
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupAvailabilityXML" style="document" />
|
3313
|
+
<wsdl:input>
|
3314
|
+
<soap:body use="literal" />
|
3315
|
+
</wsdl:input>
|
3316
|
+
<wsdl:output>
|
3317
|
+
<soap:body use="literal" />
|
3318
|
+
</wsdl:output>
|
3319
|
+
</wsdl:operation>
|
3320
|
+
<wsdl:operation name="GetPackagePickup">
|
3321
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickup" style="document" />
|
3322
|
+
<wsdl:input>
|
3323
|
+
<soap:body use="literal" />
|
3324
|
+
</wsdl:input>
|
3325
|
+
<wsdl:output>
|
3326
|
+
<soap:body use="literal" />
|
3327
|
+
</wsdl:output>
|
3328
|
+
</wsdl:operation>
|
3329
|
+
<wsdl:operation name="GetPackagePickupXML">
|
3330
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupXML" style="document" />
|
3331
|
+
<wsdl:input>
|
3332
|
+
<soap:body use="literal" />
|
3333
|
+
</wsdl:input>
|
3334
|
+
<wsdl:output>
|
3335
|
+
<soap:body use="literal" />
|
3336
|
+
</wsdl:output>
|
3337
|
+
</wsdl:operation>
|
3338
|
+
<wsdl:operation name="GetPackagePickupCancel">
|
3339
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupCancel" style="document" />
|
3340
|
+
<wsdl:input>
|
3341
|
+
<soap:body use="literal" />
|
3342
|
+
</wsdl:input>
|
3343
|
+
<wsdl:output>
|
3344
|
+
<soap:body use="literal" />
|
3345
|
+
</wsdl:output>
|
3346
|
+
</wsdl:operation>
|
3347
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
3348
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupCancelXML" style="document" />
|
3349
|
+
<wsdl:input>
|
3350
|
+
<soap:body use="literal" />
|
3351
|
+
</wsdl:input>
|
3352
|
+
<wsdl:output>
|
3353
|
+
<soap:body use="literal" />
|
3354
|
+
</wsdl:output>
|
3355
|
+
</wsdl:operation>
|
3356
|
+
<wsdl:operation name="GetPostageRateTable">
|
3357
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPostageRateTable" style="document" />
|
3358
|
+
<wsdl:input>
|
3359
|
+
<soap:body use="literal" />
|
3360
|
+
</wsdl:input>
|
3361
|
+
<wsdl:output>
|
3362
|
+
<soap:body use="literal" />
|
3363
|
+
</wsdl:output>
|
3364
|
+
</wsdl:operation>
|
3365
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
3366
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetPostageRateTableXML" style="document" />
|
3367
|
+
<wsdl:input>
|
3368
|
+
<soap:body use="literal" />
|
3369
|
+
</wsdl:input>
|
3370
|
+
<wsdl:output>
|
3371
|
+
<soap:body use="literal" />
|
3372
|
+
</wsdl:output>
|
3373
|
+
</wsdl:operation>
|
3374
|
+
<wsdl:operation name="GetSCAN">
|
3375
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetSCAN" style="document" />
|
3376
|
+
<wsdl:input>
|
3377
|
+
<soap:body use="literal" />
|
3378
|
+
</wsdl:input>
|
3379
|
+
<wsdl:output>
|
3380
|
+
<soap:body use="literal" />
|
3381
|
+
</wsdl:output>
|
3382
|
+
</wsdl:operation>
|
3383
|
+
<wsdl:operation name="GetSCANXML">
|
3384
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetSCANXML" style="document" />
|
3385
|
+
<wsdl:input>
|
3386
|
+
<soap:body use="literal" />
|
3387
|
+
</wsdl:input>
|
3388
|
+
<wsdl:output>
|
3389
|
+
<soap:body use="literal" />
|
3390
|
+
</wsdl:output>
|
3391
|
+
</wsdl:operation>
|
3392
|
+
<wsdl:operation name="GetRefund">
|
3393
|
+
<soap:operation soapAction="www.envmgr.com/LabelService/GetRefund" style="document" />
|
3394
|
+
<wsdl:input>
|
3395
|
+
<soap:body use="literal" />
|
3396
|
+
</wsdl:input>
|
3397
|
+
<wsdl:output>
|
3398
|
+
<soap:body use="literal" />
|
3399
|
+
</wsdl:output>
|
3400
|
+
</wsdl:operation>
|
3401
|
+
</wsdl:binding>
|
3402
|
+
<wsdl:binding name="EwsLabelServiceSoap12" type="tns:EwsLabelServiceSoap">
|
3403
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
3404
|
+
<wsdl:operation name="GetRefundXML">
|
3405
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetRefundXML" style="document" />
|
3406
|
+
<wsdl:input>
|
3407
|
+
<soap12:body use="literal" />
|
3408
|
+
</wsdl:input>
|
3409
|
+
<wsdl:output>
|
3410
|
+
<soap12:body use="literal" />
|
3411
|
+
</wsdl:output>
|
3412
|
+
</wsdl:operation>
|
3413
|
+
<wsdl:operation name="ResetSuspendedAccount">
|
3414
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/ResetSuspendedAccount" style="document" />
|
3415
|
+
<wsdl:input>
|
3416
|
+
<soap12:body use="literal" />
|
3417
|
+
</wsdl:input>
|
3418
|
+
<wsdl:output>
|
3419
|
+
<soap12:body use="literal" />
|
3420
|
+
</wsdl:output>
|
3421
|
+
</wsdl:operation>
|
3422
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
3423
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/ResetSuspendedAccountXML" style="document" />
|
3424
|
+
<wsdl:input>
|
3425
|
+
<soap12:body use="literal" />
|
3426
|
+
</wsdl:input>
|
3427
|
+
<wsdl:output>
|
3428
|
+
<soap12:body use="literal" />
|
3429
|
+
</wsdl:output>
|
3430
|
+
</wsdl:operation>
|
3431
|
+
<wsdl:operation name="GetChallengeQuestion">
|
3432
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetChallengeQuestion" style="document" />
|
3433
|
+
<wsdl:input>
|
3434
|
+
<soap12:body use="literal" />
|
3435
|
+
</wsdl:input>
|
3436
|
+
<wsdl:output>
|
3437
|
+
<soap12:body use="literal" />
|
3438
|
+
</wsdl:output>
|
3439
|
+
</wsdl:operation>
|
3440
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
3441
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetChallengeQuestionXML" style="document" />
|
3442
|
+
<wsdl:input>
|
3443
|
+
<soap12:body use="literal" />
|
3444
|
+
</wsdl:input>
|
3445
|
+
<wsdl:output>
|
3446
|
+
<soap12:body use="literal" />
|
3447
|
+
</wsdl:output>
|
3448
|
+
</wsdl:operation>
|
3449
|
+
<wsdl:operation name="GetAccountStatus">
|
3450
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetAccountStatus" style="document" />
|
3451
|
+
<wsdl:input>
|
3452
|
+
<soap12:body use="literal" />
|
3453
|
+
</wsdl:input>
|
3454
|
+
<wsdl:output>
|
3455
|
+
<soap12:body use="literal" />
|
3456
|
+
</wsdl:output>
|
3457
|
+
</wsdl:operation>
|
3458
|
+
<wsdl:operation name="GetAccountStatusXML">
|
3459
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetAccountStatusXML" style="document" />
|
3460
|
+
<wsdl:input>
|
3461
|
+
<soap12:body use="literal" />
|
3462
|
+
</wsdl:input>
|
3463
|
+
<wsdl:output>
|
3464
|
+
<soap12:body use="literal" />
|
3465
|
+
</wsdl:output>
|
3466
|
+
</wsdl:operation>
|
3467
|
+
<wsdl:operation name="GetPostageLabel">
|
3468
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPostageLabel" style="document" />
|
3469
|
+
<wsdl:input>
|
3470
|
+
<soap12:body use="literal" />
|
3471
|
+
</wsdl:input>
|
3472
|
+
<wsdl:output>
|
3473
|
+
<soap12:body use="literal" />
|
3474
|
+
</wsdl:output>
|
3475
|
+
</wsdl:operation>
|
3476
|
+
<wsdl:operation name="GetPostageLabelXML">
|
3477
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPostageLabelXML" style="document" />
|
3478
|
+
<wsdl:input>
|
3479
|
+
<soap12:body use="literal" />
|
3480
|
+
</wsdl:input>
|
3481
|
+
<wsdl:output>
|
3482
|
+
<soap12:body use="literal" />
|
3483
|
+
</wsdl:output>
|
3484
|
+
</wsdl:operation>
|
3485
|
+
<wsdl:operation name="GetVersion">
|
3486
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetVersion" style="document" />
|
3487
|
+
<wsdl:input>
|
3488
|
+
<soap12:body use="literal" />
|
3489
|
+
</wsdl:input>
|
3490
|
+
<wsdl:output>
|
3491
|
+
<soap12:body use="literal" />
|
3492
|
+
</wsdl:output>
|
3493
|
+
</wsdl:operation>
|
3494
|
+
<wsdl:operation name="GetVersionXML">
|
3495
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetVersionXML" style="document" />
|
3496
|
+
<wsdl:input>
|
3497
|
+
<soap12:body use="literal" />
|
3498
|
+
</wsdl:input>
|
3499
|
+
<wsdl:output>
|
3500
|
+
<soap12:body use="literal" />
|
3501
|
+
</wsdl:output>
|
3502
|
+
</wsdl:operation>
|
3503
|
+
<wsdl:operation name="VoideVSLabel">
|
3504
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/VoideVSLabel" style="document" />
|
3505
|
+
<wsdl:input>
|
3506
|
+
<soap12:body use="literal" />
|
3507
|
+
</wsdl:input>
|
3508
|
+
<wsdl:output>
|
3509
|
+
<soap12:body use="literal" />
|
3510
|
+
</wsdl:output>
|
3511
|
+
</wsdl:operation>
|
3512
|
+
<wsdl:operation name="VoideVSLabelXML">
|
3513
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/VoideVSLabelXML" style="document" />
|
3514
|
+
<wsdl:input>
|
3515
|
+
<soap12:body use="literal" />
|
3516
|
+
</wsdl:input>
|
3517
|
+
<wsdl:output>
|
3518
|
+
<soap12:body use="literal" />
|
3519
|
+
</wsdl:output>
|
3520
|
+
</wsdl:operation>
|
3521
|
+
<wsdl:operation name="BuyPostage">
|
3522
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/BuyPostage" style="document" />
|
3523
|
+
<wsdl:input>
|
3524
|
+
<soap12:body use="literal" />
|
3525
|
+
</wsdl:input>
|
3526
|
+
<wsdl:output>
|
3527
|
+
<soap12:body use="literal" />
|
3528
|
+
</wsdl:output>
|
3529
|
+
</wsdl:operation>
|
3530
|
+
<wsdl:operation name="BuyPostageXML">
|
3531
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/BuyPostageXML" style="document" />
|
3532
|
+
<wsdl:input>
|
3533
|
+
<soap12:body use="literal" />
|
3534
|
+
</wsdl:input>
|
3535
|
+
<wsdl:output>
|
3536
|
+
<soap12:body use="literal" />
|
3537
|
+
</wsdl:output>
|
3538
|
+
</wsdl:operation>
|
3539
|
+
<wsdl:operation name="CalculateDdpRate">
|
3540
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CalculateDdpRate" style="document" />
|
3541
|
+
<wsdl:input>
|
3542
|
+
<soap12:body use="literal" />
|
3543
|
+
</wsdl:input>
|
3544
|
+
<wsdl:output>
|
3545
|
+
<soap12:body use="literal" />
|
3546
|
+
</wsdl:output>
|
3547
|
+
</wsdl:operation>
|
3548
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
3549
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CalculateDdpRateXML" style="document" />
|
3550
|
+
<wsdl:input>
|
3551
|
+
<soap12:body use="literal" />
|
3552
|
+
</wsdl:input>
|
3553
|
+
<wsdl:output>
|
3554
|
+
<soap12:body use="literal" />
|
3555
|
+
</wsdl:output>
|
3556
|
+
</wsdl:operation>
|
3557
|
+
<wsdl:operation name="CalculatePostageRate">
|
3558
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRate" style="document" />
|
3559
|
+
<wsdl:input>
|
3560
|
+
<soap12:body use="literal" />
|
3561
|
+
</wsdl:input>
|
3562
|
+
<wsdl:output>
|
3563
|
+
<soap12:body use="literal" />
|
3564
|
+
</wsdl:output>
|
3565
|
+
</wsdl:operation>
|
3566
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
3567
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRateXML" style="document" />
|
3568
|
+
<wsdl:input>
|
3569
|
+
<soap12:body use="literal" />
|
3570
|
+
</wsdl:input>
|
3571
|
+
<wsdl:output>
|
3572
|
+
<soap12:body use="literal" />
|
3573
|
+
</wsdl:output>
|
3574
|
+
</wsdl:operation>
|
3575
|
+
<wsdl:operation name="ChangePassPhrase">
|
3576
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/ChangePassPhrase" style="document" />
|
3577
|
+
<wsdl:input>
|
3578
|
+
<soap12:body use="literal" />
|
3579
|
+
</wsdl:input>
|
3580
|
+
<wsdl:output>
|
3581
|
+
<soap12:body use="literal" />
|
3582
|
+
</wsdl:output>
|
3583
|
+
</wsdl:operation>
|
3584
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
3585
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/ChangePassPhraseXML" style="document" />
|
3586
|
+
<wsdl:input>
|
3587
|
+
<soap12:body use="literal" />
|
3588
|
+
</wsdl:input>
|
3589
|
+
<wsdl:output>
|
3590
|
+
<soap12:body use="literal" />
|
3591
|
+
</wsdl:output>
|
3592
|
+
</wsdl:operation>
|
3593
|
+
<wsdl:operation name="CalculatePostageRates">
|
3594
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRates" style="document" />
|
3595
|
+
<wsdl:input>
|
3596
|
+
<soap12:body use="literal" />
|
3597
|
+
</wsdl:input>
|
3598
|
+
<wsdl:output>
|
3599
|
+
<soap12:body use="literal" />
|
3600
|
+
</wsdl:output>
|
3601
|
+
</wsdl:operation>
|
3602
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
3603
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CalculatePostageRatesXML" style="document" />
|
3604
|
+
<wsdl:input>
|
3605
|
+
<soap12:body use="literal" />
|
3606
|
+
</wsdl:input>
|
3607
|
+
<wsdl:output>
|
3608
|
+
<soap12:body use="literal" />
|
3609
|
+
</wsdl:output>
|
3610
|
+
</wsdl:operation>
|
3611
|
+
<wsdl:operation name="CreateDhlgmManifest">
|
3612
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CreateDhlgmManifest" style="document" />
|
3613
|
+
<wsdl:input>
|
3614
|
+
<soap12:body use="literal" />
|
3615
|
+
</wsdl:input>
|
3616
|
+
<wsdl:output>
|
3617
|
+
<soap12:body use="literal" />
|
3618
|
+
</wsdl:output>
|
3619
|
+
</wsdl:operation>
|
3620
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
3621
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/CreateDhlgmManifestXML" style="document" />
|
3622
|
+
<wsdl:input>
|
3623
|
+
<soap12:body use="literal" />
|
3624
|
+
</wsdl:input>
|
3625
|
+
<wsdl:output>
|
3626
|
+
<soap12:body use="literal" />
|
3627
|
+
</wsdl:output>
|
3628
|
+
</wsdl:operation>
|
3629
|
+
<wsdl:operation name="StatusRequest">
|
3630
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/StatusRequest" style="document" />
|
3631
|
+
<wsdl:input>
|
3632
|
+
<soap12:body use="literal" />
|
3633
|
+
</wsdl:input>
|
3634
|
+
<wsdl:output>
|
3635
|
+
<soap12:body use="literal" />
|
3636
|
+
</wsdl:output>
|
3637
|
+
</wsdl:operation>
|
3638
|
+
<wsdl:operation name="StatusRequestXML">
|
3639
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/StatusRequestXML" style="document" />
|
3640
|
+
<wsdl:input>
|
3641
|
+
<soap12:body use="literal" />
|
3642
|
+
</wsdl:input>
|
3643
|
+
<wsdl:output>
|
3644
|
+
<soap12:body use="literal" />
|
3645
|
+
</wsdl:output>
|
3646
|
+
</wsdl:operation>
|
3647
|
+
<wsdl:operation name="GetRetailAccounts">
|
3648
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetRetailAccounts" style="document" />
|
3649
|
+
<wsdl:input>
|
3650
|
+
<soap12:body use="literal" />
|
3651
|
+
</wsdl:input>
|
3652
|
+
<wsdl:output>
|
3653
|
+
<soap12:body use="literal" />
|
3654
|
+
</wsdl:output>
|
3655
|
+
</wsdl:operation>
|
3656
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
3657
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetRetailAccountsXML" style="document" />
|
3658
|
+
<wsdl:input>
|
3659
|
+
<soap12:body use="literal" />
|
3660
|
+
</wsdl:input>
|
3661
|
+
<wsdl:output>
|
3662
|
+
<soap12:body use="literal" />
|
3663
|
+
</wsdl:output>
|
3664
|
+
</wsdl:operation>
|
3665
|
+
<wsdl:operation name="GetUserSignUp">
|
3666
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetUserSignUp" style="document" />
|
3667
|
+
<wsdl:input>
|
3668
|
+
<soap12:body use="literal" />
|
3669
|
+
</wsdl:input>
|
3670
|
+
<wsdl:output>
|
3671
|
+
<soap12:body use="literal" />
|
3672
|
+
</wsdl:output>
|
3673
|
+
</wsdl:operation>
|
3674
|
+
<wsdl:operation name="GetUserSignUpXML">
|
3675
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetUserSignUpXML" style="document" />
|
3676
|
+
<wsdl:input>
|
3677
|
+
<soap12:body use="literal" />
|
3678
|
+
</wsdl:input>
|
3679
|
+
<wsdl:output>
|
3680
|
+
<soap12:body use="literal" />
|
3681
|
+
</wsdl:output>
|
3682
|
+
</wsdl:operation>
|
3683
|
+
<wsdl:operation name="GetTransactionsListing">
|
3684
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetTransactionsListing" style="document" />
|
3685
|
+
<wsdl:input>
|
3686
|
+
<soap12:body use="literal" />
|
3687
|
+
</wsdl:input>
|
3688
|
+
<wsdl:output>
|
3689
|
+
<soap12:body use="literal" />
|
3690
|
+
</wsdl:output>
|
3691
|
+
</wsdl:operation>
|
3692
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
3693
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetTransactionsListingXML" style="document" />
|
3694
|
+
<wsdl:input>
|
3695
|
+
<soap12:body use="literal" />
|
3696
|
+
</wsdl:input>
|
3697
|
+
<wsdl:output>
|
3698
|
+
<soap12:body use="literal" />
|
3699
|
+
</wsdl:output>
|
3700
|
+
</wsdl:operation>
|
3701
|
+
<wsdl:operation name="GetPackagePickupChange">
|
3702
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupChange" style="document" />
|
3703
|
+
<wsdl:input>
|
3704
|
+
<soap12:body use="literal" />
|
3705
|
+
</wsdl:input>
|
3706
|
+
<wsdl:output>
|
3707
|
+
<soap12:body use="literal" />
|
3708
|
+
</wsdl:output>
|
3709
|
+
</wsdl:operation>
|
3710
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
3711
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupChangeXML" style="document" />
|
3712
|
+
<wsdl:input>
|
3713
|
+
<soap12:body use="literal" />
|
3714
|
+
</wsdl:input>
|
3715
|
+
<wsdl:output>
|
3716
|
+
<soap12:body use="literal" />
|
3717
|
+
</wsdl:output>
|
3718
|
+
</wsdl:operation>
|
3719
|
+
<wsdl:operation name="GetPackagePickupAvailability">
|
3720
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupAvailability" style="document" />
|
3721
|
+
<wsdl:input>
|
3722
|
+
<soap12:body use="literal" />
|
3723
|
+
</wsdl:input>
|
3724
|
+
<wsdl:output>
|
3725
|
+
<soap12:body use="literal" />
|
3726
|
+
</wsdl:output>
|
3727
|
+
</wsdl:operation>
|
3728
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
3729
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupAvailabilityXML" style="document" />
|
3730
|
+
<wsdl:input>
|
3731
|
+
<soap12:body use="literal" />
|
3732
|
+
</wsdl:input>
|
3733
|
+
<wsdl:output>
|
3734
|
+
<soap12:body use="literal" />
|
3735
|
+
</wsdl:output>
|
3736
|
+
</wsdl:operation>
|
3737
|
+
<wsdl:operation name="GetPackagePickup">
|
3738
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickup" style="document" />
|
3739
|
+
<wsdl:input>
|
3740
|
+
<soap12:body use="literal" />
|
3741
|
+
</wsdl:input>
|
3742
|
+
<wsdl:output>
|
3743
|
+
<soap12:body use="literal" />
|
3744
|
+
</wsdl:output>
|
3745
|
+
</wsdl:operation>
|
3746
|
+
<wsdl:operation name="GetPackagePickupXML">
|
3747
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupXML" style="document" />
|
3748
|
+
<wsdl:input>
|
3749
|
+
<soap12:body use="literal" />
|
3750
|
+
</wsdl:input>
|
3751
|
+
<wsdl:output>
|
3752
|
+
<soap12:body use="literal" />
|
3753
|
+
</wsdl:output>
|
3754
|
+
</wsdl:operation>
|
3755
|
+
<wsdl:operation name="GetPackagePickupCancel">
|
3756
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupCancel" style="document" />
|
3757
|
+
<wsdl:input>
|
3758
|
+
<soap12:body use="literal" />
|
3759
|
+
</wsdl:input>
|
3760
|
+
<wsdl:output>
|
3761
|
+
<soap12:body use="literal" />
|
3762
|
+
</wsdl:output>
|
3763
|
+
</wsdl:operation>
|
3764
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
3765
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPackagePickupCancelXML" style="document" />
|
3766
|
+
<wsdl:input>
|
3767
|
+
<soap12:body use="literal" />
|
3768
|
+
</wsdl:input>
|
3769
|
+
<wsdl:output>
|
3770
|
+
<soap12:body use="literal" />
|
3771
|
+
</wsdl:output>
|
3772
|
+
</wsdl:operation>
|
3773
|
+
<wsdl:operation name="GetPostageRateTable">
|
3774
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPostageRateTable" style="document" />
|
3775
|
+
<wsdl:input>
|
3776
|
+
<soap12:body use="literal" />
|
3777
|
+
</wsdl:input>
|
3778
|
+
<wsdl:output>
|
3779
|
+
<soap12:body use="literal" />
|
3780
|
+
</wsdl:output>
|
3781
|
+
</wsdl:operation>
|
3782
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
3783
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetPostageRateTableXML" style="document" />
|
3784
|
+
<wsdl:input>
|
3785
|
+
<soap12:body use="literal" />
|
3786
|
+
</wsdl:input>
|
3787
|
+
<wsdl:output>
|
3788
|
+
<soap12:body use="literal" />
|
3789
|
+
</wsdl:output>
|
3790
|
+
</wsdl:operation>
|
3791
|
+
<wsdl:operation name="GetSCAN">
|
3792
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetSCAN" style="document" />
|
3793
|
+
<wsdl:input>
|
3794
|
+
<soap12:body use="literal" />
|
3795
|
+
</wsdl:input>
|
3796
|
+
<wsdl:output>
|
3797
|
+
<soap12:body use="literal" />
|
3798
|
+
</wsdl:output>
|
3799
|
+
</wsdl:operation>
|
3800
|
+
<wsdl:operation name="GetSCANXML">
|
3801
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetSCANXML" style="document" />
|
3802
|
+
<wsdl:input>
|
3803
|
+
<soap12:body use="literal" />
|
3804
|
+
</wsdl:input>
|
3805
|
+
<wsdl:output>
|
3806
|
+
<soap12:body use="literal" />
|
3807
|
+
</wsdl:output>
|
3808
|
+
</wsdl:operation>
|
3809
|
+
<wsdl:operation name="GetRefund">
|
3810
|
+
<soap12:operation soapAction="www.envmgr.com/LabelService/GetRefund" style="document" />
|
3811
|
+
<wsdl:input>
|
3812
|
+
<soap12:body use="literal" />
|
3813
|
+
</wsdl:input>
|
3814
|
+
<wsdl:output>
|
3815
|
+
<soap12:body use="literal" />
|
3816
|
+
</wsdl:output>
|
3817
|
+
</wsdl:operation>
|
3818
|
+
</wsdl:binding>
|
3819
|
+
<wsdl:binding name="EwsLabelServiceHttpGet" type="tns:EwsLabelServiceHttpGet">
|
3820
|
+
<http:binding verb="GET" />
|
3821
|
+
<wsdl:operation name="GetRefundXML">
|
3822
|
+
<http:operation location="/GetRefundXML" />
|
3823
|
+
<wsdl:input>
|
3824
|
+
<http:urlEncoded />
|
3825
|
+
</wsdl:input>
|
3826
|
+
<wsdl:output>
|
3827
|
+
<mime:mimeXml part="Body" />
|
3828
|
+
</wsdl:output>
|
3829
|
+
</wsdl:operation>
|
3830
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
3831
|
+
<http:operation location="/ResetSuspendedAccountXML" />
|
3832
|
+
<wsdl:input>
|
3833
|
+
<http:urlEncoded />
|
3834
|
+
</wsdl:input>
|
3835
|
+
<wsdl:output>
|
3836
|
+
<mime:mimeXml part="Body" />
|
3837
|
+
</wsdl:output>
|
3838
|
+
</wsdl:operation>
|
3839
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
3840
|
+
<http:operation location="/GetChallengeQuestionXML" />
|
3841
|
+
<wsdl:input>
|
3842
|
+
<http:urlEncoded />
|
3843
|
+
</wsdl:input>
|
3844
|
+
<wsdl:output>
|
3845
|
+
<mime:mimeXml part="Body" />
|
3846
|
+
</wsdl:output>
|
3847
|
+
</wsdl:operation>
|
3848
|
+
<wsdl:operation name="GetAccountStatusXML">
|
3849
|
+
<http:operation location="/GetAccountStatusXML" />
|
3850
|
+
<wsdl:input>
|
3851
|
+
<http:urlEncoded />
|
3852
|
+
</wsdl:input>
|
3853
|
+
<wsdl:output>
|
3854
|
+
<mime:mimeXml part="Body" />
|
3855
|
+
</wsdl:output>
|
3856
|
+
</wsdl:operation>
|
3857
|
+
<wsdl:operation name="GetPostageLabelXML">
|
3858
|
+
<http:operation location="/GetPostageLabelXML" />
|
3859
|
+
<wsdl:input>
|
3860
|
+
<http:urlEncoded />
|
3861
|
+
</wsdl:input>
|
3862
|
+
<wsdl:output>
|
3863
|
+
<mime:mimeXml part="Body" />
|
3864
|
+
</wsdl:output>
|
3865
|
+
</wsdl:operation>
|
3866
|
+
<wsdl:operation name="GetVersion">
|
3867
|
+
<http:operation location="/GetVersion" />
|
3868
|
+
<wsdl:input>
|
3869
|
+
<http:urlEncoded />
|
3870
|
+
</wsdl:input>
|
3871
|
+
<wsdl:output>
|
3872
|
+
<mime:mimeXml part="Body" />
|
3873
|
+
</wsdl:output>
|
3874
|
+
</wsdl:operation>
|
3875
|
+
<wsdl:operation name="GetVersionXML">
|
3876
|
+
<http:operation location="/GetVersionXML" />
|
3877
|
+
<wsdl:input>
|
3878
|
+
<http:urlEncoded />
|
3879
|
+
</wsdl:input>
|
3880
|
+
<wsdl:output>
|
3881
|
+
<mime:mimeXml part="Body" />
|
3882
|
+
</wsdl:output>
|
3883
|
+
</wsdl:operation>
|
3884
|
+
<wsdl:operation name="VoideVSLabelXML">
|
3885
|
+
<http:operation location="/VoideVSLabelXML" />
|
3886
|
+
<wsdl:input>
|
3887
|
+
<http:urlEncoded />
|
3888
|
+
</wsdl:input>
|
3889
|
+
<wsdl:output>
|
3890
|
+
<mime:mimeXml part="Body" />
|
3891
|
+
</wsdl:output>
|
3892
|
+
</wsdl:operation>
|
3893
|
+
<wsdl:operation name="BuyPostageXML">
|
3894
|
+
<http:operation location="/BuyPostageXML" />
|
3895
|
+
<wsdl:input>
|
3896
|
+
<http:urlEncoded />
|
3897
|
+
</wsdl:input>
|
3898
|
+
<wsdl:output>
|
3899
|
+
<mime:mimeXml part="Body" />
|
3900
|
+
</wsdl:output>
|
3901
|
+
</wsdl:operation>
|
3902
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
3903
|
+
<http:operation location="/CalculateDdpRateXML" />
|
3904
|
+
<wsdl:input>
|
3905
|
+
<http:urlEncoded />
|
3906
|
+
</wsdl:input>
|
3907
|
+
<wsdl:output>
|
3908
|
+
<mime:mimeXml part="Body" />
|
3909
|
+
</wsdl:output>
|
3910
|
+
</wsdl:operation>
|
3911
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
3912
|
+
<http:operation location="/CalculatePostageRateXML" />
|
3913
|
+
<wsdl:input>
|
3914
|
+
<http:urlEncoded />
|
3915
|
+
</wsdl:input>
|
3916
|
+
<wsdl:output>
|
3917
|
+
<mime:mimeXml part="Body" />
|
3918
|
+
</wsdl:output>
|
3919
|
+
</wsdl:operation>
|
3920
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
3921
|
+
<http:operation location="/ChangePassPhraseXML" />
|
3922
|
+
<wsdl:input>
|
3923
|
+
<http:urlEncoded />
|
3924
|
+
</wsdl:input>
|
3925
|
+
<wsdl:output>
|
3926
|
+
<mime:mimeXml part="Body" />
|
3927
|
+
</wsdl:output>
|
3928
|
+
</wsdl:operation>
|
3929
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
3930
|
+
<http:operation location="/CalculatePostageRatesXML" />
|
3931
|
+
<wsdl:input>
|
3932
|
+
<http:urlEncoded />
|
3933
|
+
</wsdl:input>
|
3934
|
+
<wsdl:output>
|
3935
|
+
<mime:mimeXml part="Body" />
|
3936
|
+
</wsdl:output>
|
3937
|
+
</wsdl:operation>
|
3938
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
3939
|
+
<http:operation location="/CreateDhlgmManifestXML" />
|
3940
|
+
<wsdl:input>
|
3941
|
+
<http:urlEncoded />
|
3942
|
+
</wsdl:input>
|
3943
|
+
<wsdl:output>
|
3944
|
+
<mime:mimeXml part="Body" />
|
3945
|
+
</wsdl:output>
|
3946
|
+
</wsdl:operation>
|
3947
|
+
<wsdl:operation name="StatusRequestXML">
|
3948
|
+
<http:operation location="/StatusRequestXML" />
|
3949
|
+
<wsdl:input>
|
3950
|
+
<http:urlEncoded />
|
3951
|
+
</wsdl:input>
|
3952
|
+
<wsdl:output>
|
3953
|
+
<mime:mimeXml part="Body" />
|
3954
|
+
</wsdl:output>
|
3955
|
+
</wsdl:operation>
|
3956
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
3957
|
+
<http:operation location="/GetRetailAccountsXML" />
|
3958
|
+
<wsdl:input>
|
3959
|
+
<http:urlEncoded />
|
3960
|
+
</wsdl:input>
|
3961
|
+
<wsdl:output>
|
3962
|
+
<mime:mimeXml part="Body" />
|
3963
|
+
</wsdl:output>
|
3964
|
+
</wsdl:operation>
|
3965
|
+
<wsdl:operation name="GetUserSignUpXML">
|
3966
|
+
<http:operation location="/GetUserSignUpXML" />
|
3967
|
+
<wsdl:input>
|
3968
|
+
<http:urlEncoded />
|
3969
|
+
</wsdl:input>
|
3970
|
+
<wsdl:output>
|
3971
|
+
<mime:mimeXml part="Body" />
|
3972
|
+
</wsdl:output>
|
3973
|
+
</wsdl:operation>
|
3974
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
3975
|
+
<http:operation location="/GetTransactionsListingXML" />
|
3976
|
+
<wsdl:input>
|
3977
|
+
<http:urlEncoded />
|
3978
|
+
</wsdl:input>
|
3979
|
+
<wsdl:output>
|
3980
|
+
<mime:mimeXml part="Body" />
|
3981
|
+
</wsdl:output>
|
3982
|
+
</wsdl:operation>
|
3983
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
3984
|
+
<http:operation location="/GetPackagePickupChangeXML" />
|
3985
|
+
<wsdl:input>
|
3986
|
+
<http:urlEncoded />
|
3987
|
+
</wsdl:input>
|
3988
|
+
<wsdl:output>
|
3989
|
+
<mime:mimeXml part="Body" />
|
3990
|
+
</wsdl:output>
|
3991
|
+
</wsdl:operation>
|
3992
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
3993
|
+
<http:operation location="/GetPackagePickupAvailabilityXML" />
|
3994
|
+
<wsdl:input>
|
3995
|
+
<http:urlEncoded />
|
3996
|
+
</wsdl:input>
|
3997
|
+
<wsdl:output>
|
3998
|
+
<mime:mimeXml part="Body" />
|
3999
|
+
</wsdl:output>
|
4000
|
+
</wsdl:operation>
|
4001
|
+
<wsdl:operation name="GetPackagePickupXML">
|
4002
|
+
<http:operation location="/GetPackagePickupXML" />
|
4003
|
+
<wsdl:input>
|
4004
|
+
<http:urlEncoded />
|
4005
|
+
</wsdl:input>
|
4006
|
+
<wsdl:output>
|
4007
|
+
<mime:mimeXml part="Body" />
|
4008
|
+
</wsdl:output>
|
4009
|
+
</wsdl:operation>
|
4010
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
4011
|
+
<http:operation location="/GetPackagePickupCancelXML" />
|
4012
|
+
<wsdl:input>
|
4013
|
+
<http:urlEncoded />
|
4014
|
+
</wsdl:input>
|
4015
|
+
<wsdl:output>
|
4016
|
+
<mime:mimeXml part="Body" />
|
4017
|
+
</wsdl:output>
|
4018
|
+
</wsdl:operation>
|
4019
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
4020
|
+
<http:operation location="/GetPostageRateTableXML" />
|
4021
|
+
<wsdl:input>
|
4022
|
+
<http:urlEncoded />
|
4023
|
+
</wsdl:input>
|
4024
|
+
<wsdl:output>
|
4025
|
+
<mime:mimeXml part="Body" />
|
4026
|
+
</wsdl:output>
|
4027
|
+
</wsdl:operation>
|
4028
|
+
<wsdl:operation name="GetSCANXML">
|
4029
|
+
<http:operation location="/GetSCANXML" />
|
4030
|
+
<wsdl:input>
|
4031
|
+
<http:urlEncoded />
|
4032
|
+
</wsdl:input>
|
4033
|
+
<wsdl:output>
|
4034
|
+
<mime:mimeXml part="Body" />
|
4035
|
+
</wsdl:output>
|
4036
|
+
</wsdl:operation>
|
4037
|
+
</wsdl:binding>
|
4038
|
+
<wsdl:binding name="EwsLabelServiceHttpPost" type="tns:EwsLabelServiceHttpPost">
|
4039
|
+
<http:binding verb="POST" />
|
4040
|
+
<wsdl:operation name="GetRefundXML">
|
4041
|
+
<http:operation location="/GetRefundXML" />
|
4042
|
+
<wsdl:input>
|
4043
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4044
|
+
</wsdl:input>
|
4045
|
+
<wsdl:output>
|
4046
|
+
<mime:mimeXml part="Body" />
|
4047
|
+
</wsdl:output>
|
4048
|
+
</wsdl:operation>
|
4049
|
+
<wsdl:operation name="ResetSuspendedAccountXML">
|
4050
|
+
<http:operation location="/ResetSuspendedAccountXML" />
|
4051
|
+
<wsdl:input>
|
4052
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4053
|
+
</wsdl:input>
|
4054
|
+
<wsdl:output>
|
4055
|
+
<mime:mimeXml part="Body" />
|
4056
|
+
</wsdl:output>
|
4057
|
+
</wsdl:operation>
|
4058
|
+
<wsdl:operation name="GetChallengeQuestionXML">
|
4059
|
+
<http:operation location="/GetChallengeQuestionXML" />
|
4060
|
+
<wsdl:input>
|
4061
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4062
|
+
</wsdl:input>
|
4063
|
+
<wsdl:output>
|
4064
|
+
<mime:mimeXml part="Body" />
|
4065
|
+
</wsdl:output>
|
4066
|
+
</wsdl:operation>
|
4067
|
+
<wsdl:operation name="GetAccountStatusXML">
|
4068
|
+
<http:operation location="/GetAccountStatusXML" />
|
4069
|
+
<wsdl:input>
|
4070
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4071
|
+
</wsdl:input>
|
4072
|
+
<wsdl:output>
|
4073
|
+
<mime:mimeXml part="Body" />
|
4074
|
+
</wsdl:output>
|
4075
|
+
</wsdl:operation>
|
4076
|
+
<wsdl:operation name="GetPostageLabelXML">
|
4077
|
+
<http:operation location="/GetPostageLabelXML" />
|
4078
|
+
<wsdl:input>
|
4079
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4080
|
+
</wsdl:input>
|
4081
|
+
<wsdl:output>
|
4082
|
+
<mime:mimeXml part="Body" />
|
4083
|
+
</wsdl:output>
|
4084
|
+
</wsdl:operation>
|
4085
|
+
<wsdl:operation name="GetVersion">
|
4086
|
+
<http:operation location="/GetVersion" />
|
4087
|
+
<wsdl:input>
|
4088
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4089
|
+
</wsdl:input>
|
4090
|
+
<wsdl:output>
|
4091
|
+
<mime:mimeXml part="Body" />
|
4092
|
+
</wsdl:output>
|
4093
|
+
</wsdl:operation>
|
4094
|
+
<wsdl:operation name="GetVersionXML">
|
4095
|
+
<http:operation location="/GetVersionXML" />
|
4096
|
+
<wsdl:input>
|
4097
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4098
|
+
</wsdl:input>
|
4099
|
+
<wsdl:output>
|
4100
|
+
<mime:mimeXml part="Body" />
|
4101
|
+
</wsdl:output>
|
4102
|
+
</wsdl:operation>
|
4103
|
+
<wsdl:operation name="VoideVSLabelXML">
|
4104
|
+
<http:operation location="/VoideVSLabelXML" />
|
4105
|
+
<wsdl:input>
|
4106
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4107
|
+
</wsdl:input>
|
4108
|
+
<wsdl:output>
|
4109
|
+
<mime:mimeXml part="Body" />
|
4110
|
+
</wsdl:output>
|
4111
|
+
</wsdl:operation>
|
4112
|
+
<wsdl:operation name="BuyPostageXML">
|
4113
|
+
<http:operation location="/BuyPostageXML" />
|
4114
|
+
<wsdl:input>
|
4115
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4116
|
+
</wsdl:input>
|
4117
|
+
<wsdl:output>
|
4118
|
+
<mime:mimeXml part="Body" />
|
4119
|
+
</wsdl:output>
|
4120
|
+
</wsdl:operation>
|
4121
|
+
<wsdl:operation name="CalculateDdpRateXML">
|
4122
|
+
<http:operation location="/CalculateDdpRateXML" />
|
4123
|
+
<wsdl:input>
|
4124
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4125
|
+
</wsdl:input>
|
4126
|
+
<wsdl:output>
|
4127
|
+
<mime:mimeXml part="Body" />
|
4128
|
+
</wsdl:output>
|
4129
|
+
</wsdl:operation>
|
4130
|
+
<wsdl:operation name="CalculatePostageRateXML">
|
4131
|
+
<http:operation location="/CalculatePostageRateXML" />
|
4132
|
+
<wsdl:input>
|
4133
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4134
|
+
</wsdl:input>
|
4135
|
+
<wsdl:output>
|
4136
|
+
<mime:mimeXml part="Body" />
|
4137
|
+
</wsdl:output>
|
4138
|
+
</wsdl:operation>
|
4139
|
+
<wsdl:operation name="ChangePassPhraseXML">
|
4140
|
+
<http:operation location="/ChangePassPhraseXML" />
|
4141
|
+
<wsdl:input>
|
4142
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4143
|
+
</wsdl:input>
|
4144
|
+
<wsdl:output>
|
4145
|
+
<mime:mimeXml part="Body" />
|
4146
|
+
</wsdl:output>
|
4147
|
+
</wsdl:operation>
|
4148
|
+
<wsdl:operation name="CalculatePostageRatesXML">
|
4149
|
+
<http:operation location="/CalculatePostageRatesXML" />
|
4150
|
+
<wsdl:input>
|
4151
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4152
|
+
</wsdl:input>
|
4153
|
+
<wsdl:output>
|
4154
|
+
<mime:mimeXml part="Body" />
|
4155
|
+
</wsdl:output>
|
4156
|
+
</wsdl:operation>
|
4157
|
+
<wsdl:operation name="CreateDhlgmManifestXML">
|
4158
|
+
<http:operation location="/CreateDhlgmManifestXML" />
|
4159
|
+
<wsdl:input>
|
4160
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4161
|
+
</wsdl:input>
|
4162
|
+
<wsdl:output>
|
4163
|
+
<mime:mimeXml part="Body" />
|
4164
|
+
</wsdl:output>
|
4165
|
+
</wsdl:operation>
|
4166
|
+
<wsdl:operation name="StatusRequestXML">
|
4167
|
+
<http:operation location="/StatusRequestXML" />
|
4168
|
+
<wsdl:input>
|
4169
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4170
|
+
</wsdl:input>
|
4171
|
+
<wsdl:output>
|
4172
|
+
<mime:mimeXml part="Body" />
|
4173
|
+
</wsdl:output>
|
4174
|
+
</wsdl:operation>
|
4175
|
+
<wsdl:operation name="GetRetailAccountsXML">
|
4176
|
+
<http:operation location="/GetRetailAccountsXML" />
|
4177
|
+
<wsdl:input>
|
4178
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4179
|
+
</wsdl:input>
|
4180
|
+
<wsdl:output>
|
4181
|
+
<mime:mimeXml part="Body" />
|
4182
|
+
</wsdl:output>
|
4183
|
+
</wsdl:operation>
|
4184
|
+
<wsdl:operation name="GetUserSignUpXML">
|
4185
|
+
<http:operation location="/GetUserSignUpXML" />
|
4186
|
+
<wsdl:input>
|
4187
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4188
|
+
</wsdl:input>
|
4189
|
+
<wsdl:output>
|
4190
|
+
<mime:mimeXml part="Body" />
|
4191
|
+
</wsdl:output>
|
4192
|
+
</wsdl:operation>
|
4193
|
+
<wsdl:operation name="GetTransactionsListingXML">
|
4194
|
+
<http:operation location="/GetTransactionsListingXML" />
|
4195
|
+
<wsdl:input>
|
4196
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4197
|
+
</wsdl:input>
|
4198
|
+
<wsdl:output>
|
4199
|
+
<mime:mimeXml part="Body" />
|
4200
|
+
</wsdl:output>
|
4201
|
+
</wsdl:operation>
|
4202
|
+
<wsdl:operation name="GetPackagePickupChangeXML">
|
4203
|
+
<http:operation location="/GetPackagePickupChangeXML" />
|
4204
|
+
<wsdl:input>
|
4205
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4206
|
+
</wsdl:input>
|
4207
|
+
<wsdl:output>
|
4208
|
+
<mime:mimeXml part="Body" />
|
4209
|
+
</wsdl:output>
|
4210
|
+
</wsdl:operation>
|
4211
|
+
<wsdl:operation name="GetPackagePickupAvailabilityXML">
|
4212
|
+
<http:operation location="/GetPackagePickupAvailabilityXML" />
|
4213
|
+
<wsdl:input>
|
4214
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4215
|
+
</wsdl:input>
|
4216
|
+
<wsdl:output>
|
4217
|
+
<mime:mimeXml part="Body" />
|
4218
|
+
</wsdl:output>
|
4219
|
+
</wsdl:operation>
|
4220
|
+
<wsdl:operation name="GetPackagePickupXML">
|
4221
|
+
<http:operation location="/GetPackagePickupXML" />
|
4222
|
+
<wsdl:input>
|
4223
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4224
|
+
</wsdl:input>
|
4225
|
+
<wsdl:output>
|
4226
|
+
<mime:mimeXml part="Body" />
|
4227
|
+
</wsdl:output>
|
4228
|
+
</wsdl:operation>
|
4229
|
+
<wsdl:operation name="GetPackagePickupCancelXML">
|
4230
|
+
<http:operation location="/GetPackagePickupCancelXML" />
|
4231
|
+
<wsdl:input>
|
4232
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4233
|
+
</wsdl:input>
|
4234
|
+
<wsdl:output>
|
4235
|
+
<mime:mimeXml part="Body" />
|
4236
|
+
</wsdl:output>
|
4237
|
+
</wsdl:operation>
|
4238
|
+
<wsdl:operation name="GetPostageRateTableXML">
|
4239
|
+
<http:operation location="/GetPostageRateTableXML" />
|
4240
|
+
<wsdl:input>
|
4241
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4242
|
+
</wsdl:input>
|
4243
|
+
<wsdl:output>
|
4244
|
+
<mime:mimeXml part="Body" />
|
4245
|
+
</wsdl:output>
|
4246
|
+
</wsdl:operation>
|
4247
|
+
<wsdl:operation name="GetSCANXML">
|
4248
|
+
<http:operation location="/GetSCANXML" />
|
4249
|
+
<wsdl:input>
|
4250
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
4251
|
+
</wsdl:input>
|
4252
|
+
<wsdl:output>
|
4253
|
+
<mime:mimeXml part="Body" />
|
4254
|
+
</wsdl:output>
|
4255
|
+
</wsdl:operation>
|
4256
|
+
</wsdl:binding>
|
4257
|
+
<wsdl:service name="EwsLabelService">
|
4258
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">You have reached the Help page for the Label Server Web Service.</wsdl:documentation>
|
4259
|
+
<wsdl:port name="EwsLabelServiceSoap" binding="tns:EwsLabelServiceSoap">
|
4260
|
+
<soap:address location="http://elstestserver.endicia.com/LabelService/EwsLabelService.asmx" />
|
4261
|
+
</wsdl:port>
|
4262
|
+
<wsdl:port name="EwsLabelServiceSoap12" binding="tns:EwsLabelServiceSoap12">
|
4263
|
+
<soap12:address location="http://elstestserver.endicia.com/LabelService/EwsLabelService.asmx" />
|
4264
|
+
</wsdl:port>
|
4265
|
+
<wsdl:port name="EwsLabelServiceHttpGet" binding="tns:EwsLabelServiceHttpGet">
|
4266
|
+
<http:address location="http://elstestserver.endicia.com/LabelService/EwsLabelService.asmx" />
|
4267
|
+
</wsdl:port>
|
4268
|
+
<wsdl:port name="EwsLabelServiceHttpPost" binding="tns:EwsLabelServiceHttpPost">
|
4269
|
+
<http:address location="http://elstestserver.endicia.com/LabelService/EwsLabelService.asmx" />
|
4270
|
+
</wsdl:port>
|
4271
|
+
</wsdl:service>
|
4272
|
+
</wsdl:definitions>
|