postalmethods 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest.txt +4 -0
- data/lib/postalmethods.rb +1 -1
- data/lib/postalmethods.wsdl +1739 -0
- data/lib/postalmethods/send_postcard.rb +95 -0
- data/postalmethods.gemspec +9 -2
- data/spec/doc/sample_image.jpg +0 -0
- data/spec/send_postcard_spec.rb +126 -0
- metadata +7 -3
data/Manifest.txt
CHANGED
@@ -8,15 +8,19 @@ Rakefile
|
|
8
8
|
config/hoe.rb
|
9
9
|
config/requirements.rb
|
10
10
|
lib/postalmethods.rb
|
11
|
+
lib/postalmethods.wsdl
|
11
12
|
lib/postalmethods/document_processor.rb
|
12
13
|
lib/postalmethods/exceptions.rb
|
13
14
|
lib/postalmethods/get_letter_status.rb
|
14
15
|
lib/postalmethods/send_letter.rb
|
15
16
|
lib/postalmethods/send_postcard.rb
|
16
17
|
lib/postalmethods/utility.rb
|
18
|
+
setup.rb
|
17
19
|
spec/doc/WSDL-Output
|
18
20
|
spec/doc/default.rb
|
19
21
|
spec/doc/defaultMappingRegistry.rb
|
22
|
+
spec/doc/postcard_address_side_with_return_address.html
|
23
|
+
spec/doc/postcard_image_side_with_return_address.html
|
20
24
|
spec/doc/sample.pdf
|
21
25
|
spec/doc/sample_image.jpg
|
22
26
|
spec/document_processor_spec.rb
|
data/lib/postalmethods.rb
CHANGED
@@ -0,0 +1,1739 @@
|
|
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="PostalMethods" xmlns:s1="PostalMethods/AbstractTypes" 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="PostalMethods" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
3
|
+
<wsdl:types>
|
4
|
+
<s:schema elementFormDefault="qualified" targetNamespace="PostalMethods">
|
5
|
+
<s:element name="SendLetterAdvanced">
|
6
|
+
<s:complexType>
|
7
|
+
<s:sequence>
|
8
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
9
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
10
|
+
<s:element minOccurs="0" maxOccurs="1" name="Files" type="tns:ArrayOfFile" />
|
11
|
+
<s:element minOccurs="0" maxOccurs="1" name="Addresses" type="tns:Addresses" />
|
12
|
+
<s:element minOccurs="0" maxOccurs="1" name="Settings" type="tns:LetterSettings" />
|
13
|
+
</s:sequence>
|
14
|
+
</s:complexType>
|
15
|
+
</s:element>
|
16
|
+
<s:complexType name="ArrayOfFile">
|
17
|
+
<s:sequence>
|
18
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="File" nillable="true" type="tns:File" />
|
19
|
+
</s:sequence>
|
20
|
+
</s:complexType>
|
21
|
+
<s:complexType name="File">
|
22
|
+
<s:sequence>
|
23
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileExtension" type="s:string" />
|
24
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileBinaryData" type="s:base64Binary" />
|
25
|
+
</s:sequence>
|
26
|
+
</s:complexType>
|
27
|
+
<s:complexType name="Addresses">
|
28
|
+
<s:sequence>
|
29
|
+
<s:element minOccurs="1" maxOccurs="1" name="RecipientAddress" nillable="true" type="tns:Contact" />
|
30
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReplyAddress" nillable="true" type="tns:ReplyAddress" />
|
31
|
+
</s:sequence>
|
32
|
+
</s:complexType>
|
33
|
+
<s:complexType name="Contact">
|
34
|
+
<s:sequence>
|
35
|
+
<s:element minOccurs="0" maxOccurs="1" name="AttentionLine1" type="s:string" />
|
36
|
+
<s:element minOccurs="0" maxOccurs="1" name="AttentionLine2" type="s:string" />
|
37
|
+
<s:element minOccurs="0" maxOccurs="1" name="Company" type="s:string" />
|
38
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address1" type="s:string" />
|
39
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address2" type="s:string" />
|
40
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
41
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
42
|
+
<s:element minOccurs="0" maxOccurs="1" name="Zipcode" type="s:string" />
|
43
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
44
|
+
</s:sequence>
|
45
|
+
</s:complexType>
|
46
|
+
<s:complexType name="ReplyAddress">
|
47
|
+
<s:sequence>
|
48
|
+
<s:element minOccurs="1" maxOccurs="1" name="Contact" type="tns:Contact" />
|
49
|
+
<s:element minOccurs="1" maxOccurs="1" name="StampingLocation" type="tns:ReplyAddressLocation" />
|
50
|
+
</s:sequence>
|
51
|
+
</s:complexType>
|
52
|
+
<s:simpleType name="ReplyAddressLocation">
|
53
|
+
<s:restriction base="s:string">
|
54
|
+
<s:enumeration value="Top" />
|
55
|
+
<s:enumeration value="Bottom" />
|
56
|
+
</s:restriction>
|
57
|
+
</s:simpleType>
|
58
|
+
<s:complexType name="LetterSettings">
|
59
|
+
<s:sequence>
|
60
|
+
<s:element minOccurs="1" maxOccurs="1" name="Perforation" nillable="true" type="tns:Perforation" />
|
61
|
+
<s:element minOccurs="1" maxOccurs="1" name="ReplyEnvelope" nillable="true" type="tns:ReplyEnvelope" />
|
62
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" nillable="true" type="tns:WorkMode" />
|
63
|
+
<s:element minOccurs="1" maxOccurs="1" name="PrintColor" nillable="true" type="tns:PrintColor" />
|
64
|
+
</s:sequence>
|
65
|
+
</s:complexType>
|
66
|
+
<s:simpleType name="Perforation">
|
67
|
+
<s:restriction base="s:string">
|
68
|
+
<s:enumeration value="BottomThird" />
|
69
|
+
</s:restriction>
|
70
|
+
</s:simpleType>
|
71
|
+
<s:simpleType name="ReplyEnvelope">
|
72
|
+
<s:restriction base="s:string">
|
73
|
+
<s:enumeration value="Env9ReplySingleWindow" />
|
74
|
+
</s:restriction>
|
75
|
+
</s:simpleType>
|
76
|
+
<s:simpleType name="WorkMode">
|
77
|
+
<s:restriction base="s:string">
|
78
|
+
<s:enumeration value="Default" />
|
79
|
+
<s:enumeration value="Production" />
|
80
|
+
<s:enumeration value="Development" />
|
81
|
+
</s:restriction>
|
82
|
+
</s:simpleType>
|
83
|
+
<s:simpleType name="PrintColor">
|
84
|
+
<s:restriction base="s:string">
|
85
|
+
<s:enumeration value="Default" />
|
86
|
+
<s:enumeration value="Black" />
|
87
|
+
<s:enumeration value="FullColor" />
|
88
|
+
</s:restriction>
|
89
|
+
</s:simpleType>
|
90
|
+
<s:element name="SendLetterAdvancedResponse">
|
91
|
+
<s:complexType>
|
92
|
+
<s:sequence>
|
93
|
+
<s:element minOccurs="1" maxOccurs="1" name="SendLetterAdvancedResult" type="s:int" />
|
94
|
+
</s:sequence>
|
95
|
+
</s:complexType>
|
96
|
+
</s:element>
|
97
|
+
<s:element name="SendLetter">
|
98
|
+
<s:complexType>
|
99
|
+
<s:sequence>
|
100
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
101
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
102
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileExtension" type="s:string" />
|
103
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileBinaryData" type="s:base64Binary" />
|
104
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:WorkMode" />
|
105
|
+
</s:sequence>
|
106
|
+
</s:complexType>
|
107
|
+
</s:element>
|
108
|
+
<s:element name="SendLetterResponse">
|
109
|
+
<s:complexType>
|
110
|
+
<s:sequence>
|
111
|
+
<s:element minOccurs="1" maxOccurs="1" name="SendLetterResult" type="s:int" />
|
112
|
+
</s:sequence>
|
113
|
+
</s:complexType>
|
114
|
+
</s:element>
|
115
|
+
<s:element name="SendLetterAndAddress">
|
116
|
+
<s:complexType>
|
117
|
+
<s:sequence>
|
118
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
119
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
120
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileExtension" type="s:string" />
|
121
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileBinaryData" type="s:base64Binary" />
|
122
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:WorkMode" />
|
123
|
+
<s:element minOccurs="0" maxOccurs="1" name="AttentionLine1" type="s:string" />
|
124
|
+
<s:element minOccurs="0" maxOccurs="1" name="AttentionLine2" type="s:string" />
|
125
|
+
<s:element minOccurs="0" maxOccurs="1" name="Company" type="s:string" />
|
126
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address1" type="s:string" />
|
127
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address2" type="s:string" />
|
128
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
129
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
130
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostalCode" type="s:string" />
|
131
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
132
|
+
</s:sequence>
|
133
|
+
</s:complexType>
|
134
|
+
</s:element>
|
135
|
+
<s:element name="SendLetterAndAddressResponse">
|
136
|
+
<s:complexType>
|
137
|
+
<s:sequence>
|
138
|
+
<s:element minOccurs="1" maxOccurs="1" name="SendLetterAndAddressResult" type="s:int" />
|
139
|
+
</s:sequence>
|
140
|
+
</s:complexType>
|
141
|
+
</s:element>
|
142
|
+
<s:element name="SendPostcardAndAddress">
|
143
|
+
<s:complexType>
|
144
|
+
<s:sequence>
|
145
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
146
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
147
|
+
<s:element minOccurs="0" maxOccurs="1" name="ImageSideFileType" type="s:string" />
|
148
|
+
<s:element minOccurs="0" maxOccurs="1" name="ImageSideBinaryData" type="s:base64Binary" />
|
149
|
+
<s:element minOccurs="1" maxOccurs="1" name="ImageSideScaling" type="tns:ImageSideScaling" />
|
150
|
+
<s:element minOccurs="0" maxOccurs="1" name="AddressSideFileType" type="s:string" />
|
151
|
+
<s:element minOccurs="0" maxOccurs="1" name="AddressSideBinaryData" type="s:base64Binary" />
|
152
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:WorkMode" />
|
153
|
+
<s:element minOccurs="1" maxOccurs="1" name="PrintColor" type="tns:PrintColor" />
|
154
|
+
<s:element minOccurs="1" maxOccurs="1" name="PostcardSize" type="tns:PostcardSize" />
|
155
|
+
<s:element minOccurs="1" maxOccurs="1" name="MailingPriority" type="tns:MailingPriority" />
|
156
|
+
<s:element minOccurs="0" maxOccurs="1" name="AttentionLine1" type="s:string" />
|
157
|
+
<s:element minOccurs="0" maxOccurs="1" name="AttentionLine2" type="s:string" />
|
158
|
+
<s:element minOccurs="0" maxOccurs="1" name="Company" type="s:string" />
|
159
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address1" type="s:string" />
|
160
|
+
<s:element minOccurs="0" maxOccurs="1" name="Address2" type="s:string" />
|
161
|
+
<s:element minOccurs="0" maxOccurs="1" name="City" type="s:string" />
|
162
|
+
<s:element minOccurs="0" maxOccurs="1" name="State" type="s:string" />
|
163
|
+
<s:element minOccurs="0" maxOccurs="1" name="PostalCode" type="s:string" />
|
164
|
+
<s:element minOccurs="0" maxOccurs="1" name="Country" type="s:string" />
|
165
|
+
</s:sequence>
|
166
|
+
</s:complexType>
|
167
|
+
</s:element>
|
168
|
+
<s:simpleType name="ImageSideScaling">
|
169
|
+
<s:restriction base="s:string">
|
170
|
+
<s:enumeration value="Default" />
|
171
|
+
<s:enumeration value="FitToPage" />
|
172
|
+
<s:enumeration value="None" />
|
173
|
+
</s:restriction>
|
174
|
+
</s:simpleType>
|
175
|
+
<s:simpleType name="PostcardSize">
|
176
|
+
<s:restriction base="s:string">
|
177
|
+
<s:enumeration value="Default" />
|
178
|
+
<s:enumeration value="Postcard_4_25X6" />
|
179
|
+
</s:restriction>
|
180
|
+
</s:simpleType>
|
181
|
+
<s:simpleType name="MailingPriority">
|
182
|
+
<s:restriction base="s:string">
|
183
|
+
<s:enumeration value="Default" />
|
184
|
+
<s:enumeration value="FirstClass" />
|
185
|
+
</s:restriction>
|
186
|
+
</s:simpleType>
|
187
|
+
<s:element name="SendPostcardAndAddressResponse">
|
188
|
+
<s:complexType>
|
189
|
+
<s:sequence>
|
190
|
+
<s:element minOccurs="1" maxOccurs="1" name="SendPostcardAndAddressResult" type="s:int" />
|
191
|
+
</s:sequence>
|
192
|
+
</s:complexType>
|
193
|
+
</s:element>
|
194
|
+
<s:element name="SendWordMailMerge_Compressed">
|
195
|
+
<s:complexType>
|
196
|
+
<s:sequence>
|
197
|
+
<s:element minOccurs="0" maxOccurs="1" name="Username" type="s:string" />
|
198
|
+
<s:element minOccurs="0" maxOccurs="1" name="Password" type="s:string" />
|
199
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
200
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileExtension" type="s:string" />
|
201
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileBinaryData" type="s:base64Binary" />
|
202
|
+
<s:element minOccurs="0" maxOccurs="1" name="MergeData" type="s:base64Binary" />
|
203
|
+
<s:element minOccurs="0" maxOccurs="1" name="ClientVersion" type="s:string" />
|
204
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:WorkMode" />
|
205
|
+
</s:sequence>
|
206
|
+
</s:complexType>
|
207
|
+
</s:element>
|
208
|
+
<s:element name="SendWordMailMerge_CompressedResponse">
|
209
|
+
<s:complexType>
|
210
|
+
<s:sequence>
|
211
|
+
<s:element minOccurs="1" maxOccurs="1" name="SendWordMailMerge_CompressedResult" type="tns:SendWordMailMergeResult" />
|
212
|
+
</s:sequence>
|
213
|
+
</s:complexType>
|
214
|
+
</s:element>
|
215
|
+
<s:complexType name="SendWordMailMergeResult">
|
216
|
+
<s:sequence>
|
217
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
218
|
+
<s:element minOccurs="0" maxOccurs="1" name="ResultDescription" type="s:string" />
|
219
|
+
</s:sequence>
|
220
|
+
</s:complexType>
|
221
|
+
<s:element name="GetPDF">
|
222
|
+
<s:complexType>
|
223
|
+
<s:sequence>
|
224
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
225
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
226
|
+
</s:sequence>
|
227
|
+
</s:complexType>
|
228
|
+
</s:element>
|
229
|
+
<s:element name="GetPDFResponse">
|
230
|
+
<s:complexType>
|
231
|
+
<s:sequence>
|
232
|
+
<s:element minOccurs="1" maxOccurs="1" name="GetPDFResult" type="tns:GetPDFResult" />
|
233
|
+
</s:sequence>
|
234
|
+
</s:complexType>
|
235
|
+
</s:element>
|
236
|
+
<s:complexType name="GetPDFResult">
|
237
|
+
<s:sequence>
|
238
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
239
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileData" type="s:base64Binary" />
|
240
|
+
</s:sequence>
|
241
|
+
</s:complexType>
|
242
|
+
<s:element name="CancelDelivery">
|
243
|
+
<s:complexType>
|
244
|
+
<s:sequence>
|
245
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
246
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
247
|
+
</s:sequence>
|
248
|
+
</s:complexType>
|
249
|
+
</s:element>
|
250
|
+
<s:element name="CancelDeliveryResponse">
|
251
|
+
<s:complexType>
|
252
|
+
<s:sequence>
|
253
|
+
<s:element minOccurs="1" maxOccurs="1" name="CancelDeliveryResult" type="s:int" />
|
254
|
+
</s:sequence>
|
255
|
+
</s:complexType>
|
256
|
+
</s:element>
|
257
|
+
<s:element name="UploadFile">
|
258
|
+
<s:complexType>
|
259
|
+
<s:sequence>
|
260
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
261
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyFileName" type="s:string" />
|
262
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileBinaryData" type="s:base64Binary" />
|
263
|
+
<s:element minOccurs="1" maxOccurs="1" name="Permissions" type="tns:Permissions" />
|
264
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
265
|
+
<s:element minOccurs="1" maxOccurs="1" name="Overwrite" type="s:boolean" />
|
266
|
+
</s:sequence>
|
267
|
+
</s:complexType>
|
268
|
+
</s:element>
|
269
|
+
<s:simpleType name="Permissions">
|
270
|
+
<s:restriction base="s:string">
|
271
|
+
<s:enumeration value="Account" />
|
272
|
+
<s:enumeration value="User" />
|
273
|
+
</s:restriction>
|
274
|
+
</s:simpleType>
|
275
|
+
<s:element name="UploadFileResponse">
|
276
|
+
<s:complexType>
|
277
|
+
<s:sequence>
|
278
|
+
<s:element minOccurs="1" maxOccurs="1" name="UploadFileResult" type="s:int" />
|
279
|
+
</s:sequence>
|
280
|
+
</s:complexType>
|
281
|
+
</s:element>
|
282
|
+
<s:element name="DeleteUploadedFile">
|
283
|
+
<s:complexType>
|
284
|
+
<s:sequence>
|
285
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
286
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyFileName" type="s:string" />
|
287
|
+
</s:sequence>
|
288
|
+
</s:complexType>
|
289
|
+
</s:element>
|
290
|
+
<s:element name="DeleteUploadedFileResponse">
|
291
|
+
<s:complexType>
|
292
|
+
<s:sequence>
|
293
|
+
<s:element minOccurs="1" maxOccurs="1" name="DeleteUploadedFileResult" type="s:int" />
|
294
|
+
</s:sequence>
|
295
|
+
</s:complexType>
|
296
|
+
</s:element>
|
297
|
+
<s:element name="GetUploadedFileDetails">
|
298
|
+
<s:complexType>
|
299
|
+
<s:sequence>
|
300
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
301
|
+
</s:sequence>
|
302
|
+
</s:complexType>
|
303
|
+
</s:element>
|
304
|
+
<s:element name="GetUploadedFileDetailsResponse">
|
305
|
+
<s:complexType>
|
306
|
+
<s:sequence>
|
307
|
+
<s:element minOccurs="1" maxOccurs="1" name="GetUploadedFileDetailsResult" type="tns:GetUploadedFileDetailsResult" />
|
308
|
+
</s:sequence>
|
309
|
+
</s:complexType>
|
310
|
+
</s:element>
|
311
|
+
<s:complexType name="GetUploadedFileDetailsResult">
|
312
|
+
<s:sequence>
|
313
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
314
|
+
<s:element minOccurs="0" maxOccurs="1" name="UploadedFiles" type="tns:ArrayOfFileDetails" />
|
315
|
+
</s:sequence>
|
316
|
+
</s:complexType>
|
317
|
+
<s:complexType name="ArrayOfFileDetails">
|
318
|
+
<s:sequence>
|
319
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="FileDetails" type="tns:FileDetails" />
|
320
|
+
</s:sequence>
|
321
|
+
</s:complexType>
|
322
|
+
<s:complexType name="FileDetails">
|
323
|
+
<s:sequence>
|
324
|
+
<s:element minOccurs="0" maxOccurs="1" name="FileName" type="s:string" />
|
325
|
+
<s:element minOccurs="1" maxOccurs="1" name="SubmitTime" type="s:dateTime" />
|
326
|
+
<s:element minOccurs="1" maxOccurs="1" name="LastUsage" type="s:dateTime" />
|
327
|
+
<s:element minOccurs="0" maxOccurs="1" name="Permissions" type="s:string" />
|
328
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
329
|
+
</s:sequence>
|
330
|
+
</s:complexType>
|
331
|
+
<s:element name="GetDetails">
|
332
|
+
<s:complexType>
|
333
|
+
<s:sequence>
|
334
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
335
|
+
<s:element minOccurs="0" maxOccurs="1" name="ID" type="s:string" />
|
336
|
+
</s:sequence>
|
337
|
+
</s:complexType>
|
338
|
+
</s:element>
|
339
|
+
<s:element name="GetDetailsResponse">
|
340
|
+
<s:complexType>
|
341
|
+
<s:sequence>
|
342
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetDetailsResult" type="tns:GetDetailsResult" />
|
343
|
+
</s:sequence>
|
344
|
+
</s:complexType>
|
345
|
+
</s:element>
|
346
|
+
<s:complexType name="GetDetailsResult">
|
347
|
+
<s:complexContent mixed="false">
|
348
|
+
<s:extension base="tns:GetGeneralDetailsResult">
|
349
|
+
<s:sequence>
|
350
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
351
|
+
<s:element minOccurs="0" maxOccurs="1" name="Details" type="tns:ArrayOfDetails" />
|
352
|
+
</s:sequence>
|
353
|
+
</s:extension>
|
354
|
+
</s:complexContent>
|
355
|
+
</s:complexType>
|
356
|
+
<s:complexType name="GetGeneralDetailsResult" />
|
357
|
+
<s:complexType name="ArrayOfDetails">
|
358
|
+
<s:sequence>
|
359
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="Details" nillable="true" type="tns:Details" />
|
360
|
+
</s:sequence>
|
361
|
+
</s:complexType>
|
362
|
+
<s:complexType name="Details">
|
363
|
+
<s:complexContent mixed="false">
|
364
|
+
<s:extension base="tns:GeneralDetails">
|
365
|
+
<s:sequence>
|
366
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
367
|
+
<s:element minOccurs="1" maxOccurs="1" name="Price" type="s:decimal" />
|
368
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumOfSheets" type="s:int" />
|
369
|
+
<s:element minOccurs="1" maxOccurs="1" name="SubmitTime" type="s:dateTime" />
|
370
|
+
<s:element minOccurs="1" maxOccurs="1" name="CompletionTime" type="s:dateTime" />
|
371
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
372
|
+
<s:element minOccurs="0" maxOccurs="1" name="StatusDescription" type="s:string" />
|
373
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsBatch" type="s:boolean" />
|
374
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
375
|
+
<s:element minOccurs="1" maxOccurs="1" name="MailerType" type="tns:MailerType" />
|
376
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:DetailsWorkMode" />
|
377
|
+
</s:sequence>
|
378
|
+
</s:extension>
|
379
|
+
</s:complexContent>
|
380
|
+
</s:complexType>
|
381
|
+
<s:complexType name="GeneralDetails" abstract="true" />
|
382
|
+
<s:simpleType name="MailerType">
|
383
|
+
<s:restriction base="s:string">
|
384
|
+
<s:enumeration value="Letter" />
|
385
|
+
<s:enumeration value="Postcard" />
|
386
|
+
</s:restriction>
|
387
|
+
</s:simpleType>
|
388
|
+
<s:simpleType name="DetailsWorkMode">
|
389
|
+
<s:restriction base="s:string">
|
390
|
+
<s:enumeration value="Production" />
|
391
|
+
<s:enumeration value="Development" />
|
392
|
+
</s:restriction>
|
393
|
+
</s:simpleType>
|
394
|
+
<s:element name="GetDetailsExtended">
|
395
|
+
<s:complexType>
|
396
|
+
<s:sequence>
|
397
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
398
|
+
<s:element minOccurs="0" maxOccurs="1" name="ID" type="s:string" />
|
399
|
+
</s:sequence>
|
400
|
+
</s:complexType>
|
401
|
+
</s:element>
|
402
|
+
<s:element name="GetDetailsExtendedResponse">
|
403
|
+
<s:complexType>
|
404
|
+
<s:sequence>
|
405
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetDetailsExtendedResult" type="tns:GetDetailsExtendedResult" />
|
406
|
+
</s:sequence>
|
407
|
+
</s:complexType>
|
408
|
+
</s:element>
|
409
|
+
<s:complexType name="GetDetailsExtendedResult">
|
410
|
+
<s:complexContent mixed="false">
|
411
|
+
<s:extension base="tns:GetGeneralDetailsResult">
|
412
|
+
<s:sequence>
|
413
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
414
|
+
<s:element minOccurs="0" maxOccurs="1" name="Details" type="tns:ArrayOfExtendedDetails" />
|
415
|
+
</s:sequence>
|
416
|
+
</s:extension>
|
417
|
+
</s:complexContent>
|
418
|
+
</s:complexType>
|
419
|
+
<s:complexType name="ArrayOfExtendedDetails">
|
420
|
+
<s:sequence>
|
421
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ExtendedDetails" nillable="true" type="tns:ExtendedDetails" />
|
422
|
+
</s:sequence>
|
423
|
+
</s:complexType>
|
424
|
+
<s:complexType name="ExtendedDetails">
|
425
|
+
<s:complexContent mixed="false">
|
426
|
+
<s:extension base="tns:GeneralDetails">
|
427
|
+
<s:sequence>
|
428
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
429
|
+
<s:element minOccurs="1" maxOccurs="1" name="Price" type="s:decimal" />
|
430
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumOfSheets" type="s:int" />
|
431
|
+
<s:element minOccurs="1" maxOccurs="1" name="SubmitTime" type="s:dateTime" />
|
432
|
+
<s:element minOccurs="1" maxOccurs="1" name="CompletionTime" type="s:dateTime" />
|
433
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
434
|
+
<s:element minOccurs="0" maxOccurs="1" name="StatusDescription" type="s:string" />
|
435
|
+
<s:element minOccurs="1" maxOccurs="1" name="IsBatch" type="s:boolean" />
|
436
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
437
|
+
<s:element minOccurs="1" maxOccurs="1" name="MailerType" type="tns:MailerType" />
|
438
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:DetailsWorkMode" />
|
439
|
+
<s:element minOccurs="0" maxOccurs="1" name="Orientation" type="s:string" />
|
440
|
+
<s:element minOccurs="0" maxOccurs="1" name="Envelope" type="s:string" />
|
441
|
+
<s:element minOccurs="0" maxOccurs="1" name="Paper" type="s:string" />
|
442
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintColor" type="s:string" />
|
443
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintSides" type="s:string" />
|
444
|
+
<s:element minOccurs="0" maxOccurs="1" name="Postcard" type="s:string" />
|
445
|
+
<s:element minOccurs="0" maxOccurs="1" name="NationalMailing" type="s:string" />
|
446
|
+
<s:element minOccurs="0" maxOccurs="1" name="InternationalMailing" type="s:string" />
|
447
|
+
</s:sequence>
|
448
|
+
</s:extension>
|
449
|
+
</s:complexContent>
|
450
|
+
</s:complexType>
|
451
|
+
<s:element name="GetStatus">
|
452
|
+
<s:complexType>
|
453
|
+
<s:sequence>
|
454
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
455
|
+
<s:element minOccurs="0" maxOccurs="1" name="ID" type="s:string" />
|
456
|
+
</s:sequence>
|
457
|
+
</s:complexType>
|
458
|
+
</s:element>
|
459
|
+
<s:element name="GetStatusResponse">
|
460
|
+
<s:complexType>
|
461
|
+
<s:sequence>
|
462
|
+
<s:element minOccurs="1" maxOccurs="1" name="GetStatusResult" type="tns:GetStatusResult" />
|
463
|
+
</s:sequence>
|
464
|
+
</s:complexType>
|
465
|
+
</s:element>
|
466
|
+
<s:complexType name="GetStatusResult">
|
467
|
+
<s:sequence>
|
468
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
469
|
+
<s:element minOccurs="0" maxOccurs="1" name="Statuses" type="tns:ArrayOfLetterStatusAndDesc" />
|
470
|
+
</s:sequence>
|
471
|
+
</s:complexType>
|
472
|
+
<s:complexType name="ArrayOfLetterStatusAndDesc">
|
473
|
+
<s:sequence>
|
474
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="LetterStatusAndDesc" type="tns:LetterStatusAndDesc" />
|
475
|
+
</s:sequence>
|
476
|
+
</s:complexType>
|
477
|
+
<s:complexType name="LetterStatusAndDesc">
|
478
|
+
<s:sequence>
|
479
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
480
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
481
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
482
|
+
<s:element minOccurs="1" maxOccurs="1" name="LastUpdateTime" type="s:dateTime" />
|
483
|
+
</s:sequence>
|
484
|
+
</s:complexType>
|
485
|
+
<s:element name="GetBatchStatus">
|
486
|
+
<s:complexType>
|
487
|
+
<s:sequence>
|
488
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
489
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
490
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemID" type="s:string" />
|
491
|
+
</s:sequence>
|
492
|
+
</s:complexType>
|
493
|
+
</s:element>
|
494
|
+
<s:element name="GetBatchStatusResponse">
|
495
|
+
<s:complexType>
|
496
|
+
<s:sequence>
|
497
|
+
<s:element minOccurs="1" maxOccurs="1" name="GetBatchStatusResult" type="tns:GetBatchStatusResult" />
|
498
|
+
</s:sequence>
|
499
|
+
</s:complexType>
|
500
|
+
</s:element>
|
501
|
+
<s:complexType name="GetBatchStatusResult">
|
502
|
+
<s:sequence>
|
503
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
504
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
505
|
+
<s:element minOccurs="0" maxOccurs="1" name="Statuses" type="tns:ArrayOfLetterBatchStatusAndDesc" />
|
506
|
+
</s:sequence>
|
507
|
+
</s:complexType>
|
508
|
+
<s:complexType name="ArrayOfLetterBatchStatusAndDesc">
|
509
|
+
<s:sequence>
|
510
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="LetterBatchStatusAndDesc" type="tns:LetterBatchStatusAndDesc" />
|
511
|
+
</s:sequence>
|
512
|
+
</s:complexType>
|
513
|
+
<s:complexType name="LetterBatchStatusAndDesc">
|
514
|
+
<s:sequence>
|
515
|
+
<s:element minOccurs="1" maxOccurs="1" name="ItemID" type="s:int" />
|
516
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
517
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
518
|
+
<s:element minOccurs="1" maxOccurs="1" name="LastUpdateTime" type="s:dateTime" />
|
519
|
+
</s:sequence>
|
520
|
+
</s:complexType>
|
521
|
+
<s:element name="GetBatchDetails">
|
522
|
+
<s:complexType>
|
523
|
+
<s:sequence>
|
524
|
+
<s:element minOccurs="0" maxOccurs="1" name="APIKey" type="s:string" />
|
525
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
526
|
+
<s:element minOccurs="0" maxOccurs="1" name="ItemID" type="s:string" />
|
527
|
+
</s:sequence>
|
528
|
+
</s:complexType>
|
529
|
+
</s:element>
|
530
|
+
<s:element name="GetBatchDetailsResponse">
|
531
|
+
<s:complexType>
|
532
|
+
<s:sequence>
|
533
|
+
<s:element minOccurs="1" maxOccurs="1" name="GetBatchDetailsResult" type="tns:GetBatchDetailsResult" />
|
534
|
+
</s:sequence>
|
535
|
+
</s:complexType>
|
536
|
+
</s:element>
|
537
|
+
<s:complexType name="GetBatchDetailsResult">
|
538
|
+
<s:sequence>
|
539
|
+
<s:element minOccurs="1" maxOccurs="1" name="ResultCode" type="s:int" />
|
540
|
+
<s:element minOccurs="1" maxOccurs="1" name="ID" type="s:int" />
|
541
|
+
<s:element minOccurs="1" maxOccurs="1" name="Price" type="s:decimal" />
|
542
|
+
<s:element minOccurs="1" maxOccurs="1" name="SubmitTime" type="s:dateTime" />
|
543
|
+
<s:element minOccurs="1" maxOccurs="1" name="CompletionTime" type="s:dateTime" />
|
544
|
+
<s:element minOccurs="0" maxOccurs="1" name="MyDescription" type="s:string" />
|
545
|
+
<s:element minOccurs="1" maxOccurs="1" name="MailerType" type="tns:MailerType" />
|
546
|
+
<s:element minOccurs="1" maxOccurs="1" name="WorkMode" type="tns:DetailsWorkMode" />
|
547
|
+
<s:element minOccurs="0" maxOccurs="1" name="Orientation" type="s:string" />
|
548
|
+
<s:element minOccurs="0" maxOccurs="1" name="Envelope" type="s:string" />
|
549
|
+
<s:element minOccurs="0" maxOccurs="1" name="Paper" type="s:string" />
|
550
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintColor" type="s:string" />
|
551
|
+
<s:element minOccurs="0" maxOccurs="1" name="PrintSides" type="s:string" />
|
552
|
+
<s:element minOccurs="0" maxOccurs="1" name="Postcard" type="s:string" />
|
553
|
+
<s:element minOccurs="0" maxOccurs="1" name="NationalMailing" type="s:string" />
|
554
|
+
<s:element minOccurs="0" maxOccurs="1" name="InternationalMailing" type="s:string" />
|
555
|
+
<s:element minOccurs="0" maxOccurs="1" name="Items" type="tns:ArrayOfItemsStatusAndDescExtended" />
|
556
|
+
</s:sequence>
|
557
|
+
</s:complexType>
|
558
|
+
<s:complexType name="ArrayOfItemsStatusAndDescExtended">
|
559
|
+
<s:sequence>
|
560
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="ItemsStatusAndDescExtended" type="tns:ItemsStatusAndDescExtended" />
|
561
|
+
</s:sequence>
|
562
|
+
</s:complexType>
|
563
|
+
<s:complexType name="ItemsStatusAndDescExtended">
|
564
|
+
<s:sequence>
|
565
|
+
<s:element minOccurs="1" maxOccurs="1" name="ItemID" type="s:int" />
|
566
|
+
<s:element minOccurs="1" maxOccurs="1" name="Status" type="s:int" />
|
567
|
+
<s:element minOccurs="0" maxOccurs="1" name="Description" type="s:string" />
|
568
|
+
<s:element minOccurs="1" maxOccurs="1" name="Price" type="s:decimal" />
|
569
|
+
<s:element minOccurs="1" maxOccurs="1" name="NumOfSheets" type="s:int" />
|
570
|
+
<s:element minOccurs="1" maxOccurs="1" name="LastUpdateTime" type="s:dateTime" />
|
571
|
+
</s:sequence>
|
572
|
+
</s:complexType>
|
573
|
+
<s:element name="int" type="s:int" />
|
574
|
+
<s:element name="SendWordMailMergeResult" type="tns:SendWordMailMergeResult" />
|
575
|
+
<s:element name="GetPDFResult" type="tns:GetPDFResult" />
|
576
|
+
<s:element name="GetUploadedFileDetailsResult" type="tns:GetUploadedFileDetailsResult" />
|
577
|
+
<s:element name="GetDetailsResult" nillable="true" type="tns:GetDetailsResult" />
|
578
|
+
<s:element name="GetDetailsExtendedResult" nillable="true" type="tns:GetDetailsExtendedResult" />
|
579
|
+
<s:element name="GetStatusResult" type="tns:GetStatusResult" />
|
580
|
+
<s:element name="GetBatchStatusResult" type="tns:GetBatchStatusResult" />
|
581
|
+
<s:element name="GetBatchDetailsResult" type="tns:GetBatchDetailsResult" />
|
582
|
+
</s:schema>
|
583
|
+
<s:schema targetNamespace="PostalMethods/AbstractTypes">
|
584
|
+
<s:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
|
585
|
+
<s:complexType name="StringArray">
|
586
|
+
<s:complexContent mixed="false">
|
587
|
+
<s:restriction base="soapenc:Array">
|
588
|
+
<s:sequence>
|
589
|
+
<s:element minOccurs="0" maxOccurs="unbounded" name="String" type="s:string" />
|
590
|
+
</s:sequence>
|
591
|
+
</s:restriction>
|
592
|
+
</s:complexContent>
|
593
|
+
</s:complexType>
|
594
|
+
</s:schema>
|
595
|
+
</wsdl:types>
|
596
|
+
<wsdl:message name="SendLetterAdvancedSoapIn">
|
597
|
+
<wsdl:part name="parameters" element="tns:SendLetterAdvanced" />
|
598
|
+
</wsdl:message>
|
599
|
+
<wsdl:message name="SendLetterAdvancedSoapOut">
|
600
|
+
<wsdl:part name="parameters" element="tns:SendLetterAdvancedResponse" />
|
601
|
+
</wsdl:message>
|
602
|
+
<wsdl:message name="SendLetterSoapIn">
|
603
|
+
<wsdl:part name="parameters" element="tns:SendLetter" />
|
604
|
+
</wsdl:message>
|
605
|
+
<wsdl:message name="SendLetterSoapOut">
|
606
|
+
<wsdl:part name="parameters" element="tns:SendLetterResponse" />
|
607
|
+
</wsdl:message>
|
608
|
+
<wsdl:message name="SendLetterAndAddressSoapIn">
|
609
|
+
<wsdl:part name="parameters" element="tns:SendLetterAndAddress" />
|
610
|
+
</wsdl:message>
|
611
|
+
<wsdl:message name="SendLetterAndAddressSoapOut">
|
612
|
+
<wsdl:part name="parameters" element="tns:SendLetterAndAddressResponse" />
|
613
|
+
</wsdl:message>
|
614
|
+
<wsdl:message name="SendPostcardAndAddressSoapIn">
|
615
|
+
<wsdl:part name="parameters" element="tns:SendPostcardAndAddress" />
|
616
|
+
</wsdl:message>
|
617
|
+
<wsdl:message name="SendPostcardAndAddressSoapOut">
|
618
|
+
<wsdl:part name="parameters" element="tns:SendPostcardAndAddressResponse" />
|
619
|
+
</wsdl:message>
|
620
|
+
<wsdl:message name="SendWordMailMerge_CompressedSoapIn">
|
621
|
+
<wsdl:part name="parameters" element="tns:SendWordMailMerge_Compressed" />
|
622
|
+
</wsdl:message>
|
623
|
+
<wsdl:message name="SendWordMailMerge_CompressedSoapOut">
|
624
|
+
<wsdl:part name="parameters" element="tns:SendWordMailMerge_CompressedResponse" />
|
625
|
+
</wsdl:message>
|
626
|
+
<wsdl:message name="GetPDFSoapIn">
|
627
|
+
<wsdl:part name="parameters" element="tns:GetPDF" />
|
628
|
+
</wsdl:message>
|
629
|
+
<wsdl:message name="GetPDFSoapOut">
|
630
|
+
<wsdl:part name="parameters" element="tns:GetPDFResponse" />
|
631
|
+
</wsdl:message>
|
632
|
+
<wsdl:message name="CancelDeliverySoapIn">
|
633
|
+
<wsdl:part name="parameters" element="tns:CancelDelivery" />
|
634
|
+
</wsdl:message>
|
635
|
+
<wsdl:message name="CancelDeliverySoapOut">
|
636
|
+
<wsdl:part name="parameters" element="tns:CancelDeliveryResponse" />
|
637
|
+
</wsdl:message>
|
638
|
+
<wsdl:message name="UploadFileSoapIn">
|
639
|
+
<wsdl:part name="parameters" element="tns:UploadFile" />
|
640
|
+
</wsdl:message>
|
641
|
+
<wsdl:message name="UploadFileSoapOut">
|
642
|
+
<wsdl:part name="parameters" element="tns:UploadFileResponse" />
|
643
|
+
</wsdl:message>
|
644
|
+
<wsdl:message name="DeleteUploadedFileSoapIn">
|
645
|
+
<wsdl:part name="parameters" element="tns:DeleteUploadedFile" />
|
646
|
+
</wsdl:message>
|
647
|
+
<wsdl:message name="DeleteUploadedFileSoapOut">
|
648
|
+
<wsdl:part name="parameters" element="tns:DeleteUploadedFileResponse" />
|
649
|
+
</wsdl:message>
|
650
|
+
<wsdl:message name="GetUploadedFileDetailsSoapIn">
|
651
|
+
<wsdl:part name="parameters" element="tns:GetUploadedFileDetails" />
|
652
|
+
</wsdl:message>
|
653
|
+
<wsdl:message name="GetUploadedFileDetailsSoapOut">
|
654
|
+
<wsdl:part name="parameters" element="tns:GetUploadedFileDetailsResponse" />
|
655
|
+
</wsdl:message>
|
656
|
+
<wsdl:message name="GetDetailsSoapIn">
|
657
|
+
<wsdl:part name="parameters" element="tns:GetDetails" />
|
658
|
+
</wsdl:message>
|
659
|
+
<wsdl:message name="GetDetailsSoapOut">
|
660
|
+
<wsdl:part name="parameters" element="tns:GetDetailsResponse" />
|
661
|
+
</wsdl:message>
|
662
|
+
<wsdl:message name="GetDetailsExtendedSoapIn">
|
663
|
+
<wsdl:part name="parameters" element="tns:GetDetailsExtended" />
|
664
|
+
</wsdl:message>
|
665
|
+
<wsdl:message name="GetDetailsExtendedSoapOut">
|
666
|
+
<wsdl:part name="parameters" element="tns:GetDetailsExtendedResponse" />
|
667
|
+
</wsdl:message>
|
668
|
+
<wsdl:message name="GetStatusSoapIn">
|
669
|
+
<wsdl:part name="parameters" element="tns:GetStatus" />
|
670
|
+
</wsdl:message>
|
671
|
+
<wsdl:message name="GetStatusSoapOut">
|
672
|
+
<wsdl:part name="parameters" element="tns:GetStatusResponse" />
|
673
|
+
</wsdl:message>
|
674
|
+
<wsdl:message name="GetBatchStatusSoapIn">
|
675
|
+
<wsdl:part name="parameters" element="tns:GetBatchStatus" />
|
676
|
+
</wsdl:message>
|
677
|
+
<wsdl:message name="GetBatchStatusSoapOut">
|
678
|
+
<wsdl:part name="parameters" element="tns:GetBatchStatusResponse" />
|
679
|
+
</wsdl:message>
|
680
|
+
<wsdl:message name="GetBatchDetailsSoapIn">
|
681
|
+
<wsdl:part name="parameters" element="tns:GetBatchDetails" />
|
682
|
+
</wsdl:message>
|
683
|
+
<wsdl:message name="GetBatchDetailsSoapOut">
|
684
|
+
<wsdl:part name="parameters" element="tns:GetBatchDetailsResponse" />
|
685
|
+
</wsdl:message>
|
686
|
+
<wsdl:message name="SendLetterHttpGetIn">
|
687
|
+
<wsdl:part name="APIKey" type="s:string" />
|
688
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
689
|
+
<wsdl:part name="FileExtension" type="s:string" />
|
690
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
691
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
692
|
+
</wsdl:message>
|
693
|
+
<wsdl:message name="SendLetterHttpGetOut">
|
694
|
+
<wsdl:part name="Body" element="tns:int" />
|
695
|
+
</wsdl:message>
|
696
|
+
<wsdl:message name="SendLetterAndAddressHttpGetIn">
|
697
|
+
<wsdl:part name="APIKey" type="s:string" />
|
698
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
699
|
+
<wsdl:part name="FileExtension" type="s:string" />
|
700
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
701
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
702
|
+
<wsdl:part name="AttentionLine1" type="s:string" />
|
703
|
+
<wsdl:part name="AttentionLine2" type="s:string" />
|
704
|
+
<wsdl:part name="Company" type="s:string" />
|
705
|
+
<wsdl:part name="Address1" type="s:string" />
|
706
|
+
<wsdl:part name="Address2" type="s:string" />
|
707
|
+
<wsdl:part name="City" type="s:string" />
|
708
|
+
<wsdl:part name="State" type="s:string" />
|
709
|
+
<wsdl:part name="PostalCode" type="s:string" />
|
710
|
+
<wsdl:part name="Country" type="s:string" />
|
711
|
+
</wsdl:message>
|
712
|
+
<wsdl:message name="SendLetterAndAddressHttpGetOut">
|
713
|
+
<wsdl:part name="Body" element="tns:int" />
|
714
|
+
</wsdl:message>
|
715
|
+
<wsdl:message name="SendPostcardAndAddressHttpGetIn">
|
716
|
+
<wsdl:part name="APIKey" type="s:string" />
|
717
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
718
|
+
<wsdl:part name="ImageSideFileType" type="s:string" />
|
719
|
+
<wsdl:part name="ImageSideBinaryData" type="s1:StringArray" />
|
720
|
+
<wsdl:part name="ImageSideScaling" type="s:string" />
|
721
|
+
<wsdl:part name="AddressSideFileType" type="s:string" />
|
722
|
+
<wsdl:part name="AddressSideBinaryData" type="s1:StringArray" />
|
723
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
724
|
+
<wsdl:part name="PrintColor" type="s:string" />
|
725
|
+
<wsdl:part name="PostcardSize" type="s:string" />
|
726
|
+
<wsdl:part name="MailingPriority" type="s:string" />
|
727
|
+
<wsdl:part name="AttentionLine1" type="s:string" />
|
728
|
+
<wsdl:part name="AttentionLine2" type="s:string" />
|
729
|
+
<wsdl:part name="Company" type="s:string" />
|
730
|
+
<wsdl:part name="Address1" type="s:string" />
|
731
|
+
<wsdl:part name="Address2" type="s:string" />
|
732
|
+
<wsdl:part name="City" type="s:string" />
|
733
|
+
<wsdl:part name="State" type="s:string" />
|
734
|
+
<wsdl:part name="PostalCode" type="s:string" />
|
735
|
+
<wsdl:part name="Country" type="s:string" />
|
736
|
+
</wsdl:message>
|
737
|
+
<wsdl:message name="SendPostcardAndAddressHttpGetOut">
|
738
|
+
<wsdl:part name="Body" element="tns:int" />
|
739
|
+
</wsdl:message>
|
740
|
+
<wsdl:message name="SendWordMailMerge_CompressedHttpGetIn">
|
741
|
+
<wsdl:part name="Username" type="s:string" />
|
742
|
+
<wsdl:part name="Password" type="s:string" />
|
743
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
744
|
+
<wsdl:part name="FileExtension" type="s:string" />
|
745
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
746
|
+
<wsdl:part name="MergeData" type="s1:StringArray" />
|
747
|
+
<wsdl:part name="ClientVersion" type="s:string" />
|
748
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
749
|
+
</wsdl:message>
|
750
|
+
<wsdl:message name="SendWordMailMerge_CompressedHttpGetOut">
|
751
|
+
<wsdl:part name="Body" element="tns:SendWordMailMergeResult" />
|
752
|
+
</wsdl:message>
|
753
|
+
<wsdl:message name="GetPDFHttpGetIn">
|
754
|
+
<wsdl:part name="APIKey" type="s:string" />
|
755
|
+
<wsdl:part name="ID" type="s:string" />
|
756
|
+
</wsdl:message>
|
757
|
+
<wsdl:message name="GetPDFHttpGetOut">
|
758
|
+
<wsdl:part name="Body" element="tns:GetPDFResult" />
|
759
|
+
</wsdl:message>
|
760
|
+
<wsdl:message name="CancelDeliveryHttpGetIn">
|
761
|
+
<wsdl:part name="APIKey" type="s:string" />
|
762
|
+
<wsdl:part name="ID" type="s:string" />
|
763
|
+
</wsdl:message>
|
764
|
+
<wsdl:message name="CancelDeliveryHttpGetOut">
|
765
|
+
<wsdl:part name="Body" element="tns:int" />
|
766
|
+
</wsdl:message>
|
767
|
+
<wsdl:message name="UploadFileHttpGetIn">
|
768
|
+
<wsdl:part name="APIKey" type="s:string" />
|
769
|
+
<wsdl:part name="MyFileName" type="s:string" />
|
770
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
771
|
+
<wsdl:part name="Permissions" type="s:string" />
|
772
|
+
<wsdl:part name="Description" type="s:string" />
|
773
|
+
<wsdl:part name="Overwrite" type="s:string" />
|
774
|
+
</wsdl:message>
|
775
|
+
<wsdl:message name="UploadFileHttpGetOut">
|
776
|
+
<wsdl:part name="Body" element="tns:int" />
|
777
|
+
</wsdl:message>
|
778
|
+
<wsdl:message name="DeleteUploadedFileHttpGetIn">
|
779
|
+
<wsdl:part name="APIKey" type="s:string" />
|
780
|
+
<wsdl:part name="MyFileName" type="s:string" />
|
781
|
+
</wsdl:message>
|
782
|
+
<wsdl:message name="DeleteUploadedFileHttpGetOut">
|
783
|
+
<wsdl:part name="Body" element="tns:int" />
|
784
|
+
</wsdl:message>
|
785
|
+
<wsdl:message name="GetUploadedFileDetailsHttpGetIn">
|
786
|
+
<wsdl:part name="APIKey" type="s:string" />
|
787
|
+
</wsdl:message>
|
788
|
+
<wsdl:message name="GetUploadedFileDetailsHttpGetOut">
|
789
|
+
<wsdl:part name="Body" element="tns:GetUploadedFileDetailsResult" />
|
790
|
+
</wsdl:message>
|
791
|
+
<wsdl:message name="GetDetailsHttpGetIn">
|
792
|
+
<wsdl:part name="APIKey" type="s:string" />
|
793
|
+
<wsdl:part name="ID" type="s:string" />
|
794
|
+
</wsdl:message>
|
795
|
+
<wsdl:message name="GetDetailsHttpGetOut">
|
796
|
+
<wsdl:part name="Body" element="tns:GetDetailsResult" />
|
797
|
+
</wsdl:message>
|
798
|
+
<wsdl:message name="GetDetailsExtendedHttpGetIn">
|
799
|
+
<wsdl:part name="APIKey" type="s:string" />
|
800
|
+
<wsdl:part name="ID" type="s:string" />
|
801
|
+
</wsdl:message>
|
802
|
+
<wsdl:message name="GetDetailsExtendedHttpGetOut">
|
803
|
+
<wsdl:part name="Body" element="tns:GetDetailsExtendedResult" />
|
804
|
+
</wsdl:message>
|
805
|
+
<wsdl:message name="GetStatusHttpGetIn">
|
806
|
+
<wsdl:part name="APIKey" type="s:string" />
|
807
|
+
<wsdl:part name="ID" type="s:string" />
|
808
|
+
</wsdl:message>
|
809
|
+
<wsdl:message name="GetStatusHttpGetOut">
|
810
|
+
<wsdl:part name="Body" element="tns:GetStatusResult" />
|
811
|
+
</wsdl:message>
|
812
|
+
<wsdl:message name="GetBatchStatusHttpGetIn">
|
813
|
+
<wsdl:part name="APIKey" type="s:string" />
|
814
|
+
<wsdl:part name="ID" type="s:string" />
|
815
|
+
<wsdl:part name="ItemID" type="s:string" />
|
816
|
+
</wsdl:message>
|
817
|
+
<wsdl:message name="GetBatchStatusHttpGetOut">
|
818
|
+
<wsdl:part name="Body" element="tns:GetBatchStatusResult" />
|
819
|
+
</wsdl:message>
|
820
|
+
<wsdl:message name="GetBatchDetailsHttpGetIn">
|
821
|
+
<wsdl:part name="APIKey" type="s:string" />
|
822
|
+
<wsdl:part name="ID" type="s:string" />
|
823
|
+
<wsdl:part name="ItemID" type="s:string" />
|
824
|
+
</wsdl:message>
|
825
|
+
<wsdl:message name="GetBatchDetailsHttpGetOut">
|
826
|
+
<wsdl:part name="Body" element="tns:GetBatchDetailsResult" />
|
827
|
+
</wsdl:message>
|
828
|
+
<wsdl:message name="SendLetterHttpPostIn">
|
829
|
+
<wsdl:part name="APIKey" type="s:string" />
|
830
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
831
|
+
<wsdl:part name="FileExtension" type="s:string" />
|
832
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
833
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
834
|
+
</wsdl:message>
|
835
|
+
<wsdl:message name="SendLetterHttpPostOut">
|
836
|
+
<wsdl:part name="Body" element="tns:int" />
|
837
|
+
</wsdl:message>
|
838
|
+
<wsdl:message name="SendLetterAndAddressHttpPostIn">
|
839
|
+
<wsdl:part name="APIKey" type="s:string" />
|
840
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
841
|
+
<wsdl:part name="FileExtension" type="s:string" />
|
842
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
843
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
844
|
+
<wsdl:part name="AttentionLine1" type="s:string" />
|
845
|
+
<wsdl:part name="AttentionLine2" type="s:string" />
|
846
|
+
<wsdl:part name="Company" type="s:string" />
|
847
|
+
<wsdl:part name="Address1" type="s:string" />
|
848
|
+
<wsdl:part name="Address2" type="s:string" />
|
849
|
+
<wsdl:part name="City" type="s:string" />
|
850
|
+
<wsdl:part name="State" type="s:string" />
|
851
|
+
<wsdl:part name="PostalCode" type="s:string" />
|
852
|
+
<wsdl:part name="Country" type="s:string" />
|
853
|
+
</wsdl:message>
|
854
|
+
<wsdl:message name="SendLetterAndAddressHttpPostOut">
|
855
|
+
<wsdl:part name="Body" element="tns:int" />
|
856
|
+
</wsdl:message>
|
857
|
+
<wsdl:message name="SendPostcardAndAddressHttpPostIn">
|
858
|
+
<wsdl:part name="APIKey" type="s:string" />
|
859
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
860
|
+
<wsdl:part name="ImageSideFileType" type="s:string" />
|
861
|
+
<wsdl:part name="ImageSideBinaryData" type="s1:StringArray" />
|
862
|
+
<wsdl:part name="ImageSideScaling" type="s:string" />
|
863
|
+
<wsdl:part name="AddressSideFileType" type="s:string" />
|
864
|
+
<wsdl:part name="AddressSideBinaryData" type="s1:StringArray" />
|
865
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
866
|
+
<wsdl:part name="PrintColor" type="s:string" />
|
867
|
+
<wsdl:part name="PostcardSize" type="s:string" />
|
868
|
+
<wsdl:part name="MailingPriority" type="s:string" />
|
869
|
+
<wsdl:part name="AttentionLine1" type="s:string" />
|
870
|
+
<wsdl:part name="AttentionLine2" type="s:string" />
|
871
|
+
<wsdl:part name="Company" type="s:string" />
|
872
|
+
<wsdl:part name="Address1" type="s:string" />
|
873
|
+
<wsdl:part name="Address2" type="s:string" />
|
874
|
+
<wsdl:part name="City" type="s:string" />
|
875
|
+
<wsdl:part name="State" type="s:string" />
|
876
|
+
<wsdl:part name="PostalCode" type="s:string" />
|
877
|
+
<wsdl:part name="Country" type="s:string" />
|
878
|
+
</wsdl:message>
|
879
|
+
<wsdl:message name="SendPostcardAndAddressHttpPostOut">
|
880
|
+
<wsdl:part name="Body" element="tns:int" />
|
881
|
+
</wsdl:message>
|
882
|
+
<wsdl:message name="SendWordMailMerge_CompressedHttpPostIn">
|
883
|
+
<wsdl:part name="Username" type="s:string" />
|
884
|
+
<wsdl:part name="Password" type="s:string" />
|
885
|
+
<wsdl:part name="MyDescription" type="s:string" />
|
886
|
+
<wsdl:part name="FileExtension" type="s:string" />
|
887
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
888
|
+
<wsdl:part name="MergeData" type="s1:StringArray" />
|
889
|
+
<wsdl:part name="ClientVersion" type="s:string" />
|
890
|
+
<wsdl:part name="WorkMode" type="s:string" />
|
891
|
+
</wsdl:message>
|
892
|
+
<wsdl:message name="SendWordMailMerge_CompressedHttpPostOut">
|
893
|
+
<wsdl:part name="Body" element="tns:SendWordMailMergeResult" />
|
894
|
+
</wsdl:message>
|
895
|
+
<wsdl:message name="GetPDFHttpPostIn">
|
896
|
+
<wsdl:part name="APIKey" type="s:string" />
|
897
|
+
<wsdl:part name="ID" type="s:string" />
|
898
|
+
</wsdl:message>
|
899
|
+
<wsdl:message name="GetPDFHttpPostOut">
|
900
|
+
<wsdl:part name="Body" element="tns:GetPDFResult" />
|
901
|
+
</wsdl:message>
|
902
|
+
<wsdl:message name="CancelDeliveryHttpPostIn">
|
903
|
+
<wsdl:part name="APIKey" type="s:string" />
|
904
|
+
<wsdl:part name="ID" type="s:string" />
|
905
|
+
</wsdl:message>
|
906
|
+
<wsdl:message name="CancelDeliveryHttpPostOut">
|
907
|
+
<wsdl:part name="Body" element="tns:int" />
|
908
|
+
</wsdl:message>
|
909
|
+
<wsdl:message name="UploadFileHttpPostIn">
|
910
|
+
<wsdl:part name="APIKey" type="s:string" />
|
911
|
+
<wsdl:part name="MyFileName" type="s:string" />
|
912
|
+
<wsdl:part name="FileBinaryData" type="s1:StringArray" />
|
913
|
+
<wsdl:part name="Permissions" type="s:string" />
|
914
|
+
<wsdl:part name="Description" type="s:string" />
|
915
|
+
<wsdl:part name="Overwrite" type="s:string" />
|
916
|
+
</wsdl:message>
|
917
|
+
<wsdl:message name="UploadFileHttpPostOut">
|
918
|
+
<wsdl:part name="Body" element="tns:int" />
|
919
|
+
</wsdl:message>
|
920
|
+
<wsdl:message name="DeleteUploadedFileHttpPostIn">
|
921
|
+
<wsdl:part name="APIKey" type="s:string" />
|
922
|
+
<wsdl:part name="MyFileName" type="s:string" />
|
923
|
+
</wsdl:message>
|
924
|
+
<wsdl:message name="DeleteUploadedFileHttpPostOut">
|
925
|
+
<wsdl:part name="Body" element="tns:int" />
|
926
|
+
</wsdl:message>
|
927
|
+
<wsdl:message name="GetUploadedFileDetailsHttpPostIn">
|
928
|
+
<wsdl:part name="APIKey" type="s:string" />
|
929
|
+
</wsdl:message>
|
930
|
+
<wsdl:message name="GetUploadedFileDetailsHttpPostOut">
|
931
|
+
<wsdl:part name="Body" element="tns:GetUploadedFileDetailsResult" />
|
932
|
+
</wsdl:message>
|
933
|
+
<wsdl:message name="GetDetailsHttpPostIn">
|
934
|
+
<wsdl:part name="APIKey" type="s:string" />
|
935
|
+
<wsdl:part name="ID" type="s:string" />
|
936
|
+
</wsdl:message>
|
937
|
+
<wsdl:message name="GetDetailsHttpPostOut">
|
938
|
+
<wsdl:part name="Body" element="tns:GetDetailsResult" />
|
939
|
+
</wsdl:message>
|
940
|
+
<wsdl:message name="GetDetailsExtendedHttpPostIn">
|
941
|
+
<wsdl:part name="APIKey" type="s:string" />
|
942
|
+
<wsdl:part name="ID" type="s:string" />
|
943
|
+
</wsdl:message>
|
944
|
+
<wsdl:message name="GetDetailsExtendedHttpPostOut">
|
945
|
+
<wsdl:part name="Body" element="tns:GetDetailsExtendedResult" />
|
946
|
+
</wsdl:message>
|
947
|
+
<wsdl:message name="GetStatusHttpPostIn">
|
948
|
+
<wsdl:part name="APIKey" type="s:string" />
|
949
|
+
<wsdl:part name="ID" type="s:string" />
|
950
|
+
</wsdl:message>
|
951
|
+
<wsdl:message name="GetStatusHttpPostOut">
|
952
|
+
<wsdl:part name="Body" element="tns:GetStatusResult" />
|
953
|
+
</wsdl:message>
|
954
|
+
<wsdl:message name="GetBatchStatusHttpPostIn">
|
955
|
+
<wsdl:part name="APIKey" type="s:string" />
|
956
|
+
<wsdl:part name="ID" type="s:string" />
|
957
|
+
<wsdl:part name="ItemID" type="s:string" />
|
958
|
+
</wsdl:message>
|
959
|
+
<wsdl:message name="GetBatchStatusHttpPostOut">
|
960
|
+
<wsdl:part name="Body" element="tns:GetBatchStatusResult" />
|
961
|
+
</wsdl:message>
|
962
|
+
<wsdl:message name="GetBatchDetailsHttpPostIn">
|
963
|
+
<wsdl:part name="APIKey" type="s:string" />
|
964
|
+
<wsdl:part name="ID" type="s:string" />
|
965
|
+
<wsdl:part name="ItemID" type="s:string" />
|
966
|
+
</wsdl:message>
|
967
|
+
<wsdl:message name="GetBatchDetailsHttpPostOut">
|
968
|
+
<wsdl:part name="Body" element="tns:GetBatchDetailsResult" />
|
969
|
+
</wsdl:message>
|
970
|
+
<wsdl:portType name="PostalWSSoap">
|
971
|
+
<wsdl:operation name="SendLetterAdvanced">
|
972
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetterAdvanced() method offers full control over the settings of each letter sent through the PostalMethods service. The method also allows sending multiple documents to be concatenated to a single letter. Additional settings parameters will be offered over time.</wsdl:documentation>
|
973
|
+
<wsdl:input message="tns:SendLetterAdvancedSoapIn" />
|
974
|
+
<wsdl:output message="tns:SendLetterAdvancedSoapOut" />
|
975
|
+
</wsdl:operation>
|
976
|
+
<wsdl:operation name="SendLetter">
|
977
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetter() method is the simplest way to send a letter through the PostalMethods service.</wsdl:documentation>
|
978
|
+
<wsdl:input message="tns:SendLetterSoapIn" />
|
979
|
+
<wsdl:output message="tns:SendLetterSoapOut" />
|
980
|
+
</wsdl:operation>
|
981
|
+
<wsdl:operation name="SendLetterAndAddress">
|
982
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetterAndAddress() method is a simple way to send a letter through the PostalMethods service.</wsdl:documentation>
|
983
|
+
<wsdl:input message="tns:SendLetterAndAddressSoapIn" />
|
984
|
+
<wsdl:output message="tns:SendLetterAndAddressSoapOut" />
|
985
|
+
</wsdl:operation>
|
986
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
987
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendPostcardAndAddress() method is the simplest way to send postcards.</wsdl:documentation>
|
988
|
+
<wsdl:input message="tns:SendPostcardAndAddressSoapIn" />
|
989
|
+
<wsdl:output message="tns:SendPostcardAndAddressSoapOut" />
|
990
|
+
</wsdl:operation>
|
991
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
992
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendWordMailMerge_Compressed() method receives compressed mail merge data.</wsdl:documentation>
|
993
|
+
<wsdl:input message="tns:SendWordMailMerge_CompressedSoapIn" />
|
994
|
+
<wsdl:output message="tns:SendWordMailMerge_CompressedSoapOut" />
|
995
|
+
</wsdl:operation>
|
996
|
+
<wsdl:operation name="GetPDF">
|
997
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetPDF() method is a way to get the PDF file used for printing the mailer as a binary file.</wsdl:documentation>
|
998
|
+
<wsdl:input message="tns:GetPDFSoapIn" />
|
999
|
+
<wsdl:output message="tns:GetPDFSoapOut" />
|
1000
|
+
</wsdl:operation>
|
1001
|
+
<wsdl:operation name="CancelDelivery">
|
1002
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The CancelDelivery() method is a way to cancel fulfillment of a mailer still not delivered to the postal service. Cancellation may take up to a few minutes to succeed. If funds were deducted from the account, they will be refunded immediately.</wsdl:documentation>
|
1003
|
+
<wsdl:input message="tns:CancelDeliverySoapIn" />
|
1004
|
+
<wsdl:output message="tns:CancelDeliverySoapOut" />
|
1005
|
+
</wsdl:operation>
|
1006
|
+
<wsdl:operation name="UploadFile">
|
1007
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The UploadFile() method is used to upload files for later usage.</wsdl:documentation>
|
1008
|
+
<wsdl:input message="tns:UploadFileSoapIn" />
|
1009
|
+
<wsdl:output message="tns:UploadFileSoapOut" />
|
1010
|
+
</wsdl:operation>
|
1011
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1012
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The DeleteUploadedFile() method is used to delete files from your storage.</wsdl:documentation>
|
1013
|
+
<wsdl:input message="tns:DeleteUploadedFileSoapIn" />
|
1014
|
+
<wsdl:output message="tns:DeleteUploadedFileSoapOut" />
|
1015
|
+
</wsdl:operation>
|
1016
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1017
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetUploadedFileDetails() method is used to show account files in storage.</wsdl:documentation>
|
1018
|
+
<wsdl:input message="tns:GetUploadedFileDetailsSoapIn" />
|
1019
|
+
<wsdl:output message="tns:GetUploadedFileDetailsSoapOut" />
|
1020
|
+
</wsdl:operation>
|
1021
|
+
<wsdl:operation name="GetDetails">
|
1022
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetDetails() method is a way to get detailed mailer reports.</wsdl:documentation>
|
1023
|
+
<wsdl:input message="tns:GetDetailsSoapIn" />
|
1024
|
+
<wsdl:output message="tns:GetDetailsSoapOut" />
|
1025
|
+
</wsdl:operation>
|
1026
|
+
<wsdl:operation name="GetDetailsExtended">
|
1027
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetDetailsExtended() method is a way to get the full mailer details.</wsdl:documentation>
|
1028
|
+
<wsdl:input message="tns:GetDetailsExtendedSoapIn" />
|
1029
|
+
<wsdl:output message="tns:GetDetailsExtendedSoapOut" />
|
1030
|
+
</wsdl:operation>
|
1031
|
+
<wsdl:operation name="GetStatus">
|
1032
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetStatus() method is the way to get status mailer reports.</wsdl:documentation>
|
1033
|
+
<wsdl:input message="tns:GetStatusSoapIn" />
|
1034
|
+
<wsdl:output message="tns:GetStatusSoapOut" />
|
1035
|
+
</wsdl:operation>
|
1036
|
+
<wsdl:operation name="GetBatchStatus">
|
1037
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetBatchStatus() method is the way to get batch status mailer reports.</wsdl:documentation>
|
1038
|
+
<wsdl:input message="tns:GetBatchStatusSoapIn" />
|
1039
|
+
<wsdl:output message="tns:GetBatchStatusSoapOut" />
|
1040
|
+
</wsdl:operation>
|
1041
|
+
<wsdl:operation name="GetBatchDetails">
|
1042
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetBatchDetails() method is the way to get batch details mailer reports.</wsdl:documentation>
|
1043
|
+
<wsdl:input message="tns:GetBatchDetailsSoapIn" />
|
1044
|
+
<wsdl:output message="tns:GetBatchDetailsSoapOut" />
|
1045
|
+
</wsdl:operation>
|
1046
|
+
</wsdl:portType>
|
1047
|
+
<wsdl:portType name="PostalWSHttpGet">
|
1048
|
+
<wsdl:operation name="SendLetter">
|
1049
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetter() method is the simplest way to send a letter through the PostalMethods service.</wsdl:documentation>
|
1050
|
+
<wsdl:input message="tns:SendLetterHttpGetIn" />
|
1051
|
+
<wsdl:output message="tns:SendLetterHttpGetOut" />
|
1052
|
+
</wsdl:operation>
|
1053
|
+
<wsdl:operation name="SendLetterAndAddress">
|
1054
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetterAndAddress() method is a simple way to send a letter through the PostalMethods service.</wsdl:documentation>
|
1055
|
+
<wsdl:input message="tns:SendLetterAndAddressHttpGetIn" />
|
1056
|
+
<wsdl:output message="tns:SendLetterAndAddressHttpGetOut" />
|
1057
|
+
</wsdl:operation>
|
1058
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
1059
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendPostcardAndAddress() method is the simplest way to send postcards.</wsdl:documentation>
|
1060
|
+
<wsdl:input message="tns:SendPostcardAndAddressHttpGetIn" />
|
1061
|
+
<wsdl:output message="tns:SendPostcardAndAddressHttpGetOut" />
|
1062
|
+
</wsdl:operation>
|
1063
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
1064
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendWordMailMerge_Compressed() method receives compressed mail merge data.</wsdl:documentation>
|
1065
|
+
<wsdl:input message="tns:SendWordMailMerge_CompressedHttpGetIn" />
|
1066
|
+
<wsdl:output message="tns:SendWordMailMerge_CompressedHttpGetOut" />
|
1067
|
+
</wsdl:operation>
|
1068
|
+
<wsdl:operation name="GetPDF">
|
1069
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetPDF() method is a way to get the PDF file used for printing the mailer as a binary file.</wsdl:documentation>
|
1070
|
+
<wsdl:input message="tns:GetPDFHttpGetIn" />
|
1071
|
+
<wsdl:output message="tns:GetPDFHttpGetOut" />
|
1072
|
+
</wsdl:operation>
|
1073
|
+
<wsdl:operation name="CancelDelivery">
|
1074
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The CancelDelivery() method is a way to cancel fulfillment of a mailer still not delivered to the postal service. Cancellation may take up to a few minutes to succeed. If funds were deducted from the account, they will be refunded immediately.</wsdl:documentation>
|
1075
|
+
<wsdl:input message="tns:CancelDeliveryHttpGetIn" />
|
1076
|
+
<wsdl:output message="tns:CancelDeliveryHttpGetOut" />
|
1077
|
+
</wsdl:operation>
|
1078
|
+
<wsdl:operation name="UploadFile">
|
1079
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The UploadFile() method is used to upload files for later usage.</wsdl:documentation>
|
1080
|
+
<wsdl:input message="tns:UploadFileHttpGetIn" />
|
1081
|
+
<wsdl:output message="tns:UploadFileHttpGetOut" />
|
1082
|
+
</wsdl:operation>
|
1083
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1084
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The DeleteUploadedFile() method is used to delete files from your storage.</wsdl:documentation>
|
1085
|
+
<wsdl:input message="tns:DeleteUploadedFileHttpGetIn" />
|
1086
|
+
<wsdl:output message="tns:DeleteUploadedFileHttpGetOut" />
|
1087
|
+
</wsdl:operation>
|
1088
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1089
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetUploadedFileDetails() method is used to show account files in storage.</wsdl:documentation>
|
1090
|
+
<wsdl:input message="tns:GetUploadedFileDetailsHttpGetIn" />
|
1091
|
+
<wsdl:output message="tns:GetUploadedFileDetailsHttpGetOut" />
|
1092
|
+
</wsdl:operation>
|
1093
|
+
<wsdl:operation name="GetDetails">
|
1094
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetDetails() method is a way to get detailed mailer reports.</wsdl:documentation>
|
1095
|
+
<wsdl:input message="tns:GetDetailsHttpGetIn" />
|
1096
|
+
<wsdl:output message="tns:GetDetailsHttpGetOut" />
|
1097
|
+
</wsdl:operation>
|
1098
|
+
<wsdl:operation name="GetDetailsExtended">
|
1099
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetDetailsExtended() method is a way to get the full mailer details.</wsdl:documentation>
|
1100
|
+
<wsdl:input message="tns:GetDetailsExtendedHttpGetIn" />
|
1101
|
+
<wsdl:output message="tns:GetDetailsExtendedHttpGetOut" />
|
1102
|
+
</wsdl:operation>
|
1103
|
+
<wsdl:operation name="GetStatus">
|
1104
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetStatus() method is the way to get status mailer reports.</wsdl:documentation>
|
1105
|
+
<wsdl:input message="tns:GetStatusHttpGetIn" />
|
1106
|
+
<wsdl:output message="tns:GetStatusHttpGetOut" />
|
1107
|
+
</wsdl:operation>
|
1108
|
+
<wsdl:operation name="GetBatchStatus">
|
1109
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetBatchStatus() method is the way to get batch status mailer reports.</wsdl:documentation>
|
1110
|
+
<wsdl:input message="tns:GetBatchStatusHttpGetIn" />
|
1111
|
+
<wsdl:output message="tns:GetBatchStatusHttpGetOut" />
|
1112
|
+
</wsdl:operation>
|
1113
|
+
<wsdl:operation name="GetBatchDetails">
|
1114
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetBatchDetails() method is the way to get batch details mailer reports.</wsdl:documentation>
|
1115
|
+
<wsdl:input message="tns:GetBatchDetailsHttpGetIn" />
|
1116
|
+
<wsdl:output message="tns:GetBatchDetailsHttpGetOut" />
|
1117
|
+
</wsdl:operation>
|
1118
|
+
</wsdl:portType>
|
1119
|
+
<wsdl:portType name="PostalWSHttpPost">
|
1120
|
+
<wsdl:operation name="SendLetter">
|
1121
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetter() method is the simplest way to send a letter through the PostalMethods service.</wsdl:documentation>
|
1122
|
+
<wsdl:input message="tns:SendLetterHttpPostIn" />
|
1123
|
+
<wsdl:output message="tns:SendLetterHttpPostOut" />
|
1124
|
+
</wsdl:operation>
|
1125
|
+
<wsdl:operation name="SendLetterAndAddress">
|
1126
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendLetterAndAddress() method is a simple way to send a letter through the PostalMethods service.</wsdl:documentation>
|
1127
|
+
<wsdl:input message="tns:SendLetterAndAddressHttpPostIn" />
|
1128
|
+
<wsdl:output message="tns:SendLetterAndAddressHttpPostOut" />
|
1129
|
+
</wsdl:operation>
|
1130
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
1131
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendPostcardAndAddress() method is the simplest way to send postcards.</wsdl:documentation>
|
1132
|
+
<wsdl:input message="tns:SendPostcardAndAddressHttpPostIn" />
|
1133
|
+
<wsdl:output message="tns:SendPostcardAndAddressHttpPostOut" />
|
1134
|
+
</wsdl:operation>
|
1135
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
1136
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The SendWordMailMerge_Compressed() method receives compressed mail merge data.</wsdl:documentation>
|
1137
|
+
<wsdl:input message="tns:SendWordMailMerge_CompressedHttpPostIn" />
|
1138
|
+
<wsdl:output message="tns:SendWordMailMerge_CompressedHttpPostOut" />
|
1139
|
+
</wsdl:operation>
|
1140
|
+
<wsdl:operation name="GetPDF">
|
1141
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetPDF() method is a way to get the PDF file used for printing the mailer as a binary file.</wsdl:documentation>
|
1142
|
+
<wsdl:input message="tns:GetPDFHttpPostIn" />
|
1143
|
+
<wsdl:output message="tns:GetPDFHttpPostOut" />
|
1144
|
+
</wsdl:operation>
|
1145
|
+
<wsdl:operation name="CancelDelivery">
|
1146
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The CancelDelivery() method is a way to cancel fulfillment of a mailer still not delivered to the postal service. Cancellation may take up to a few minutes to succeed. If funds were deducted from the account, they will be refunded immediately.</wsdl:documentation>
|
1147
|
+
<wsdl:input message="tns:CancelDeliveryHttpPostIn" />
|
1148
|
+
<wsdl:output message="tns:CancelDeliveryHttpPostOut" />
|
1149
|
+
</wsdl:operation>
|
1150
|
+
<wsdl:operation name="UploadFile">
|
1151
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The UploadFile() method is used to upload files for later usage.</wsdl:documentation>
|
1152
|
+
<wsdl:input message="tns:UploadFileHttpPostIn" />
|
1153
|
+
<wsdl:output message="tns:UploadFileHttpPostOut" />
|
1154
|
+
</wsdl:operation>
|
1155
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1156
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The DeleteUploadedFile() method is used to delete files from your storage.</wsdl:documentation>
|
1157
|
+
<wsdl:input message="tns:DeleteUploadedFileHttpPostIn" />
|
1158
|
+
<wsdl:output message="tns:DeleteUploadedFileHttpPostOut" />
|
1159
|
+
</wsdl:operation>
|
1160
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1161
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetUploadedFileDetails() method is used to show account files in storage.</wsdl:documentation>
|
1162
|
+
<wsdl:input message="tns:GetUploadedFileDetailsHttpPostIn" />
|
1163
|
+
<wsdl:output message="tns:GetUploadedFileDetailsHttpPostOut" />
|
1164
|
+
</wsdl:operation>
|
1165
|
+
<wsdl:operation name="GetDetails">
|
1166
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetDetails() method is a way to get detailed mailer reports.</wsdl:documentation>
|
1167
|
+
<wsdl:input message="tns:GetDetailsHttpPostIn" />
|
1168
|
+
<wsdl:output message="tns:GetDetailsHttpPostOut" />
|
1169
|
+
</wsdl:operation>
|
1170
|
+
<wsdl:operation name="GetDetailsExtended">
|
1171
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetDetailsExtended() method is a way to get the full mailer details.</wsdl:documentation>
|
1172
|
+
<wsdl:input message="tns:GetDetailsExtendedHttpPostIn" />
|
1173
|
+
<wsdl:output message="tns:GetDetailsExtendedHttpPostOut" />
|
1174
|
+
</wsdl:operation>
|
1175
|
+
<wsdl:operation name="GetStatus">
|
1176
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetStatus() method is the way to get status mailer reports.</wsdl:documentation>
|
1177
|
+
<wsdl:input message="tns:GetStatusHttpPostIn" />
|
1178
|
+
<wsdl:output message="tns:GetStatusHttpPostOut" />
|
1179
|
+
</wsdl:operation>
|
1180
|
+
<wsdl:operation name="GetBatchStatus">
|
1181
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetBatchStatus() method is the way to get batch status mailer reports.</wsdl:documentation>
|
1182
|
+
<wsdl:input message="tns:GetBatchStatusHttpPostIn" />
|
1183
|
+
<wsdl:output message="tns:GetBatchStatusHttpPostOut" />
|
1184
|
+
</wsdl:operation>
|
1185
|
+
<wsdl:operation name="GetBatchDetails">
|
1186
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">The GetBatchDetails() method is the way to get batch details mailer reports.</wsdl:documentation>
|
1187
|
+
<wsdl:input message="tns:GetBatchDetailsHttpPostIn" />
|
1188
|
+
<wsdl:output message="tns:GetBatchDetailsHttpPostOut" />
|
1189
|
+
</wsdl:operation>
|
1190
|
+
</wsdl:portType>
|
1191
|
+
<wsdl:binding name="PostalWSSoap" type="tns:PostalWSSoap">
|
1192
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
1193
|
+
<wsdl:operation name="SendLetterAdvanced">
|
1194
|
+
<soap:operation soapAction="PostalMethods/SendLetterAdvanced" style="document" />
|
1195
|
+
<wsdl:input>
|
1196
|
+
<soap:body use="literal" />
|
1197
|
+
</wsdl:input>
|
1198
|
+
<wsdl:output>
|
1199
|
+
<soap:body use="literal" />
|
1200
|
+
</wsdl:output>
|
1201
|
+
</wsdl:operation>
|
1202
|
+
<wsdl:operation name="SendLetter">
|
1203
|
+
<soap:operation soapAction="PostalMethods/SendLetter" style="document" />
|
1204
|
+
<wsdl:input>
|
1205
|
+
<soap:body use="literal" />
|
1206
|
+
</wsdl:input>
|
1207
|
+
<wsdl:output>
|
1208
|
+
<soap:body use="literal" />
|
1209
|
+
</wsdl:output>
|
1210
|
+
</wsdl:operation>
|
1211
|
+
<wsdl:operation name="SendLetterAndAddress">
|
1212
|
+
<soap:operation soapAction="PostalMethods/SendLetterAndAddress" style="document" />
|
1213
|
+
<wsdl:input>
|
1214
|
+
<soap:body use="literal" />
|
1215
|
+
</wsdl:input>
|
1216
|
+
<wsdl:output>
|
1217
|
+
<soap:body use="literal" />
|
1218
|
+
</wsdl:output>
|
1219
|
+
</wsdl:operation>
|
1220
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
1221
|
+
<soap:operation soapAction="PostalMethods/SendPostcardAndAddress" style="document" />
|
1222
|
+
<wsdl:input>
|
1223
|
+
<soap:body use="literal" />
|
1224
|
+
</wsdl:input>
|
1225
|
+
<wsdl:output>
|
1226
|
+
<soap:body use="literal" />
|
1227
|
+
</wsdl:output>
|
1228
|
+
</wsdl:operation>
|
1229
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
1230
|
+
<soap:operation soapAction="PostalMethods/SendWordMailMerge_Compressed" style="document" />
|
1231
|
+
<wsdl:input>
|
1232
|
+
<soap:body use="literal" />
|
1233
|
+
</wsdl:input>
|
1234
|
+
<wsdl:output>
|
1235
|
+
<soap:body use="literal" />
|
1236
|
+
</wsdl:output>
|
1237
|
+
</wsdl:operation>
|
1238
|
+
<wsdl:operation name="GetPDF">
|
1239
|
+
<soap:operation soapAction="PostalMethods/GetPDF" style="document" />
|
1240
|
+
<wsdl:input>
|
1241
|
+
<soap:body use="literal" />
|
1242
|
+
</wsdl:input>
|
1243
|
+
<wsdl:output>
|
1244
|
+
<soap:body use="literal" />
|
1245
|
+
</wsdl:output>
|
1246
|
+
</wsdl:operation>
|
1247
|
+
<wsdl:operation name="CancelDelivery">
|
1248
|
+
<soap:operation soapAction="PostalMethods/CancelDelivery" style="document" />
|
1249
|
+
<wsdl:input>
|
1250
|
+
<soap:body use="literal" />
|
1251
|
+
</wsdl:input>
|
1252
|
+
<wsdl:output>
|
1253
|
+
<soap:body use="literal" />
|
1254
|
+
</wsdl:output>
|
1255
|
+
</wsdl:operation>
|
1256
|
+
<wsdl:operation name="UploadFile">
|
1257
|
+
<soap:operation soapAction="PostalMethods/UploadFile" style="document" />
|
1258
|
+
<wsdl:input>
|
1259
|
+
<soap:body use="literal" />
|
1260
|
+
</wsdl:input>
|
1261
|
+
<wsdl:output>
|
1262
|
+
<soap:body use="literal" />
|
1263
|
+
</wsdl:output>
|
1264
|
+
</wsdl:operation>
|
1265
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1266
|
+
<soap:operation soapAction="PostalMethods/DeleteUploadedFile" style="document" />
|
1267
|
+
<wsdl:input>
|
1268
|
+
<soap:body use="literal" />
|
1269
|
+
</wsdl:input>
|
1270
|
+
<wsdl:output>
|
1271
|
+
<soap:body use="literal" />
|
1272
|
+
</wsdl:output>
|
1273
|
+
</wsdl:operation>
|
1274
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1275
|
+
<soap:operation soapAction="PostalMethods/GetUploadedFileDetails" style="document" />
|
1276
|
+
<wsdl:input>
|
1277
|
+
<soap:body use="literal" />
|
1278
|
+
</wsdl:input>
|
1279
|
+
<wsdl:output>
|
1280
|
+
<soap:body use="literal" />
|
1281
|
+
</wsdl:output>
|
1282
|
+
</wsdl:operation>
|
1283
|
+
<wsdl:operation name="GetDetails">
|
1284
|
+
<soap:operation soapAction="PostalMethods/GetDetails" style="document" />
|
1285
|
+
<wsdl:input>
|
1286
|
+
<soap:body use="literal" />
|
1287
|
+
</wsdl:input>
|
1288
|
+
<wsdl:output>
|
1289
|
+
<soap:body use="literal" />
|
1290
|
+
</wsdl:output>
|
1291
|
+
</wsdl:operation>
|
1292
|
+
<wsdl:operation name="GetDetailsExtended">
|
1293
|
+
<soap:operation soapAction="PostalMethods/GetDetailsExtended" style="document" />
|
1294
|
+
<wsdl:input>
|
1295
|
+
<soap:body use="literal" />
|
1296
|
+
</wsdl:input>
|
1297
|
+
<wsdl:output>
|
1298
|
+
<soap:body use="literal" />
|
1299
|
+
</wsdl:output>
|
1300
|
+
</wsdl:operation>
|
1301
|
+
<wsdl:operation name="GetStatus">
|
1302
|
+
<soap:operation soapAction="PostalMethods/GetStatus" style="document" />
|
1303
|
+
<wsdl:input>
|
1304
|
+
<soap:body use="literal" />
|
1305
|
+
</wsdl:input>
|
1306
|
+
<wsdl:output>
|
1307
|
+
<soap:body use="literal" />
|
1308
|
+
</wsdl:output>
|
1309
|
+
</wsdl:operation>
|
1310
|
+
<wsdl:operation name="GetBatchStatus">
|
1311
|
+
<soap:operation soapAction="PostalMethods/GetBatchStatus" style="document" />
|
1312
|
+
<wsdl:input>
|
1313
|
+
<soap:body use="literal" />
|
1314
|
+
</wsdl:input>
|
1315
|
+
<wsdl:output>
|
1316
|
+
<soap:body use="literal" />
|
1317
|
+
</wsdl:output>
|
1318
|
+
</wsdl:operation>
|
1319
|
+
<wsdl:operation name="GetBatchDetails">
|
1320
|
+
<soap:operation soapAction="PostalMethods/GetBatchDetails" style="document" />
|
1321
|
+
<wsdl:input>
|
1322
|
+
<soap:body use="literal" />
|
1323
|
+
</wsdl:input>
|
1324
|
+
<wsdl:output>
|
1325
|
+
<soap:body use="literal" />
|
1326
|
+
</wsdl:output>
|
1327
|
+
</wsdl:operation>
|
1328
|
+
</wsdl:binding>
|
1329
|
+
<wsdl:binding name="PostalWSSoap12" type="tns:PostalWSSoap">
|
1330
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
1331
|
+
<wsdl:operation name="SendLetterAdvanced">
|
1332
|
+
<soap12:operation soapAction="PostalMethods/SendLetterAdvanced" style="document" />
|
1333
|
+
<wsdl:input>
|
1334
|
+
<soap12:body use="literal" />
|
1335
|
+
</wsdl:input>
|
1336
|
+
<wsdl:output>
|
1337
|
+
<soap12:body use="literal" />
|
1338
|
+
</wsdl:output>
|
1339
|
+
</wsdl:operation>
|
1340
|
+
<wsdl:operation name="SendLetter">
|
1341
|
+
<soap12:operation soapAction="PostalMethods/SendLetter" style="document" />
|
1342
|
+
<wsdl:input>
|
1343
|
+
<soap12:body use="literal" />
|
1344
|
+
</wsdl:input>
|
1345
|
+
<wsdl:output>
|
1346
|
+
<soap12:body use="literal" />
|
1347
|
+
</wsdl:output>
|
1348
|
+
</wsdl:operation>
|
1349
|
+
<wsdl:operation name="SendLetterAndAddress">
|
1350
|
+
<soap12:operation soapAction="PostalMethods/SendLetterAndAddress" style="document" />
|
1351
|
+
<wsdl:input>
|
1352
|
+
<soap12:body use="literal" />
|
1353
|
+
</wsdl:input>
|
1354
|
+
<wsdl:output>
|
1355
|
+
<soap12:body use="literal" />
|
1356
|
+
</wsdl:output>
|
1357
|
+
</wsdl:operation>
|
1358
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
1359
|
+
<soap12:operation soapAction="PostalMethods/SendPostcardAndAddress" style="document" />
|
1360
|
+
<wsdl:input>
|
1361
|
+
<soap12:body use="literal" />
|
1362
|
+
</wsdl:input>
|
1363
|
+
<wsdl:output>
|
1364
|
+
<soap12:body use="literal" />
|
1365
|
+
</wsdl:output>
|
1366
|
+
</wsdl:operation>
|
1367
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
1368
|
+
<soap12:operation soapAction="PostalMethods/SendWordMailMerge_Compressed" style="document" />
|
1369
|
+
<wsdl:input>
|
1370
|
+
<soap12:body use="literal" />
|
1371
|
+
</wsdl:input>
|
1372
|
+
<wsdl:output>
|
1373
|
+
<soap12:body use="literal" />
|
1374
|
+
</wsdl:output>
|
1375
|
+
</wsdl:operation>
|
1376
|
+
<wsdl:operation name="GetPDF">
|
1377
|
+
<soap12:operation soapAction="PostalMethods/GetPDF" style="document" />
|
1378
|
+
<wsdl:input>
|
1379
|
+
<soap12:body use="literal" />
|
1380
|
+
</wsdl:input>
|
1381
|
+
<wsdl:output>
|
1382
|
+
<soap12:body use="literal" />
|
1383
|
+
</wsdl:output>
|
1384
|
+
</wsdl:operation>
|
1385
|
+
<wsdl:operation name="CancelDelivery">
|
1386
|
+
<soap12:operation soapAction="PostalMethods/CancelDelivery" style="document" />
|
1387
|
+
<wsdl:input>
|
1388
|
+
<soap12:body use="literal" />
|
1389
|
+
</wsdl:input>
|
1390
|
+
<wsdl:output>
|
1391
|
+
<soap12:body use="literal" />
|
1392
|
+
</wsdl:output>
|
1393
|
+
</wsdl:operation>
|
1394
|
+
<wsdl:operation name="UploadFile">
|
1395
|
+
<soap12:operation soapAction="PostalMethods/UploadFile" style="document" />
|
1396
|
+
<wsdl:input>
|
1397
|
+
<soap12:body use="literal" />
|
1398
|
+
</wsdl:input>
|
1399
|
+
<wsdl:output>
|
1400
|
+
<soap12:body use="literal" />
|
1401
|
+
</wsdl:output>
|
1402
|
+
</wsdl:operation>
|
1403
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1404
|
+
<soap12:operation soapAction="PostalMethods/DeleteUploadedFile" style="document" />
|
1405
|
+
<wsdl:input>
|
1406
|
+
<soap12:body use="literal" />
|
1407
|
+
</wsdl:input>
|
1408
|
+
<wsdl:output>
|
1409
|
+
<soap12:body use="literal" />
|
1410
|
+
</wsdl:output>
|
1411
|
+
</wsdl:operation>
|
1412
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1413
|
+
<soap12:operation soapAction="PostalMethods/GetUploadedFileDetails" style="document" />
|
1414
|
+
<wsdl:input>
|
1415
|
+
<soap12:body use="literal" />
|
1416
|
+
</wsdl:input>
|
1417
|
+
<wsdl:output>
|
1418
|
+
<soap12:body use="literal" />
|
1419
|
+
</wsdl:output>
|
1420
|
+
</wsdl:operation>
|
1421
|
+
<wsdl:operation name="GetDetails">
|
1422
|
+
<soap12:operation soapAction="PostalMethods/GetDetails" style="document" />
|
1423
|
+
<wsdl:input>
|
1424
|
+
<soap12:body use="literal" />
|
1425
|
+
</wsdl:input>
|
1426
|
+
<wsdl:output>
|
1427
|
+
<soap12:body use="literal" />
|
1428
|
+
</wsdl:output>
|
1429
|
+
</wsdl:operation>
|
1430
|
+
<wsdl:operation name="GetDetailsExtended">
|
1431
|
+
<soap12:operation soapAction="PostalMethods/GetDetailsExtended" style="document" />
|
1432
|
+
<wsdl:input>
|
1433
|
+
<soap12:body use="literal" />
|
1434
|
+
</wsdl:input>
|
1435
|
+
<wsdl:output>
|
1436
|
+
<soap12:body use="literal" />
|
1437
|
+
</wsdl:output>
|
1438
|
+
</wsdl:operation>
|
1439
|
+
<wsdl:operation name="GetStatus">
|
1440
|
+
<soap12:operation soapAction="PostalMethods/GetStatus" style="document" />
|
1441
|
+
<wsdl:input>
|
1442
|
+
<soap12:body use="literal" />
|
1443
|
+
</wsdl:input>
|
1444
|
+
<wsdl:output>
|
1445
|
+
<soap12:body use="literal" />
|
1446
|
+
</wsdl:output>
|
1447
|
+
</wsdl:operation>
|
1448
|
+
<wsdl:operation name="GetBatchStatus">
|
1449
|
+
<soap12:operation soapAction="PostalMethods/GetBatchStatus" style="document" />
|
1450
|
+
<wsdl:input>
|
1451
|
+
<soap12:body use="literal" />
|
1452
|
+
</wsdl:input>
|
1453
|
+
<wsdl:output>
|
1454
|
+
<soap12:body use="literal" />
|
1455
|
+
</wsdl:output>
|
1456
|
+
</wsdl:operation>
|
1457
|
+
<wsdl:operation name="GetBatchDetails">
|
1458
|
+
<soap12:operation soapAction="PostalMethods/GetBatchDetails" style="document" />
|
1459
|
+
<wsdl:input>
|
1460
|
+
<soap12:body use="literal" />
|
1461
|
+
</wsdl:input>
|
1462
|
+
<wsdl:output>
|
1463
|
+
<soap12:body use="literal" />
|
1464
|
+
</wsdl:output>
|
1465
|
+
</wsdl:operation>
|
1466
|
+
</wsdl:binding>
|
1467
|
+
<wsdl:binding name="PostalWSHttpGet" type="tns:PostalWSHttpGet">
|
1468
|
+
<http:binding verb="GET" />
|
1469
|
+
<wsdl:operation name="SendLetter">
|
1470
|
+
<http:operation location="/SendLetter" />
|
1471
|
+
<wsdl:input>
|
1472
|
+
<http:urlEncoded />
|
1473
|
+
</wsdl:input>
|
1474
|
+
<wsdl:output>
|
1475
|
+
<mime:mimeXml part="Body" />
|
1476
|
+
</wsdl:output>
|
1477
|
+
</wsdl:operation>
|
1478
|
+
<wsdl:operation name="SendLetterAndAddress">
|
1479
|
+
<http:operation location="/SendLetterAndAddress" />
|
1480
|
+
<wsdl:input>
|
1481
|
+
<http:urlEncoded />
|
1482
|
+
</wsdl:input>
|
1483
|
+
<wsdl:output>
|
1484
|
+
<mime:mimeXml part="Body" />
|
1485
|
+
</wsdl:output>
|
1486
|
+
</wsdl:operation>
|
1487
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
1488
|
+
<http:operation location="/SendPostcardAndAddress" />
|
1489
|
+
<wsdl:input>
|
1490
|
+
<http:urlEncoded />
|
1491
|
+
</wsdl:input>
|
1492
|
+
<wsdl:output>
|
1493
|
+
<mime:mimeXml part="Body" />
|
1494
|
+
</wsdl:output>
|
1495
|
+
</wsdl:operation>
|
1496
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
1497
|
+
<http:operation location="/SendWordMailMerge_Compressed" />
|
1498
|
+
<wsdl:input>
|
1499
|
+
<http:urlEncoded />
|
1500
|
+
</wsdl:input>
|
1501
|
+
<wsdl:output>
|
1502
|
+
<mime:mimeXml part="Body" />
|
1503
|
+
</wsdl:output>
|
1504
|
+
</wsdl:operation>
|
1505
|
+
<wsdl:operation name="GetPDF">
|
1506
|
+
<http:operation location="/GetPDF" />
|
1507
|
+
<wsdl:input>
|
1508
|
+
<http:urlEncoded />
|
1509
|
+
</wsdl:input>
|
1510
|
+
<wsdl:output>
|
1511
|
+
<mime:mimeXml part="Body" />
|
1512
|
+
</wsdl:output>
|
1513
|
+
</wsdl:operation>
|
1514
|
+
<wsdl:operation name="CancelDelivery">
|
1515
|
+
<http:operation location="/CancelDelivery" />
|
1516
|
+
<wsdl:input>
|
1517
|
+
<http:urlEncoded />
|
1518
|
+
</wsdl:input>
|
1519
|
+
<wsdl:output>
|
1520
|
+
<mime:mimeXml part="Body" />
|
1521
|
+
</wsdl:output>
|
1522
|
+
</wsdl:operation>
|
1523
|
+
<wsdl:operation name="UploadFile">
|
1524
|
+
<http:operation location="/UploadFile" />
|
1525
|
+
<wsdl:input>
|
1526
|
+
<http:urlEncoded />
|
1527
|
+
</wsdl:input>
|
1528
|
+
<wsdl:output>
|
1529
|
+
<mime:mimeXml part="Body" />
|
1530
|
+
</wsdl:output>
|
1531
|
+
</wsdl:operation>
|
1532
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1533
|
+
<http:operation location="/DeleteUploadedFile" />
|
1534
|
+
<wsdl:input>
|
1535
|
+
<http:urlEncoded />
|
1536
|
+
</wsdl:input>
|
1537
|
+
<wsdl:output>
|
1538
|
+
<mime:mimeXml part="Body" />
|
1539
|
+
</wsdl:output>
|
1540
|
+
</wsdl:operation>
|
1541
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1542
|
+
<http:operation location="/GetUploadedFileDetails" />
|
1543
|
+
<wsdl:input>
|
1544
|
+
<http:urlEncoded />
|
1545
|
+
</wsdl:input>
|
1546
|
+
<wsdl:output>
|
1547
|
+
<mime:mimeXml part="Body" />
|
1548
|
+
</wsdl:output>
|
1549
|
+
</wsdl:operation>
|
1550
|
+
<wsdl:operation name="GetDetails">
|
1551
|
+
<http:operation location="/GetDetails" />
|
1552
|
+
<wsdl:input>
|
1553
|
+
<http:urlEncoded />
|
1554
|
+
</wsdl:input>
|
1555
|
+
<wsdl:output>
|
1556
|
+
<mime:mimeXml part="Body" />
|
1557
|
+
</wsdl:output>
|
1558
|
+
</wsdl:operation>
|
1559
|
+
<wsdl:operation name="GetDetailsExtended">
|
1560
|
+
<http:operation location="/GetDetailsExtended" />
|
1561
|
+
<wsdl:input>
|
1562
|
+
<http:urlEncoded />
|
1563
|
+
</wsdl:input>
|
1564
|
+
<wsdl:output>
|
1565
|
+
<mime:mimeXml part="Body" />
|
1566
|
+
</wsdl:output>
|
1567
|
+
</wsdl:operation>
|
1568
|
+
<wsdl:operation name="GetStatus">
|
1569
|
+
<http:operation location="/GetStatus" />
|
1570
|
+
<wsdl:input>
|
1571
|
+
<http:urlEncoded />
|
1572
|
+
</wsdl:input>
|
1573
|
+
<wsdl:output>
|
1574
|
+
<mime:mimeXml part="Body" />
|
1575
|
+
</wsdl:output>
|
1576
|
+
</wsdl:operation>
|
1577
|
+
<wsdl:operation name="GetBatchStatus">
|
1578
|
+
<http:operation location="/GetBatchStatus" />
|
1579
|
+
<wsdl:input>
|
1580
|
+
<http:urlEncoded />
|
1581
|
+
</wsdl:input>
|
1582
|
+
<wsdl:output>
|
1583
|
+
<mime:mimeXml part="Body" />
|
1584
|
+
</wsdl:output>
|
1585
|
+
</wsdl:operation>
|
1586
|
+
<wsdl:operation name="GetBatchDetails">
|
1587
|
+
<http:operation location="/GetBatchDetails" />
|
1588
|
+
<wsdl:input>
|
1589
|
+
<http:urlEncoded />
|
1590
|
+
</wsdl:input>
|
1591
|
+
<wsdl:output>
|
1592
|
+
<mime:mimeXml part="Body" />
|
1593
|
+
</wsdl:output>
|
1594
|
+
</wsdl:operation>
|
1595
|
+
</wsdl:binding>
|
1596
|
+
<wsdl:binding name="PostalWSHttpPost" type="tns:PostalWSHttpPost">
|
1597
|
+
<http:binding verb="POST" />
|
1598
|
+
<wsdl:operation name="SendLetter">
|
1599
|
+
<http:operation location="/SendLetter" />
|
1600
|
+
<wsdl:input>
|
1601
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1602
|
+
</wsdl:input>
|
1603
|
+
<wsdl:output>
|
1604
|
+
<mime:mimeXml part="Body" />
|
1605
|
+
</wsdl:output>
|
1606
|
+
</wsdl:operation>
|
1607
|
+
<wsdl:operation name="SendLetterAndAddress">
|
1608
|
+
<http:operation location="/SendLetterAndAddress" />
|
1609
|
+
<wsdl:input>
|
1610
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1611
|
+
</wsdl:input>
|
1612
|
+
<wsdl:output>
|
1613
|
+
<mime:mimeXml part="Body" />
|
1614
|
+
</wsdl:output>
|
1615
|
+
</wsdl:operation>
|
1616
|
+
<wsdl:operation name="SendPostcardAndAddress">
|
1617
|
+
<http:operation location="/SendPostcardAndAddress" />
|
1618
|
+
<wsdl:input>
|
1619
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1620
|
+
</wsdl:input>
|
1621
|
+
<wsdl:output>
|
1622
|
+
<mime:mimeXml part="Body" />
|
1623
|
+
</wsdl:output>
|
1624
|
+
</wsdl:operation>
|
1625
|
+
<wsdl:operation name="SendWordMailMerge_Compressed">
|
1626
|
+
<http:operation location="/SendWordMailMerge_Compressed" />
|
1627
|
+
<wsdl:input>
|
1628
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1629
|
+
</wsdl:input>
|
1630
|
+
<wsdl:output>
|
1631
|
+
<mime:mimeXml part="Body" />
|
1632
|
+
</wsdl:output>
|
1633
|
+
</wsdl:operation>
|
1634
|
+
<wsdl:operation name="GetPDF">
|
1635
|
+
<http:operation location="/GetPDF" />
|
1636
|
+
<wsdl:input>
|
1637
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1638
|
+
</wsdl:input>
|
1639
|
+
<wsdl:output>
|
1640
|
+
<mime:mimeXml part="Body" />
|
1641
|
+
</wsdl:output>
|
1642
|
+
</wsdl:operation>
|
1643
|
+
<wsdl:operation name="CancelDelivery">
|
1644
|
+
<http:operation location="/CancelDelivery" />
|
1645
|
+
<wsdl:input>
|
1646
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1647
|
+
</wsdl:input>
|
1648
|
+
<wsdl:output>
|
1649
|
+
<mime:mimeXml part="Body" />
|
1650
|
+
</wsdl:output>
|
1651
|
+
</wsdl:operation>
|
1652
|
+
<wsdl:operation name="UploadFile">
|
1653
|
+
<http:operation location="/UploadFile" />
|
1654
|
+
<wsdl:input>
|
1655
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1656
|
+
</wsdl:input>
|
1657
|
+
<wsdl:output>
|
1658
|
+
<mime:mimeXml part="Body" />
|
1659
|
+
</wsdl:output>
|
1660
|
+
</wsdl:operation>
|
1661
|
+
<wsdl:operation name="DeleteUploadedFile">
|
1662
|
+
<http:operation location="/DeleteUploadedFile" />
|
1663
|
+
<wsdl:input>
|
1664
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1665
|
+
</wsdl:input>
|
1666
|
+
<wsdl:output>
|
1667
|
+
<mime:mimeXml part="Body" />
|
1668
|
+
</wsdl:output>
|
1669
|
+
</wsdl:operation>
|
1670
|
+
<wsdl:operation name="GetUploadedFileDetails">
|
1671
|
+
<http:operation location="/GetUploadedFileDetails" />
|
1672
|
+
<wsdl:input>
|
1673
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1674
|
+
</wsdl:input>
|
1675
|
+
<wsdl:output>
|
1676
|
+
<mime:mimeXml part="Body" />
|
1677
|
+
</wsdl:output>
|
1678
|
+
</wsdl:operation>
|
1679
|
+
<wsdl:operation name="GetDetails">
|
1680
|
+
<http:operation location="/GetDetails" />
|
1681
|
+
<wsdl:input>
|
1682
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1683
|
+
</wsdl:input>
|
1684
|
+
<wsdl:output>
|
1685
|
+
<mime:mimeXml part="Body" />
|
1686
|
+
</wsdl:output>
|
1687
|
+
</wsdl:operation>
|
1688
|
+
<wsdl:operation name="GetDetailsExtended">
|
1689
|
+
<http:operation location="/GetDetailsExtended" />
|
1690
|
+
<wsdl:input>
|
1691
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1692
|
+
</wsdl:input>
|
1693
|
+
<wsdl:output>
|
1694
|
+
<mime:mimeXml part="Body" />
|
1695
|
+
</wsdl:output>
|
1696
|
+
</wsdl:operation>
|
1697
|
+
<wsdl:operation name="GetStatus">
|
1698
|
+
<http:operation location="/GetStatus" />
|
1699
|
+
<wsdl:input>
|
1700
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1701
|
+
</wsdl:input>
|
1702
|
+
<wsdl:output>
|
1703
|
+
<mime:mimeXml part="Body" />
|
1704
|
+
</wsdl:output>
|
1705
|
+
</wsdl:operation>
|
1706
|
+
<wsdl:operation name="GetBatchStatus">
|
1707
|
+
<http:operation location="/GetBatchStatus" />
|
1708
|
+
<wsdl:input>
|
1709
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1710
|
+
</wsdl:input>
|
1711
|
+
<wsdl:output>
|
1712
|
+
<mime:mimeXml part="Body" />
|
1713
|
+
</wsdl:output>
|
1714
|
+
</wsdl:operation>
|
1715
|
+
<wsdl:operation name="GetBatchDetails">
|
1716
|
+
<http:operation location="/GetBatchDetails" />
|
1717
|
+
<wsdl:input>
|
1718
|
+
<mime:content type="application/x-www-form-urlencoded" />
|
1719
|
+
</wsdl:input>
|
1720
|
+
<wsdl:output>
|
1721
|
+
<mime:mimeXml part="Body" />
|
1722
|
+
</wsdl:output>
|
1723
|
+
</wsdl:operation>
|
1724
|
+
</wsdl:binding>
|
1725
|
+
<wsdl:service name="PostalWS">
|
1726
|
+
<wsdl:port name="PostalWSSoap" binding="tns:PostalWSSoap">
|
1727
|
+
<soap:address location="http://api.postalmethods.com/2009-09-09/PostalWS.asmx" />
|
1728
|
+
</wsdl:port>
|
1729
|
+
<wsdl:port name="PostalWSSoap12" binding="tns:PostalWSSoap12">
|
1730
|
+
<soap12:address location="http://api.postalmethods.com/2009-09-09/PostalWS.asmx" />
|
1731
|
+
</wsdl:port>
|
1732
|
+
<wsdl:port name="PostalWSHttpGet" binding="tns:PostalWSHttpGet">
|
1733
|
+
<http:address location="http://api.postalmethods.com/2009-09-09/PostalWS.asmx" />
|
1734
|
+
</wsdl:port>
|
1735
|
+
<wsdl:port name="PostalWSHttpPost" binding="tns:PostalWSHttpPost">
|
1736
|
+
<http:address location="http://api.postalmethods.com/2009-09-09/PostalWS.asmx" />
|
1737
|
+
</wsdl:port>
|
1738
|
+
</wsdl:service>
|
1739
|
+
</wsdl:definitions>
|