tax_cloud 0.1.4 → 0.2.0
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.
- data/.travis.yml +9 -0
- data/CHANGELOG.rdoc +28 -0
- data/CONTRIBUTORS.txt +20 -0
- data/Gemfile +1 -1
- data/LICENSE.rdoc +22 -0
- data/README.rdoc +112 -28
- data/Rakefile +10 -2
- data/lib/config/locales/en.yml +34 -0
- data/lib/hash.rb +8 -6
- data/lib/savon_soap_xml.rb +33 -0
- data/lib/tasks/tax_cloud.rake +20 -0
- data/lib/tasks/tax_code_groups.rake +39 -0
- data/lib/tasks/tax_codes.rake +45 -0
- data/lib/tax_cloud.rb +43 -16
- data/lib/tax_cloud/address.rb +30 -17
- data/lib/tax_cloud/cart_item.rb +13 -19
- data/lib/tax_cloud/client.rb +48 -0
- data/lib/tax_cloud/configuration.rb +17 -2
- data/lib/tax_cloud/errors.rb +6 -0
- data/lib/tax_cloud/errors/api_error.rb +18 -0
- data/lib/tax_cloud/errors/missing_config_error.rb +13 -0
- data/lib/tax_cloud/errors/missing_config_option_error.rb +19 -0
- data/lib/tax_cloud/errors/soap_error.rb +33 -0
- data/lib/tax_cloud/errors/tax_cloud_error.rb +86 -0
- data/lib/tax_cloud/errors/unexpected_soap_response_error.rb +23 -0
- data/lib/tax_cloud/record.rb +14 -0
- data/lib/tax_cloud/responses.rb +13 -0
- data/lib/tax_cloud/responses/authorized.rb +10 -0
- data/lib/tax_cloud/responses/authorized_with_capture.rb +10 -0
- data/lib/tax_cloud/responses/base.rb +88 -0
- data/lib/tax_cloud/responses/captured.rb +11 -0
- data/lib/tax_cloud/responses/cart_item.rb +24 -0
- data/lib/tax_cloud/responses/generic.rb +35 -0
- data/lib/tax_cloud/responses/lookup.rb +41 -0
- data/lib/tax_cloud/responses/ping.rb +10 -0
- data/lib/tax_cloud/responses/returned.rb +10 -0
- data/lib/tax_cloud/responses/tax_code_groups.rb +33 -0
- data/lib/tax_cloud/responses/tax_codes.rb +33 -0
- data/lib/tax_cloud/responses/tax_codes_by_group.rb +33 -0
- data/lib/tax_cloud/responses/verify_address.rb +29 -0
- data/lib/tax_cloud/tax_code.rb +11 -0
- data/lib/tax_cloud/tax_code_constants.rb +562 -0
- data/lib/tax_cloud/tax_code_group.rb +30 -0
- data/lib/tax_cloud/tax_code_group_constants.rb +31 -0
- data/lib/tax_cloud/tax_code_groups.rb +28 -0
- data/lib/tax_cloud/tax_codes.rb +24 -47
- data/lib/tax_cloud/transaction.rb +39 -34
- data/lib/tax_cloud/version.rb +3 -3
- data/tax_cloud.gemspec +7 -5
- data/test/cassettes/authorized.yml +70 -45
- data/test/cassettes/authorized_with_capture.yml +70 -45
- data/test/cassettes/captured.yml +101 -67
- data/test/cassettes/get_tic_groups.yml +656 -0
- data/test/cassettes/get_tics.yml +952 -0
- data/test/cassettes/get_tics_by_group.yml +49 -0
- data/test/cassettes/invalid_soap_call.yml +651 -0
- data/test/cassettes/lookup.yml +644 -25
- data/test/cassettes/lookup_ny.yml +651 -0
- data/test/cassettes/ping.yml +647 -0
- data/test/cassettes/ping_with_invalid_credentials.yml +647 -0
- data/test/cassettes/ping_with_invalid_response.yml +647 -0
- data/test/cassettes/returned.yml +101 -67
- data/test/cassettes/verify_bad_address.yml +578 -976
- data/test/cassettes/verify_good_address.yml +36 -23
- data/test/helper.rb +4 -19
- data/test/test_address.rb +25 -7
- data/test/test_client.rb +29 -0
- data/test/test_configuration.rb +33 -0
- data/test/test_setup.rb +18 -0
- data/test/test_soap.rb +13 -0
- data/test/test_tax_code_groups.rb +31 -0
- data/test/test_tax_codes.rb +19 -0
- data/test/test_transaction.rb +22 -11
- data/test/test_transaction_ny.rb +27 -0
- data/test/vcr_setup.rb +9 -0
- metadata +134 -24
- data/lib/savon_xml_override.rb +0 -30
data/test/cassettes/returned.yml
CHANGED
@@ -1,94 +1,128 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
|
4
|
-
method:
|
5
|
-
uri: https://api.taxcloud.net
|
6
|
-
body:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://api.taxcloud.net/1.0/TaxCloud.asmx
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
9
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://taxcloud.net"
|
10
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://taxcloud.net"><env:Body><ins0:Lookup><ins0:customerID>42</ins0:customerID><ins0:cartID>708</ins0:cartID><ins0:cartItems><ins0:CartItem><wsdl:Index>0</wsdl:Index><wsdl:ItemID>SKU-TEST</wsdl:ItemID><wsdl:TIC>00000</wsdl:TIC><wsdl:Price>50.0</wsdl:Price><wsdl:Qty>1</wsdl:Qty></ins0:CartItem><ins0:CartItem><wsdl:Index>1</wsdl:Index><wsdl:ItemID>SKU-TEST1</wsdl:ItemID><wsdl:TIC>00000</wsdl:TIC><wsdl:Price>50.0</wsdl:Price><wsdl:Qty>1</wsdl:Qty></ins0:CartItem></ins0:cartItems><ins0:origin><ins0:Address1>888
|
11
|
+
6th Ave</ins0:Address1><ins0:Address2 xsi:nil="true"/><ins0:City>New York</ins0:City><ins0:State>NY</ins0:State><ins0:Zip5>10001</ins0:Zip5><ins0:Zip4
|
12
|
+
xsi:nil="true"/></ins0:origin><ins0:destination><ins0:Address1>888 6th Ave</ins0:Address1><ins0:Address2
|
13
|
+
xsi:nil="true"/><ins0:City>New York</ins0:City><ins0:State>NY</ins0:State><ins0:Zip5>10001</ins0:Zip5><ins0:Zip4
|
14
|
+
xsi:nil="true"/></ins0:destination><ins0:apiLoginID>api-login-id</ins0:apiLoginID><ins0:apiKey>api-key</ins0:apiKey></ins0:Lookup></env:Body></env:Envelope>
|
15
|
+
headers:
|
16
|
+
Soapaction:
|
17
|
+
- ! '"http://taxcloud.net/Lookup"'
|
18
|
+
Content-Type:
|
11
19
|
- text/xml;charset=UTF-8
|
12
|
-
response:
|
13
|
-
status:
|
20
|
+
response:
|
21
|
+
status:
|
14
22
|
code: 200
|
15
23
|
message: OK
|
16
|
-
headers:
|
17
|
-
|
24
|
+
headers:
|
25
|
+
Cache-Control:
|
18
26
|
- private, max-age=0
|
19
|
-
|
27
|
+
Content-Type:
|
20
28
|
- text/xml; charset=utf-8
|
21
|
-
|
29
|
+
Server:
|
22
30
|
- Microsoft-IIS/7.0
|
23
|
-
|
31
|
+
X-Aspnet-Version:
|
24
32
|
- 2.0.50727
|
25
|
-
|
33
|
+
X-Powered-By:
|
26
34
|
- TaxCloud
|
27
|
-
|
35
|
+
Date:
|
28
36
|
- Sat, 17 Sep 2011 19:22:00 GMT
|
29
|
-
|
30
|
-
-
|
31
|
-
body:
|
32
|
-
|
33
|
-
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
37
|
+
Content-Length:
|
38
|
+
- '869'
|
39
|
+
body:
|
40
|
+
encoding: UTF-8
|
41
|
+
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
42
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><LookupResponse
|
43
|
+
xmlns="http://taxcloud.net"><LookupResult><ResponseType>Informational</ResponseType><Messages><ResponseMessage><ResponseType>Informational</ResponseType><Message>The
|
44
|
+
transaction occurred in a non-SSUTA State. TaxCloud will not collect or remit
|
45
|
+
the tax amount for this transaction.</Message></ResponseMessage></Messages><CartID>941</CartID><CartItemsResponse><CartItemResponse><CartItemIndex>0</CartItemIndex><TaxAmount>4.4375</TaxAmount></CartItemResponse><CartItemResponse><CartItemIndex>1</CartItemIndex><TaxAmount>4.4375</TaxAmount></CartItemResponse></CartItemsResponse></LookupResult></LookupResponse></soap:Body></soap:Envelope>
|
46
|
+
http_version: '1.1'
|
47
|
+
recorded_at: Fri, 23 Nov 2012 15:41:40 GMT
|
48
|
+
- request:
|
49
|
+
method: post
|
50
|
+
uri: https://api.taxcloud.net/1.0/TaxCloud.asmx
|
51
|
+
body:
|
52
|
+
encoding: UTF-8
|
53
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
54
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://taxcloud.net"
|
55
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://taxcloud.net"><env:Body><ins0:AuthorizedWithCapture><ins0:customerID>42</ins0:customerID><ins0:cartID>708</ins0:cartID><ins0:orderID>2361</ins0:orderID><ins0:dateAuthorized>2011-09-17</ins0:dateAuthorized><ins0:dateCaptured>2011-09-17</ins0:dateCaptured><ins0:apiLoginID>api-login-id</ins0:apiLoginID><ins0:apiKey>api-key</ins0:apiKey></ins0:AuthorizedWithCapture></env:Body></env:Envelope>
|
56
|
+
headers:
|
57
|
+
Soapaction:
|
58
|
+
- ! '"http://taxcloud.net/AuthorizedWithCapture"'
|
59
|
+
Content-Type:
|
42
60
|
- text/xml;charset=UTF-8
|
43
|
-
response:
|
44
|
-
status:
|
61
|
+
response:
|
62
|
+
status:
|
45
63
|
code: 200
|
46
64
|
message: OK
|
47
|
-
headers:
|
48
|
-
|
65
|
+
headers:
|
66
|
+
Cache-Control:
|
49
67
|
- private, max-age=0
|
50
|
-
|
68
|
+
Content-Type:
|
51
69
|
- text/xml; charset=utf-8
|
52
|
-
|
70
|
+
Server:
|
53
71
|
- Microsoft-IIS/7.0
|
54
|
-
|
72
|
+
X-Aspnet-Version:
|
55
73
|
- 2.0.50727
|
56
|
-
|
74
|
+
X-Powered-By:
|
57
75
|
- TaxCloud
|
58
|
-
|
76
|
+
Date:
|
59
77
|
- Sat, 17 Sep 2011 19:22:01 GMT
|
60
|
-
|
61
|
-
-
|
62
|
-
body:
|
63
|
-
|
64
|
-
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
78
|
+
Content-Length:
|
79
|
+
- '439'
|
80
|
+
body:
|
81
|
+
encoding: UTF-8
|
82
|
+
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
83
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><AuthorizedWithCaptureResponse
|
84
|
+
xmlns="http://taxcloud.net"><AuthorizedWithCaptureResult><ResponseType>OK</ResponseType><Messages
|
85
|
+
/></AuthorizedWithCaptureResult></AuthorizedWithCaptureResponse></soap:Body></soap:Envelope>
|
86
|
+
http_version: '1.1'
|
87
|
+
recorded_at: Fri, 23 Nov 2012 15:41:40 GMT
|
88
|
+
- request:
|
89
|
+
method: post
|
90
|
+
uri: https://api.taxcloud.net/1.0/TaxCloud.asmx
|
91
|
+
body:
|
92
|
+
encoding: UTF-8
|
93
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
94
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://taxcloud.net"
|
95
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://taxcloud.net"><env:Body><ins0:Returned><ins0:orderID>2361</ins0:orderID><ins0:cartItems><ins0:CartItem><wsdl:Index>0</wsdl:Index><wsdl:ItemID>SKU-TEST</wsdl:ItemID><wsdl:TIC>00000</wsdl:TIC><wsdl:Price>50.0</wsdl:Price><wsdl:Qty>1</wsdl:Qty></ins0:CartItem><ins0:CartItem><wsdl:Index>1</wsdl:Index><wsdl:ItemID>SKU-TEST1</wsdl:ItemID><wsdl:TIC>00000</wsdl:TIC><wsdl:Price>50.0</wsdl:Price><wsdl:Qty>1</wsdl:Qty></ins0:CartItem></ins0:cartItems><ins0:returnedDate>2011-09-17</ins0:returnedDate><ins0:apiLoginID>api-login-id</ins0:apiLoginID><ins0:apiKey>api-key</ins0:apiKey></ins0:Returned></env:Body></env:Envelope>
|
96
|
+
headers:
|
97
|
+
Soapaction:
|
98
|
+
- ! '"http://taxcloud.net/Returned"'
|
99
|
+
Content-Type:
|
73
100
|
- text/xml;charset=UTF-8
|
74
|
-
response:
|
75
|
-
status:
|
101
|
+
response:
|
102
|
+
status:
|
76
103
|
code: 200
|
77
104
|
message: OK
|
78
|
-
headers:
|
79
|
-
|
105
|
+
headers:
|
106
|
+
Cache-Control:
|
80
107
|
- private, max-age=0
|
81
|
-
|
108
|
+
Content-Type:
|
82
109
|
- text/xml; charset=utf-8
|
83
|
-
|
110
|
+
Server:
|
84
111
|
- Microsoft-IIS/7.0
|
85
|
-
|
112
|
+
X-Aspnet-Version:
|
86
113
|
- 2.0.50727
|
87
|
-
|
114
|
+
X-Powered-By:
|
88
115
|
- TaxCloud
|
89
|
-
|
116
|
+
Date:
|
90
117
|
- Sat, 17 Sep 2011 19:22:01 GMT
|
91
|
-
|
92
|
-
-
|
93
|
-
body:
|
94
|
-
|
118
|
+
Content-Length:
|
119
|
+
- '387'
|
120
|
+
body:
|
121
|
+
encoding: UTF-8
|
122
|
+
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
123
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><ReturnedResponse
|
124
|
+
xmlns="http://taxcloud.net"><ReturnedResult><ResponseType>OK</ResponseType><Messages
|
125
|
+
/></ReturnedResult></ReturnedResponse></soap:Body></soap:Envelope>
|
126
|
+
http_version: '1.1'
|
127
|
+
recorded_at: Fri, 23 Nov 2012 15:41:40 GMT
|
128
|
+
recorded_with: VCR 2.3.0
|
@@ -1,993 +1,595 @@
|
|
1
|
-
---
|
2
|
-
|
3
|
-
|
4
|
-
method:
|
5
|
-
uri: https://api.taxcloud.net
|
6
|
-
body:
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.taxcloud.net/1.0/?wsdl
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
10
12
|
code: 200
|
11
13
|
message: OK
|
12
|
-
headers:
|
13
|
-
|
14
|
+
headers:
|
15
|
+
Cache-Control:
|
14
16
|
- private, max-age=0
|
15
|
-
|
17
|
+
Content-Type:
|
16
18
|
- text/xml; charset=utf-8
|
17
|
-
|
19
|
+
Server:
|
18
20
|
- Microsoft-IIS/7.0
|
19
|
-
|
21
|
+
X-Aspnet-Version:
|
20
22
|
- 2.0.50727
|
21
|
-
|
23
|
+
X-Powered-By:
|
22
24
|
- TaxCloud
|
23
|
-
|
25
|
+
Date:
|
24
26
|
- Sat, 17 Sep 2011 19:21:53 GMT
|
25
|
-
|
26
|
-
-
|
27
|
-
body:
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
<s:element
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
<s:
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
<s:element name
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
<s:
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
<s:
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
<s:
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
<s:
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
<s:element
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
</s:
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
</s:
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
<s:complexContent mixed="false">
|
566
|
-
<s:extension base="tns:ResponseBase">
|
567
|
-
<s:sequence>
|
568
|
-
<s:element minOccurs="0" maxOccurs="1" name="ExemptCertificates" type="tns:ArrayOfExemptionCertificate" />
|
569
|
-
</s:sequence>
|
570
|
-
</s:extension>
|
571
|
-
</s:complexContent>
|
572
|
-
</s:complexType>
|
573
|
-
<s:complexType name="ArrayOfExemptionCertificate">
|
574
|
-
<s:sequence>
|
575
|
-
<s:element minOccurs="0" maxOccurs="unbounded" name="ExemptionCertificate" nillable="true" type="tns:ExemptionCertificate" />
|
576
|
-
</s:sequence>
|
577
|
-
</s:complexType>
|
578
|
-
</s:schema>
|
579
|
-
</wsdl:types>
|
580
|
-
<wsdl:message name="VerifyAddressSoapIn">
|
581
|
-
<wsdl:part name="parameters" element="tns:VerifyAddress" />
|
582
|
-
</wsdl:message>
|
583
|
-
<wsdl:message name="VerifyAddressSoapOut">
|
584
|
-
<wsdl:part name="parameters" element="tns:VerifyAddressResponse" />
|
585
|
-
</wsdl:message>
|
586
|
-
<wsdl:message name="LookupForDateSoapIn">
|
587
|
-
<wsdl:part name="parameters" element="tns:LookupForDate" />
|
588
|
-
</wsdl:message>
|
589
|
-
<wsdl:message name="LookupForDateSoapOut">
|
590
|
-
<wsdl:part name="parameters" element="tns:LookupForDateResponse" />
|
591
|
-
</wsdl:message>
|
592
|
-
<wsdl:message name="LookupSoapIn">
|
593
|
-
<wsdl:part name="parameters" element="tns:Lookup" />
|
594
|
-
</wsdl:message>
|
595
|
-
<wsdl:message name="LookupSoapOut">
|
596
|
-
<wsdl:part name="parameters" element="tns:LookupResponse" />
|
597
|
-
</wsdl:message>
|
598
|
-
<wsdl:message name="AuthorizedSoapIn">
|
599
|
-
<wsdl:part name="parameters" element="tns:Authorized" />
|
600
|
-
</wsdl:message>
|
601
|
-
<wsdl:message name="AuthorizedSoapOut">
|
602
|
-
<wsdl:part name="parameters" element="tns:AuthorizedResponse" />
|
603
|
-
</wsdl:message>
|
604
|
-
<wsdl:message name="AuthorizedWithCaptureSoapIn">
|
605
|
-
<wsdl:part name="parameters" element="tns:AuthorizedWithCapture" />
|
606
|
-
</wsdl:message>
|
607
|
-
<wsdl:message name="AuthorizedWithCaptureSoapOut">
|
608
|
-
<wsdl:part name="parameters" element="tns:AuthorizedWithCaptureResponse" />
|
609
|
-
</wsdl:message>
|
610
|
-
<wsdl:message name="CapturedSoapIn">
|
611
|
-
<wsdl:part name="parameters" element="tns:Captured" />
|
612
|
-
</wsdl:message>
|
613
|
-
<wsdl:message name="CapturedSoapOut">
|
614
|
-
<wsdl:part name="parameters" element="tns:CapturedResponse" />
|
615
|
-
</wsdl:message>
|
616
|
-
<wsdl:message name="ReturnedSoapIn">
|
617
|
-
<wsdl:part name="parameters" element="tns:Returned" />
|
618
|
-
</wsdl:message>
|
619
|
-
<wsdl:message name="ReturnedSoapOut">
|
620
|
-
<wsdl:part name="parameters" element="tns:ReturnedResponse" />
|
621
|
-
</wsdl:message>
|
622
|
-
<wsdl:message name="GetTICGroupsSoapIn">
|
623
|
-
<wsdl:part name="parameters" element="tns:GetTICGroups" />
|
624
|
-
</wsdl:message>
|
625
|
-
<wsdl:message name="GetTICGroupsSoapOut">
|
626
|
-
<wsdl:part name="parameters" element="tns:GetTICGroupsResponse" />
|
627
|
-
</wsdl:message>
|
628
|
-
<wsdl:message name="GetTICsSoapIn">
|
629
|
-
<wsdl:part name="parameters" element="tns:GetTICs" />
|
630
|
-
</wsdl:message>
|
631
|
-
<wsdl:message name="GetTICsSoapOut">
|
632
|
-
<wsdl:part name="parameters" element="tns:GetTICsResponse" />
|
633
|
-
</wsdl:message>
|
634
|
-
<wsdl:message name="GetTICsByGroupSoapIn">
|
635
|
-
<wsdl:part name="parameters" element="tns:GetTICsByGroup" />
|
636
|
-
</wsdl:message>
|
637
|
-
<wsdl:message name="GetTICsByGroupSoapOut">
|
638
|
-
<wsdl:part name="parameters" element="tns:GetTICsByGroupResponse" />
|
639
|
-
</wsdl:message>
|
640
|
-
<wsdl:message name="AddExemptCertificateSoapIn">
|
641
|
-
<wsdl:part name="parameters" element="tns:AddExemptCertificate" />
|
642
|
-
</wsdl:message>
|
643
|
-
<wsdl:message name="AddExemptCertificateSoapOut">
|
644
|
-
<wsdl:part name="parameters" element="tns:AddExemptCertificateResponse" />
|
645
|
-
</wsdl:message>
|
646
|
-
<wsdl:message name="DeleteExemptCertificateSoapIn">
|
647
|
-
<wsdl:part name="parameters" element="tns:DeleteExemptCertificate" />
|
648
|
-
</wsdl:message>
|
649
|
-
<wsdl:message name="DeleteExemptCertificateSoapOut">
|
650
|
-
<wsdl:part name="parameters" element="tns:DeleteExemptCertificateResponse" />
|
651
|
-
</wsdl:message>
|
652
|
-
<wsdl:message name="GetExemptCertificatesSoapIn">
|
653
|
-
<wsdl:part name="parameters" element="tns:GetExemptCertificates" />
|
654
|
-
</wsdl:message>
|
655
|
-
<wsdl:message name="GetExemptCertificatesSoapOut">
|
656
|
-
<wsdl:part name="parameters" element="tns:GetExemptCertificatesResponse" />
|
657
|
-
</wsdl:message>
|
658
|
-
<wsdl:portType name="TaxCloudSoap">
|
659
|
-
<wsdl:operation name="VerifyAddress">
|
660
|
-
<wsdl:input message="tns:VerifyAddressSoapIn" />
|
661
|
-
<wsdl:output message="tns:VerifyAddressSoapOut" />
|
662
|
-
</wsdl:operation>
|
663
|
-
<wsdl:operation name="LookupForDate">
|
664
|
-
<wsdl:input message="tns:LookupForDateSoapIn" />
|
665
|
-
<wsdl:output message="tns:LookupForDateSoapOut" />
|
666
|
-
</wsdl:operation>
|
667
|
-
<wsdl:operation name="Lookup">
|
668
|
-
<wsdl:input message="tns:LookupSoapIn" />
|
669
|
-
<wsdl:output message="tns:LookupSoapOut" />
|
670
|
-
</wsdl:operation>
|
671
|
-
<wsdl:operation name="Authorized">
|
672
|
-
<wsdl:input message="tns:AuthorizedSoapIn" />
|
673
|
-
<wsdl:output message="tns:AuthorizedSoapOut" />
|
674
|
-
</wsdl:operation>
|
675
|
-
<wsdl:operation name="AuthorizedWithCapture">
|
676
|
-
<wsdl:input message="tns:AuthorizedWithCaptureSoapIn" />
|
677
|
-
<wsdl:output message="tns:AuthorizedWithCaptureSoapOut" />
|
678
|
-
</wsdl:operation>
|
679
|
-
<wsdl:operation name="Captured">
|
680
|
-
<wsdl:input message="tns:CapturedSoapIn" />
|
681
|
-
<wsdl:output message="tns:CapturedSoapOut" />
|
682
|
-
</wsdl:operation>
|
683
|
-
<wsdl:operation name="Returned">
|
684
|
-
<wsdl:input message="tns:ReturnedSoapIn" />
|
685
|
-
<wsdl:output message="tns:ReturnedSoapOut" />
|
686
|
-
</wsdl:operation>
|
687
|
-
<wsdl:operation name="GetTICGroups">
|
688
|
-
<wsdl:input message="tns:GetTICGroupsSoapIn" />
|
689
|
-
<wsdl:output message="tns:GetTICGroupsSoapOut" />
|
690
|
-
</wsdl:operation>
|
691
|
-
<wsdl:operation name="GetTICs">
|
692
|
-
<wsdl:input message="tns:GetTICsSoapIn" />
|
693
|
-
<wsdl:output message="tns:GetTICsSoapOut" />
|
694
|
-
</wsdl:operation>
|
695
|
-
<wsdl:operation name="GetTICsByGroup">
|
696
|
-
<wsdl:input message="tns:GetTICsByGroupSoapIn" />
|
697
|
-
<wsdl:output message="tns:GetTICsByGroupSoapOut" />
|
698
|
-
</wsdl:operation>
|
699
|
-
<wsdl:operation name="AddExemptCertificate">
|
700
|
-
<wsdl:input message="tns:AddExemptCertificateSoapIn" />
|
701
|
-
<wsdl:output message="tns:AddExemptCertificateSoapOut" />
|
702
|
-
</wsdl:operation>
|
703
|
-
<wsdl:operation name="DeleteExemptCertificate">
|
704
|
-
<wsdl:input message="tns:DeleteExemptCertificateSoapIn" />
|
705
|
-
<wsdl:output message="tns:DeleteExemptCertificateSoapOut" />
|
706
|
-
</wsdl:operation>
|
707
|
-
<wsdl:operation name="GetExemptCertificates">
|
708
|
-
<wsdl:input message="tns:GetExemptCertificatesSoapIn" />
|
709
|
-
<wsdl:output message="tns:GetExemptCertificatesSoapOut" />
|
710
|
-
</wsdl:operation>
|
711
|
-
</wsdl:portType>
|
712
|
-
<wsdl:binding name="TaxCloudSoap" type="tns:TaxCloudSoap">
|
713
|
-
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
714
|
-
<wsdl:operation name="VerifyAddress">
|
715
|
-
<soap:operation soapAction="http://taxcloud.net/VerifyAddress" style="document" />
|
716
|
-
<wsdl:input>
|
717
|
-
<soap:body use="literal" />
|
718
|
-
</wsdl:input>
|
719
|
-
<wsdl:output>
|
720
|
-
<soap:body use="literal" />
|
721
|
-
</wsdl:output>
|
722
|
-
</wsdl:operation>
|
723
|
-
<wsdl:operation name="LookupForDate">
|
724
|
-
<soap:operation soapAction="http://taxcloud.net/LookupForDate" style="document" />
|
725
|
-
<wsdl:input>
|
726
|
-
<soap:body use="literal" />
|
727
|
-
</wsdl:input>
|
728
|
-
<wsdl:output>
|
729
|
-
<soap:body use="literal" />
|
730
|
-
</wsdl:output>
|
731
|
-
</wsdl:operation>
|
732
|
-
<wsdl:operation name="Lookup">
|
733
|
-
<soap:operation soapAction="http://taxcloud.net/Lookup" style="document" />
|
734
|
-
<wsdl:input>
|
735
|
-
<soap:body use="literal" />
|
736
|
-
</wsdl:input>
|
737
|
-
<wsdl:output>
|
738
|
-
<soap:body use="literal" />
|
739
|
-
</wsdl:output>
|
740
|
-
</wsdl:operation>
|
741
|
-
<wsdl:operation name="Authorized">
|
742
|
-
<soap:operation soapAction="http://taxcloud.net/Authorized" style="document" />
|
743
|
-
<wsdl:input>
|
744
|
-
<soap:body use="literal" />
|
745
|
-
</wsdl:input>
|
746
|
-
<wsdl:output>
|
747
|
-
<soap:body use="literal" />
|
748
|
-
</wsdl:output>
|
749
|
-
</wsdl:operation>
|
750
|
-
<wsdl:operation name="AuthorizedWithCapture">
|
751
|
-
<soap:operation soapAction="http://taxcloud.net/AuthorizedWithCapture" style="document" />
|
752
|
-
<wsdl:input>
|
753
|
-
<soap:body use="literal" />
|
754
|
-
</wsdl:input>
|
755
|
-
<wsdl:output>
|
756
|
-
<soap:body use="literal" />
|
757
|
-
</wsdl:output>
|
758
|
-
</wsdl:operation>
|
759
|
-
<wsdl:operation name="Captured">
|
760
|
-
<soap:operation soapAction="http://taxcloud.net/Captured" style="document" />
|
761
|
-
<wsdl:input>
|
762
|
-
<soap:body use="literal" />
|
763
|
-
</wsdl:input>
|
764
|
-
<wsdl:output>
|
765
|
-
<soap:body use="literal" />
|
766
|
-
</wsdl:output>
|
767
|
-
</wsdl:operation>
|
768
|
-
<wsdl:operation name="Returned">
|
769
|
-
<soap:operation soapAction="http://taxcloud.net/Returned" style="document" />
|
770
|
-
<wsdl:input>
|
771
|
-
<soap:body use="literal" />
|
772
|
-
</wsdl:input>
|
773
|
-
<wsdl:output>
|
774
|
-
<soap:body use="literal" />
|
775
|
-
</wsdl:output>
|
776
|
-
</wsdl:operation>
|
777
|
-
<wsdl:operation name="GetTICGroups">
|
778
|
-
<soap:operation soapAction="http://taxcloud.net/GetTICGroups" style="document" />
|
779
|
-
<wsdl:input>
|
780
|
-
<soap:body use="literal" />
|
781
|
-
</wsdl:input>
|
782
|
-
<wsdl:output>
|
783
|
-
<soap:body use="literal" />
|
784
|
-
</wsdl:output>
|
785
|
-
</wsdl:operation>
|
786
|
-
<wsdl:operation name="GetTICs">
|
787
|
-
<soap:operation soapAction="http://taxcloud.net/GetTICs" style="document" />
|
788
|
-
<wsdl:input>
|
789
|
-
<soap:body use="literal" />
|
790
|
-
</wsdl:input>
|
791
|
-
<wsdl:output>
|
792
|
-
<soap:body use="literal" />
|
793
|
-
</wsdl:output>
|
794
|
-
</wsdl:operation>
|
795
|
-
<wsdl:operation name="GetTICsByGroup">
|
796
|
-
<soap:operation soapAction="http://taxcloud.net/GetTICsByGroup" style="document" />
|
797
|
-
<wsdl:input>
|
798
|
-
<soap:body use="literal" />
|
799
|
-
</wsdl:input>
|
800
|
-
<wsdl:output>
|
801
|
-
<soap:body use="literal" />
|
802
|
-
</wsdl:output>
|
803
|
-
</wsdl:operation>
|
804
|
-
<wsdl:operation name="AddExemptCertificate">
|
805
|
-
<soap:operation soapAction="http://taxcloud.net/AddExemptCertificate" style="document" />
|
806
|
-
<wsdl:input>
|
807
|
-
<soap:body use="literal" />
|
808
|
-
</wsdl:input>
|
809
|
-
<wsdl:output>
|
810
|
-
<soap:body use="literal" />
|
811
|
-
</wsdl:output>
|
812
|
-
</wsdl:operation>
|
813
|
-
<wsdl:operation name="DeleteExemptCertificate">
|
814
|
-
<soap:operation soapAction="http://taxcloud.net/DeleteExemptCertificate" style="document" />
|
815
|
-
<wsdl:input>
|
816
|
-
<soap:body use="literal" />
|
817
|
-
</wsdl:input>
|
818
|
-
<wsdl:output>
|
819
|
-
<soap:body use="literal" />
|
820
|
-
</wsdl:output>
|
821
|
-
</wsdl:operation>
|
822
|
-
<wsdl:operation name="GetExemptCertificates">
|
823
|
-
<soap:operation soapAction="http://taxcloud.net/GetExemptCertificates" style="document" />
|
824
|
-
<wsdl:input>
|
825
|
-
<soap:body use="literal" />
|
826
|
-
</wsdl:input>
|
827
|
-
<wsdl:output>
|
828
|
-
<soap:body use="literal" />
|
829
|
-
</wsdl:output>
|
830
|
-
</wsdl:operation>
|
831
|
-
</wsdl:binding>
|
832
|
-
<wsdl:binding name="TaxCloudSoap12" type="tns:TaxCloudSoap">
|
833
|
-
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
834
|
-
<wsdl:operation name="VerifyAddress">
|
835
|
-
<soap12:operation soapAction="http://taxcloud.net/VerifyAddress" style="document" />
|
836
|
-
<wsdl:input>
|
837
|
-
<soap12:body use="literal" />
|
838
|
-
</wsdl:input>
|
839
|
-
<wsdl:output>
|
840
|
-
<soap12:body use="literal" />
|
841
|
-
</wsdl:output>
|
842
|
-
</wsdl:operation>
|
843
|
-
<wsdl:operation name="LookupForDate">
|
844
|
-
<soap12:operation soapAction="http://taxcloud.net/LookupForDate" style="document" />
|
845
|
-
<wsdl:input>
|
846
|
-
<soap12:body use="literal" />
|
847
|
-
</wsdl:input>
|
848
|
-
<wsdl:output>
|
849
|
-
<soap12:body use="literal" />
|
850
|
-
</wsdl:output>
|
851
|
-
</wsdl:operation>
|
852
|
-
<wsdl:operation name="Lookup">
|
853
|
-
<soap12:operation soapAction="http://taxcloud.net/Lookup" style="document" />
|
854
|
-
<wsdl:input>
|
855
|
-
<soap12:body use="literal" />
|
856
|
-
</wsdl:input>
|
857
|
-
<wsdl:output>
|
858
|
-
<soap12:body use="literal" />
|
859
|
-
</wsdl:output>
|
860
|
-
</wsdl:operation>
|
861
|
-
<wsdl:operation name="Authorized">
|
862
|
-
<soap12:operation soapAction="http://taxcloud.net/Authorized" style="document" />
|
863
|
-
<wsdl:input>
|
864
|
-
<soap12:body use="literal" />
|
865
|
-
</wsdl:input>
|
866
|
-
<wsdl:output>
|
867
|
-
<soap12:body use="literal" />
|
868
|
-
</wsdl:output>
|
869
|
-
</wsdl:operation>
|
870
|
-
<wsdl:operation name="AuthorizedWithCapture">
|
871
|
-
<soap12:operation soapAction="http://taxcloud.net/AuthorizedWithCapture" style="document" />
|
872
|
-
<wsdl:input>
|
873
|
-
<soap12:body use="literal" />
|
874
|
-
</wsdl:input>
|
875
|
-
<wsdl:output>
|
876
|
-
<soap12:body use="literal" />
|
877
|
-
</wsdl:output>
|
878
|
-
</wsdl:operation>
|
879
|
-
<wsdl:operation name="Captured">
|
880
|
-
<soap12:operation soapAction="http://taxcloud.net/Captured" style="document" />
|
881
|
-
<wsdl:input>
|
882
|
-
<soap12:body use="literal" />
|
883
|
-
</wsdl:input>
|
884
|
-
<wsdl:output>
|
885
|
-
<soap12:body use="literal" />
|
886
|
-
</wsdl:output>
|
887
|
-
</wsdl:operation>
|
888
|
-
<wsdl:operation name="Returned">
|
889
|
-
<soap12:operation soapAction="http://taxcloud.net/Returned" style="document" />
|
890
|
-
<wsdl:input>
|
891
|
-
<soap12:body use="literal" />
|
892
|
-
</wsdl:input>
|
893
|
-
<wsdl:output>
|
894
|
-
<soap12:body use="literal" />
|
895
|
-
</wsdl:output>
|
896
|
-
</wsdl:operation>
|
897
|
-
<wsdl:operation name="GetTICGroups">
|
898
|
-
<soap12:operation soapAction="http://taxcloud.net/GetTICGroups" style="document" />
|
899
|
-
<wsdl:input>
|
900
|
-
<soap12:body use="literal" />
|
901
|
-
</wsdl:input>
|
902
|
-
<wsdl:output>
|
903
|
-
<soap12:body use="literal" />
|
904
|
-
</wsdl:output>
|
905
|
-
</wsdl:operation>
|
906
|
-
<wsdl:operation name="GetTICs">
|
907
|
-
<soap12:operation soapAction="http://taxcloud.net/GetTICs" style="document" />
|
908
|
-
<wsdl:input>
|
909
|
-
<soap12:body use="literal" />
|
910
|
-
</wsdl:input>
|
911
|
-
<wsdl:output>
|
912
|
-
<soap12:body use="literal" />
|
913
|
-
</wsdl:output>
|
914
|
-
</wsdl:operation>
|
915
|
-
<wsdl:operation name="GetTICsByGroup">
|
916
|
-
<soap12:operation soapAction="http://taxcloud.net/GetTICsByGroup" style="document" />
|
917
|
-
<wsdl:input>
|
918
|
-
<soap12:body use="literal" />
|
919
|
-
</wsdl:input>
|
920
|
-
<wsdl:output>
|
921
|
-
<soap12:body use="literal" />
|
922
|
-
</wsdl:output>
|
923
|
-
</wsdl:operation>
|
924
|
-
<wsdl:operation name="AddExemptCertificate">
|
925
|
-
<soap12:operation soapAction="http://taxcloud.net/AddExemptCertificate" style="document" />
|
926
|
-
<wsdl:input>
|
927
|
-
<soap12:body use="literal" />
|
928
|
-
</wsdl:input>
|
929
|
-
<wsdl:output>
|
930
|
-
<soap12:body use="literal" />
|
931
|
-
</wsdl:output>
|
932
|
-
</wsdl:operation>
|
933
|
-
<wsdl:operation name="DeleteExemptCertificate">
|
934
|
-
<soap12:operation soapAction="http://taxcloud.net/DeleteExemptCertificate" style="document" />
|
935
|
-
<wsdl:input>
|
936
|
-
<soap12:body use="literal" />
|
937
|
-
</wsdl:input>
|
938
|
-
<wsdl:output>
|
939
|
-
<soap12:body use="literal" />
|
940
|
-
</wsdl:output>
|
941
|
-
</wsdl:operation>
|
942
|
-
<wsdl:operation name="GetExemptCertificates">
|
943
|
-
<soap12:operation soapAction="http://taxcloud.net/GetExemptCertificates" style="document" />
|
944
|
-
<wsdl:input>
|
945
|
-
<soap12:body use="literal" />
|
946
|
-
</wsdl:input>
|
947
|
-
<wsdl:output>
|
948
|
-
<soap12:body use="literal" />
|
949
|
-
</wsdl:output>
|
950
|
-
</wsdl:operation>
|
951
|
-
</wsdl:binding>
|
952
|
-
<wsdl:service name="TaxCloud">
|
953
|
-
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">TaxCloud Web Service</wsdl:documentation>
|
954
|
-
<wsdl:port name="TaxCloudSoap" binding="tns:TaxCloudSoap">
|
955
|
-
<soap:address location="https://api.taxcloud.net/1.0/TaxCloud.asmx" />
|
956
|
-
</wsdl:port>
|
957
|
-
<wsdl:port name="TaxCloudSoap12" binding="tns:TaxCloudSoap12">
|
958
|
-
<soap12:address location="https://api.taxcloud.net/1.0/TaxCloud.asmx" />
|
959
|
-
</wsdl:port>
|
960
|
-
</wsdl:service>
|
961
|
-
</wsdl:definitions>
|
962
|
-
http_version: "1.1"
|
963
|
-
- !ruby/struct:VCR::HTTPInteraction
|
964
|
-
request: !ruby/struct:VCR::Request
|
965
|
-
method: :post
|
966
|
-
uri: https://api.taxcloud.net:443/1.0/TaxCloud.asmx
|
967
|
-
body: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://taxcloud.net" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://taxcloud.net"><env:Body><ins0:VerifyAddress><wsdl:apiLoginId>api-login-id</wsdl:apiLoginId><wsdl:apiKey>api-key</wsdl:apiKey><ins0:uspsUserID>usps-username</ins0:uspsUserID><ins0:address1>10001 Test Street</ins0:address1><ins0:address2 xsi:nil="true"/><ins0:city>New York</ins0:city><ins0:state>New York</ins0:state><ins0:zip5>99999</ins0:zip5><ins0:zip4 xsi:nil="true"/></ins0:VerifyAddress></env:Body></env:Envelope>
|
968
|
-
headers:
|
969
|
-
soapaction:
|
970
|
-
- "\"http://taxcloud.net/VerifyAddress\""
|
971
|
-
content-type:
|
27
|
+
Content-Length:
|
28
|
+
- '42282'
|
29
|
+
body:
|
30
|
+
encoding: UTF-8
|
31
|
+
string: ! "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<wsdl:definitions xmlns:s=\"http://www.w3.org/2001/XMLSchema\"
|
32
|
+
xmlns:soap12=\"http://schemas.xmlsoap.org/wsdl/soap12/\" xmlns:mime=\"http://schemas.xmlsoap.org/wsdl/mime/\"
|
33
|
+
xmlns:tns=\"http://taxcloud.net\" xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\"
|
34
|
+
xmlns:tm=\"http://microsoft.com/wsdl/mime/textMatching/\" xmlns:http=\"http://schemas.xmlsoap.org/wsdl/http/\"
|
35
|
+
xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\" targetNamespace=\"http://taxcloud.net\"
|
36
|
+
xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">\n <wsdl:documentation xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">TaxCloud
|
37
|
+
Web Service</wsdl:documentation>\n <wsdl:types>\n <s:schema elementFormDefault=\"qualified\"
|
38
|
+
targetNamespace=\"http://taxcloud.net\">\n <s:element name=\"VerifyAddress\">\n
|
39
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
40
|
+
maxOccurs=\"1\" name=\"uspsUserID\" type=\"s:string\" />\n <s:element
|
41
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"address1\" type=\"s:string\" />\n <s:element
|
42
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"address2\" type=\"s:string\" />\n <s:element
|
43
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"city\" type=\"s:string\" />\n <s:element
|
44
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"state\" type=\"s:string\" />\n <s:element
|
45
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"zip5\" type=\"s:string\" />\n <s:element
|
46
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"zip4\" type=\"s:string\" />\n </s:sequence>\n
|
47
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"VerifyAddressResponse\">\n
|
48
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
49
|
+
maxOccurs=\"1\" name=\"VerifyAddressResult\" type=\"tns:VerifiedAddress\"
|
50
|
+
/>\n </s:sequence>\n </s:complexType>\n </s:element>\n
|
51
|
+
\ <s:complexType name=\"VerifiedAddress\">\n <s:complexContent
|
52
|
+
mixed=\"false\">\n <s:extension base=\"tns:Address\">\n <s:sequence>\n
|
53
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ErrNumber\"
|
54
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
55
|
+
name=\"ErrDescription\" type=\"s:string\" />\n </s:sequence>\n
|
56
|
+
\ </s:extension>\n </s:complexContent>\n </s:complexType>\n
|
57
|
+
\ <s:complexType name=\"Address\">\n <s:sequence>\n <s:element
|
58
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"Address1\" type=\"s:string\" />\n <s:element
|
59
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"Address2\" type=\"s:string\" />\n <s:element
|
60
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"City\" type=\"s:string\" />\n <s:element
|
61
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"State\" type=\"s:string\" />\n <s:element
|
62
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip5\" type=\"s:string\" />\n <s:element
|
63
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"Zip4\" type=\"s:string\" />\n </s:sequence>\n
|
64
|
+
\ </s:complexType>\n <s:element name=\"LookupForDate\">\n <s:complexType>\n
|
65
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
66
|
+
name=\"apiLoginID\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
67
|
+
maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n <s:element
|
68
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"customerID\" type=\"s:string\" />\n
|
69
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cartID\" type=\"s:string\"
|
70
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cartItems\"
|
71
|
+
type=\"tns:ArrayOfCartItem\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
72
|
+
name=\"origin\" type=\"tns:Address\" />\n <s:element minOccurs=\"0\"
|
73
|
+
maxOccurs=\"1\" name=\"destination\" type=\"tns:Address\" />\n <s:element
|
74
|
+
minOccurs=\"1\" maxOccurs=\"1\" name=\"deliveredBySeller\" type=\"s:boolean\"
|
75
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"exemptCert\"
|
76
|
+
type=\"tns:ExemptionCertificate\" />\n <s:element minOccurs=\"1\"
|
77
|
+
maxOccurs=\"1\" name=\"useDate\" type=\"s:dateTime\" />\n </s:sequence>\n
|
78
|
+
\ </s:complexType>\n </s:element>\n <s:complexType name=\"ArrayOfCartItem\">\n
|
79
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
|
80
|
+
name=\"CartItem\" nillable=\"true\" type=\"tns:CartItem\" />\n </s:sequence>\n
|
81
|
+
\ </s:complexType>\n <s:complexType name=\"CartItem\">\n <s:sequence>\n
|
82
|
+
\ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Index\" type=\"s:int\"
|
83
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ItemID\" type=\"s:string\"
|
84
|
+
/>\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"TIC\" type=\"s:int\"
|
85
|
+
/>\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Price\" type=\"s:double\"
|
86
|
+
/>\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"Qty\" type=\"s:float\"
|
87
|
+
/>\n </s:sequence>\n </s:complexType>\n <s:complexType name=\"ExemptionCertificate\">\n
|
88
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
89
|
+
name=\"CertificateID\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
90
|
+
maxOccurs=\"1\" name=\"Detail\" type=\"tns:ExemptionCertificateDetail\" />\n
|
91
|
+
\ </s:sequence>\n </s:complexType>\n <s:complexType name=\"ExemptionCertificateDetail\">\n
|
92
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
93
|
+
name=\"ExemptStates\" type=\"tns:ArrayOfExemptState\" />\n <s:element
|
94
|
+
minOccurs=\"1\" maxOccurs=\"1\" name=\"SinglePurchase\" type=\"s:boolean\"
|
95
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"SinglePurchaseOrderNumber\"
|
96
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
97
|
+
name=\"PurchaserFirstName\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
98
|
+
maxOccurs=\"1\" name=\"PurchaserLastName\" type=\"s:string\" />\n <s:element
|
99
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"PurchaserTitle\" type=\"s:string\"
|
100
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PurchaserAddress1\"
|
101
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
102
|
+
name=\"PurchaserAddress2\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
103
|
+
maxOccurs=\"1\" name=\"PurchaserCity\" type=\"s:string\" />\n <s:element
|
104
|
+
minOccurs=\"1\" maxOccurs=\"1\" name=\"PurchaserState\" type=\"tns:State\"
|
105
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PurchaserZip\"
|
106
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
107
|
+
name=\"PurchaserTaxID\" type=\"tns:TaxID\" />\n <s:element minOccurs=\"1\"
|
108
|
+
maxOccurs=\"1\" name=\"PurchaserBusinessType\" type=\"tns:BusinessType\" />\n
|
109
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"PurchaserBusinessTypeOtherValue\"
|
110
|
+
type=\"s:string\" />\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
|
111
|
+
name=\"PurchaserExemptionReason\" type=\"tns:ExemptionReason\" />\n <s:element
|
112
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"PurchaserExemptionReasonValue\" type=\"s:string\"
|
113
|
+
/>\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"CreatedDate\"
|
114
|
+
type=\"s:dateTime\" />\n </s:sequence>\n </s:complexType>\n <s:complexType
|
115
|
+
name=\"ArrayOfExemptState\">\n <s:sequence>\n <s:element minOccurs=\"0\"
|
116
|
+
maxOccurs=\"unbounded\" name=\"ExemptState\" nillable=\"true\" type=\"tns:ExemptState\"
|
117
|
+
/>\n </s:sequence>\n </s:complexType>\n <s:complexType name=\"ExemptState\">\n
|
118
|
+
\ <s:sequence>\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
|
119
|
+
name=\"StateAbbr\" type=\"tns:State\" />\n <s:element minOccurs=\"0\"
|
120
|
+
maxOccurs=\"1\" name=\"ReasonForExemption\" type=\"s:string\" />\n <s:element
|
121
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"IdentificationNumber\" type=\"s:string\"
|
122
|
+
/>\n </s:sequence>\n </s:complexType>\n <s:simpleType name=\"State\">\n
|
123
|
+
\ <s:restriction base=\"s:string\">\n <s:enumeration value=\"AL\"
|
124
|
+
/>\n <s:enumeration value=\"AK\" />\n <s:enumeration value=\"AZ\"
|
125
|
+
/>\n <s:enumeration value=\"AR\" />\n <s:enumeration value=\"CA\"
|
126
|
+
/>\n <s:enumeration value=\"CO\" />\n <s:enumeration value=\"CT\"
|
127
|
+
/>\n <s:enumeration value=\"DE\" />\n <s:enumeration value=\"DC\"
|
128
|
+
/>\n <s:enumeration value=\"FL\" />\n <s:enumeration value=\"GA\"
|
129
|
+
/>\n <s:enumeration value=\"HI\" />\n <s:enumeration value=\"ID\"
|
130
|
+
/>\n <s:enumeration value=\"IL\" />\n <s:enumeration value=\"IN\"
|
131
|
+
/>\n <s:enumeration value=\"IA\" />\n <s:enumeration value=\"KS\"
|
132
|
+
/>\n <s:enumeration value=\"KY\" />\n <s:enumeration value=\"LA\"
|
133
|
+
/>\n <s:enumeration value=\"ME\" />\n <s:enumeration value=\"MD\"
|
134
|
+
/>\n <s:enumeration value=\"MA\" />\n <s:enumeration value=\"MI\"
|
135
|
+
/>\n <s:enumeration value=\"MN\" />\n <s:enumeration value=\"MS\"
|
136
|
+
/>\n <s:enumeration value=\"MO\" />\n <s:enumeration value=\"MT\"
|
137
|
+
/>\n <s:enumeration value=\"NE\" />\n <s:enumeration value=\"NV\"
|
138
|
+
/>\n <s:enumeration value=\"NH\" />\n <s:enumeration value=\"NJ\"
|
139
|
+
/>\n <s:enumeration value=\"NM\" />\n <s:enumeration value=\"NY\"
|
140
|
+
/>\n <s:enumeration value=\"NC\" />\n <s:enumeration value=\"ND\"
|
141
|
+
/>\n <s:enumeration value=\"OH\" />\n <s:enumeration value=\"OK\"
|
142
|
+
/>\n <s:enumeration value=\"OR\" />\n <s:enumeration value=\"PA\"
|
143
|
+
/>\n <s:enumeration value=\"RI\" />\n <s:enumeration value=\"SC\"
|
144
|
+
/>\n <s:enumeration value=\"SD\" />\n <s:enumeration value=\"TN\"
|
145
|
+
/>\n <s:enumeration value=\"TX\" />\n <s:enumeration value=\"UT\"
|
146
|
+
/>\n <s:enumeration value=\"VT\" />\n <s:enumeration value=\"VA\"
|
147
|
+
/>\n <s:enumeration value=\"WA\" />\n <s:enumeration value=\"WV\"
|
148
|
+
/>\n <s:enumeration value=\"WI\" />\n <s:enumeration value=\"WY\"
|
149
|
+
/>\n </s:restriction>\n </s:simpleType>\n <s:complexType
|
150
|
+
name=\"TaxID\">\n <s:sequence>\n <s:element minOccurs=\"1\"
|
151
|
+
maxOccurs=\"1\" name=\"TaxType\" type=\"tns:TaxIDType\" />\n <s:element
|
152
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"IDNumber\" type=\"s:string\" />\n <s:element
|
153
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"StateOfIssue\" type=\"s:string\" />\n
|
154
|
+
\ </s:sequence>\n </s:complexType>\n <s:simpleType name=\"TaxIDType\">\n
|
155
|
+
\ <s:restriction base=\"s:string\">\n <s:enumeration value=\"SSN\"
|
156
|
+
/>\n <s:enumeration value=\"FEIN\" />\n <s:enumeration value=\"StateIssued\"
|
157
|
+
/>\n <s:enumeration value=\"ForeignDiplomat\" />\n </s:restriction>\n
|
158
|
+
\ </s:simpleType>\n <s:simpleType name=\"BusinessType\">\n <s:restriction
|
159
|
+
base=\"s:string\">\n <s:enumeration value=\"AccommodationAndFoodServices\"
|
160
|
+
/>\n <s:enumeration value=\"Agricultural_Forestry_Fishing_Hunting\"
|
161
|
+
/>\n <s:enumeration value=\"Construction\" />\n <s:enumeration
|
162
|
+
value=\"FinanceAndInsurance\" />\n <s:enumeration value=\"Information_PublishingAndCommunications\"
|
163
|
+
/>\n <s:enumeration value=\"Manufacturing\" />\n <s:enumeration
|
164
|
+
value=\"Mining\" />\n <s:enumeration value=\"RealEstate\" />\n <s:enumeration
|
165
|
+
value=\"RentalAndLeasing\" />\n <s:enumeration value=\"RetailTrade\"
|
166
|
+
/>\n <s:enumeration value=\"TransportationAndWarehousing\" />\n <s:enumeration
|
167
|
+
value=\"Utilities\" />\n <s:enumeration value=\"WholesaleTrade\"
|
168
|
+
/>\n <s:enumeration value=\"BusinessServices\" />\n <s:enumeration
|
169
|
+
value=\"ProfessionalServices\" />\n <s:enumeration value=\"EducationAndHealthCareServices\"
|
170
|
+
/>\n <s:enumeration value=\"NonprofitOrganization\" />\n <s:enumeration
|
171
|
+
value=\"Government\" />\n <s:enumeration value=\"NotABusiness\" />\n
|
172
|
+
\ <s:enumeration value=\"Other\" />\n </s:restriction>\n </s:simpleType>\n
|
173
|
+
\ <s:simpleType name=\"ExemptionReason\">\n <s:restriction base=\"s:string\">\n
|
174
|
+
\ <s:enumeration value=\"FederalGovernmentDepartment\" />\n <s:enumeration
|
175
|
+
value=\"StateOrLocalGovernmentName\" />\n <s:enumeration value=\"TribalGovernmentName\"
|
176
|
+
/>\n <s:enumeration value=\"ForeignDiplomat\" />\n <s:enumeration
|
177
|
+
value=\"CharitableOrganization\" />\n <s:enumeration value=\"ReligiousOrEducationalOrganization\"
|
178
|
+
/>\n <s:enumeration value=\"Resale\" />\n <s:enumeration
|
179
|
+
value=\"AgriculturalProduction\" />\n <s:enumeration value=\"IndustrialProductionOrManufacturing\"
|
180
|
+
/>\n <s:enumeration value=\"DirectPayPermit\" />\n <s:enumeration
|
181
|
+
value=\"DirectMail\" />\n <s:enumeration value=\"Other\" />\n </s:restriction>\n
|
182
|
+
\ </s:simpleType>\n <s:element name=\"LookupForDateResponse\">\n
|
183
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
184
|
+
maxOccurs=\"1\" name=\"LookupForDateResult\" type=\"tns:LookupRsp\" />\n </s:sequence>\n
|
185
|
+
\ </s:complexType>\n </s:element>\n <s:complexType name=\"LookupRsp\">\n
|
186
|
+
\ <s:complexContent mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\">\n
|
187
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
188
|
+
name=\"CartID\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
189
|
+
maxOccurs=\"1\" name=\"CartItemsResponse\" type=\"tns:ArrayOfCartItemResponse\"
|
190
|
+
/>\n </s:sequence>\n </s:extension>\n </s:complexContent>\n
|
191
|
+
\ </s:complexType>\n <s:complexType name=\"ResponseBase\">\n <s:sequence>\n
|
192
|
+
\ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ResponseType\"
|
193
|
+
type=\"tns:MessageType\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
194
|
+
name=\"Messages\" type=\"tns:ArrayOfResponseMessage\" />\n </s:sequence>\n
|
195
|
+
\ </s:complexType>\n <s:simpleType name=\"MessageType\">\n <s:restriction
|
196
|
+
base=\"s:string\">\n <s:enumeration value=\"Error\" />\n <s:enumeration
|
197
|
+
value=\"Warning\" />\n <s:enumeration value=\"Informational\" />\n
|
198
|
+
\ <s:enumeration value=\"OK\" />\n </s:restriction>\n </s:simpleType>\n
|
199
|
+
\ <s:complexType name=\"ArrayOfResponseMessage\">\n <s:sequence>\n
|
200
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ResponseMessage\"
|
201
|
+
nillable=\"true\" type=\"tns:ResponseMessage\" />\n </s:sequence>\n
|
202
|
+
\ </s:complexType>\n <s:complexType name=\"ResponseMessage\">\n <s:sequence>\n
|
203
|
+
\ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"ResponseType\"
|
204
|
+
type=\"tns:MessageType\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
205
|
+
name=\"Message\" type=\"s:string\" />\n </s:sequence>\n </s:complexType>\n
|
206
|
+
\ <s:complexType name=\"ArrayOfCartItemResponse\">\n <s:sequence>\n
|
207
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"CartItemResponse\"
|
208
|
+
nillable=\"true\" type=\"tns:CartItemResponse\" />\n </s:sequence>\n
|
209
|
+
\ </s:complexType>\n <s:complexType name=\"CartItemResponse\">\n
|
210
|
+
\ <s:sequence>\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
|
211
|
+
name=\"CartItemIndex\" type=\"s:int\" />\n <s:element minOccurs=\"1\"
|
212
|
+
maxOccurs=\"1\" name=\"TaxAmount\" type=\"s:float\" />\n </s:sequence>\n
|
213
|
+
\ </s:complexType>\n <s:element name=\"Lookup\">\n <s:complexType>\n
|
214
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
215
|
+
name=\"apiLoginID\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
216
|
+
maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n <s:element
|
217
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"customerID\" type=\"s:string\" />\n
|
218
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cartID\" type=\"s:string\"
|
219
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cartItems\"
|
220
|
+
type=\"tns:ArrayOfCartItem\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
221
|
+
name=\"origin\" type=\"tns:Address\" />\n <s:element minOccurs=\"0\"
|
222
|
+
maxOccurs=\"1\" name=\"destination\" type=\"tns:Address\" />\n <s:element
|
223
|
+
minOccurs=\"1\" maxOccurs=\"1\" name=\"deliveredBySeller\" type=\"s:boolean\"
|
224
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"exemptCert\"
|
225
|
+
type=\"tns:ExemptionCertificate\" />\n </s:sequence>\n </s:complexType>\n
|
226
|
+
\ </s:element>\n <s:element name=\"LookupResponse\">\n <s:complexType>\n
|
227
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
228
|
+
name=\"LookupResult\" type=\"tns:LookupRsp\" />\n </s:sequence>\n
|
229
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"Authorized\">\n
|
230
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
231
|
+
maxOccurs=\"1\" name=\"apiLoginID\" type=\"s:string\" />\n <s:element
|
232
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n <s:element
|
233
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"customerID\" type=\"s:string\" />\n
|
234
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cartID\" type=\"s:string\"
|
235
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"orderID\"
|
236
|
+
type=\"s:string\" />\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
|
237
|
+
name=\"dateAuthorized\" type=\"s:dateTime\" />\n </s:sequence>\n
|
238
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"AuthorizedResponse\">\n
|
239
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
240
|
+
maxOccurs=\"1\" name=\"AuthorizedResult\" type=\"tns:AuthorizedRsp\" />\n
|
241
|
+
\ </s:sequence>\n </s:complexType>\n </s:element>\n <s:complexType
|
242
|
+
name=\"AuthorizedRsp\">\n <s:complexContent mixed=\"false\">\n <s:extension
|
243
|
+
base=\"tns:ResponseBase\" />\n </s:complexContent>\n </s:complexType>\n
|
244
|
+
\ <s:element name=\"AuthorizedWithCapture\">\n <s:complexType>\n
|
245
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
246
|
+
name=\"apiLoginID\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
247
|
+
maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n <s:element
|
248
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"customerID\" type=\"s:string\" />\n
|
249
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"cartID\" type=\"s:string\"
|
250
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"orderID\"
|
251
|
+
type=\"s:string\" />\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
|
252
|
+
name=\"dateAuthorized\" type=\"s:dateTime\" />\n <s:element minOccurs=\"1\"
|
253
|
+
maxOccurs=\"1\" name=\"dateCaptured\" type=\"s:dateTime\" />\n </s:sequence>\n
|
254
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"AuthorizedWithCaptureResponse\">\n
|
255
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
256
|
+
maxOccurs=\"1\" name=\"AuthorizedWithCaptureResult\" type=\"tns:AuthorizedRsp\"
|
257
|
+
/>\n </s:sequence>\n </s:complexType>\n </s:element>\n
|
258
|
+
\ <s:element name=\"Captured\">\n <s:complexType>\n <s:sequence>\n
|
259
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"apiLoginID\"
|
260
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
261
|
+
name=\"apiKey\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
262
|
+
maxOccurs=\"1\" name=\"orderID\" type=\"s:string\" />\n </s:sequence>\n
|
263
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"CapturedResponse\">\n
|
264
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
265
|
+
maxOccurs=\"1\" name=\"CapturedResult\" type=\"tns:CapturedRsp\" />\n </s:sequence>\n
|
266
|
+
\ </s:complexType>\n </s:element>\n <s:complexType name=\"CapturedRsp\">\n
|
267
|
+
\ <s:complexContent mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\"
|
268
|
+
/>\n </s:complexContent>\n </s:complexType>\n <s:element
|
269
|
+
name=\"Returned\">\n <s:complexType>\n <s:sequence>\n <s:element
|
270
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"apiLoginID\" type=\"s:string\" />\n
|
271
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\"
|
272
|
+
/>\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"orderID\"
|
273
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
274
|
+
name=\"cartItems\" type=\"tns:ArrayOfCartItem\" />\n <s:element
|
275
|
+
minOccurs=\"1\" maxOccurs=\"1\" name=\"returnedDate\" type=\"s:dateTime\"
|
276
|
+
/>\n </s:sequence>\n </s:complexType>\n </s:element>\n
|
277
|
+
\ <s:element name=\"ReturnedResponse\">\n <s:complexType>\n <s:sequence>\n
|
278
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ReturnedResult\"
|
279
|
+
type=\"tns:ReturnedRsp\" />\n </s:sequence>\n </s:complexType>\n
|
280
|
+
\ </s:element>\n <s:complexType name=\"ReturnedRsp\">\n <s:complexContent
|
281
|
+
mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\" />\n </s:complexContent>\n
|
282
|
+
\ </s:complexType>\n <s:element name=\"GetTICGroups\">\n <s:complexType>\n
|
283
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
284
|
+
name=\"apiLoginID\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
285
|
+
maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n </s:sequence>\n
|
286
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"GetTICGroupsResponse\">\n
|
287
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
288
|
+
maxOccurs=\"1\" name=\"GetTICGroupsResult\" type=\"tns:GetTICGroupsRsp\" />\n
|
289
|
+
\ </s:sequence>\n </s:complexType>\n </s:element>\n <s:complexType
|
290
|
+
name=\"GetTICGroupsRsp\">\n <s:complexContent mixed=\"false\">\n <s:extension
|
291
|
+
base=\"tns:ResponseBase\">\n <s:sequence>\n <s:element
|
292
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"TICGroups\" type=\"tns:ArrayOfTICGroup\"
|
293
|
+
/>\n </s:sequence>\n </s:extension>\n </s:complexContent>\n
|
294
|
+
\ </s:complexType>\n <s:complexType name=\"ArrayOfTICGroup\">\n <s:sequence>\n
|
295
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"TICGroup\"
|
296
|
+
nillable=\"true\" type=\"tns:TICGroup\" />\n </s:sequence>\n </s:complexType>\n
|
297
|
+
\ <s:complexType name=\"TICGroup\">\n <s:sequence>\n <s:element
|
298
|
+
minOccurs=\"1\" maxOccurs=\"1\" name=\"GroupID\" type=\"s:int\" />\n <s:element
|
299
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"Description\" type=\"s:string\" />\n
|
300
|
+
\ </s:sequence>\n </s:complexType>\n <s:element name=\"GetTICs\">\n
|
301
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
302
|
+
maxOccurs=\"1\" name=\"apiLoginID\" type=\"s:string\" />\n <s:element
|
303
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n </s:sequence>\n
|
304
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"GetTICsResponse\">\n
|
305
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
306
|
+
maxOccurs=\"1\" name=\"GetTICsResult\" type=\"tns:GetTICsRsp\" />\n </s:sequence>\n
|
307
|
+
\ </s:complexType>\n </s:element>\n <s:complexType name=\"GetTICsRsp\">\n
|
308
|
+
\ <s:complexContent mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\">\n
|
309
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
310
|
+
name=\"TICs\" type=\"tns:ArrayOfTIC\" />\n </s:sequence>\n </s:extension>\n
|
311
|
+
\ </s:complexContent>\n </s:complexType>\n <s:complexType
|
312
|
+
name=\"ArrayOfTIC\">\n <s:sequence>\n <s:element minOccurs=\"0\"
|
313
|
+
maxOccurs=\"unbounded\" name=\"TIC\" nillable=\"true\" type=\"tns:TIC\" />\n
|
314
|
+
\ </s:sequence>\n </s:complexType>\n <s:complexType name=\"TIC\">\n
|
315
|
+
\ <s:sequence>\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
|
316
|
+
name=\"TICID\" type=\"s:int\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
317
|
+
name=\"Description\" type=\"s:string\" />\n </s:sequence>\n </s:complexType>\n
|
318
|
+
\ <s:element name=\"GetTICsByGroup\">\n <s:complexType>\n <s:sequence>\n
|
319
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"apiLoginID\"
|
320
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
321
|
+
name=\"apiKey\" type=\"s:string\" />\n <s:element minOccurs=\"1\"
|
322
|
+
maxOccurs=\"1\" name=\"ticGroup\" type=\"s:int\" />\n </s:sequence>\n
|
323
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"GetTICsByGroupResponse\">\n
|
324
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
325
|
+
maxOccurs=\"1\" name=\"GetTICsByGroupResult\" type=\"tns:GetTICsRsp\" />\n
|
326
|
+
\ </s:sequence>\n </s:complexType>\n </s:element>\n <s:element
|
327
|
+
name=\"AddExemptCertificate\">\n <s:complexType>\n <s:sequence>\n
|
328
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"apiLoginID\"
|
329
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
330
|
+
name=\"apiKey\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
331
|
+
maxOccurs=\"1\" name=\"customerID\" type=\"s:string\" />\n <s:element
|
332
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"exemptCert\" type=\"tns:ExemptionCertificate\"
|
333
|
+
/>\n </s:sequence>\n </s:complexType>\n </s:element>\n
|
334
|
+
\ <s:element name=\"AddExemptCertificateResponse\">\n <s:complexType>\n
|
335
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
336
|
+
name=\"AddExemptCertificateResult\" type=\"tns:AddCertificateRsp\" />\n </s:sequence>\n
|
337
|
+
\ </s:complexType>\n </s:element>\n <s:complexType name=\"AddCertificateRsp\">\n
|
338
|
+
\ <s:complexContent mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\">\n
|
339
|
+
\ <s:sequence>\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
340
|
+
name=\"CertificateID\" type=\"s:string\" />\n </s:sequence>\n </s:extension>\n
|
341
|
+
\ </s:complexContent>\n </s:complexType>\n <s:element name=\"DeleteExemptCertificate\">\n
|
342
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
343
|
+
maxOccurs=\"1\" name=\"apiLoginID\" type=\"s:string\" />\n <s:element
|
344
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"apiKey\" type=\"s:string\" />\n <s:element
|
345
|
+
minOccurs=\"0\" maxOccurs=\"1\" name=\"certificateID\" type=\"s:string\" />\n
|
346
|
+
\ </s:sequence>\n </s:complexType>\n </s:element>\n <s:element
|
347
|
+
name=\"DeleteExemptCertificateResponse\">\n <s:complexType>\n <s:sequence>\n
|
348
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"DeleteExemptCertificateResult\"
|
349
|
+
type=\"tns:DeleteCertificateRsp\" />\n </s:sequence>\n </s:complexType>\n
|
350
|
+
\ </s:element>\n <s:complexType name=\"DeleteCertificateRsp\">\n
|
351
|
+
\ <s:complexContent mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\"
|
352
|
+
/>\n </s:complexContent>\n </s:complexType>\n <s:element
|
353
|
+
name=\"GetExemptCertificates\">\n <s:complexType>\n <s:sequence>\n
|
354
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"apiLoginID\"
|
355
|
+
type=\"s:string\" />\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
|
356
|
+
name=\"apiKey\" type=\"s:string\" />\n <s:element minOccurs=\"0\"
|
357
|
+
maxOccurs=\"1\" name=\"customerID\" type=\"s:string\" />\n </s:sequence>\n
|
358
|
+
\ </s:complexType>\n </s:element>\n <s:element name=\"GetExemptCertificatesResponse\">\n
|
359
|
+
\ <s:complexType>\n <s:sequence>\n <s:element minOccurs=\"0\"
|
360
|
+
maxOccurs=\"1\" name=\"GetExemptCertificatesResult\" type=\"tns:GetCertificatesRsp\"
|
361
|
+
/>\n </s:sequence>\n </s:complexType>\n </s:element>\n
|
362
|
+
\ <s:complexType name=\"GetCertificatesRsp\">\n <s:complexContent
|
363
|
+
mixed=\"false\">\n <s:extension base=\"tns:ResponseBase\">\n <s:sequence>\n
|
364
|
+
\ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"ExemptCertificates\"
|
365
|
+
type=\"tns:ArrayOfExemptionCertificate\" />\n </s:sequence>\n </s:extension>\n
|
366
|
+
\ </s:complexContent>\n </s:complexType>\n <s:complexType
|
367
|
+
name=\"ArrayOfExemptionCertificate\">\n <s:sequence>\n <s:element
|
368
|
+
minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"ExemptionCertificate\" nillable=\"true\"
|
369
|
+
type=\"tns:ExemptionCertificate\" />\n </s:sequence>\n </s:complexType>\n
|
370
|
+
\ </s:schema>\n </wsdl:types>\n <wsdl:message name=\"VerifyAddressSoapIn\">\n
|
371
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:VerifyAddress\" />\n </wsdl:message>\n
|
372
|
+
\ <wsdl:message name=\"VerifyAddressSoapOut\">\n <wsdl:part name=\"parameters\"
|
373
|
+
element=\"tns:VerifyAddressResponse\" />\n </wsdl:message>\n <wsdl:message
|
374
|
+
name=\"LookupForDateSoapIn\">\n <wsdl:part name=\"parameters\" element=\"tns:LookupForDate\"
|
375
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"LookupForDateSoapOut\">\n <wsdl:part
|
376
|
+
name=\"parameters\" element=\"tns:LookupForDateResponse\" />\n </wsdl:message>\n
|
377
|
+
\ <wsdl:message name=\"LookupSoapIn\">\n <wsdl:part name=\"parameters\"
|
378
|
+
element=\"tns:Lookup\" />\n </wsdl:message>\n <wsdl:message name=\"LookupSoapOut\">\n
|
379
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:LookupResponse\" />\n </wsdl:message>\n
|
380
|
+
\ <wsdl:message name=\"AuthorizedSoapIn\">\n <wsdl:part name=\"parameters\"
|
381
|
+
element=\"tns:Authorized\" />\n </wsdl:message>\n <wsdl:message name=\"AuthorizedSoapOut\">\n
|
382
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:AuthorizedResponse\" />\n
|
383
|
+
\ </wsdl:message>\n <wsdl:message name=\"AuthorizedWithCaptureSoapIn\">\n
|
384
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:AuthorizedWithCapture\" />\n
|
385
|
+
\ </wsdl:message>\n <wsdl:message name=\"AuthorizedWithCaptureSoapOut\">\n
|
386
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:AuthorizedWithCaptureResponse\"
|
387
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"CapturedSoapIn\">\n <wsdl:part
|
388
|
+
name=\"parameters\" element=\"tns:Captured\" />\n </wsdl:message>\n <wsdl:message
|
389
|
+
name=\"CapturedSoapOut\">\n <wsdl:part name=\"parameters\" element=\"tns:CapturedResponse\"
|
390
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"ReturnedSoapIn\">\n <wsdl:part
|
391
|
+
name=\"parameters\" element=\"tns:Returned\" />\n </wsdl:message>\n <wsdl:message
|
392
|
+
name=\"ReturnedSoapOut\">\n <wsdl:part name=\"parameters\" element=\"tns:ReturnedResponse\"
|
393
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"GetTICGroupsSoapIn\">\n <wsdl:part
|
394
|
+
name=\"parameters\" element=\"tns:GetTICGroups\" />\n </wsdl:message>\n <wsdl:message
|
395
|
+
name=\"GetTICGroupsSoapOut\">\n <wsdl:part name=\"parameters\" element=\"tns:GetTICGroupsResponse\"
|
396
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"GetTICsSoapIn\">\n <wsdl:part
|
397
|
+
name=\"parameters\" element=\"tns:GetTICs\" />\n </wsdl:message>\n <wsdl:message
|
398
|
+
name=\"GetTICsSoapOut\">\n <wsdl:part name=\"parameters\" element=\"tns:GetTICsResponse\"
|
399
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"GetTICsByGroupSoapIn\">\n <wsdl:part
|
400
|
+
name=\"parameters\" element=\"tns:GetTICsByGroup\" />\n </wsdl:message>\n
|
401
|
+
\ <wsdl:message name=\"GetTICsByGroupSoapOut\">\n <wsdl:part name=\"parameters\"
|
402
|
+
element=\"tns:GetTICsByGroupResponse\" />\n </wsdl:message>\n <wsdl:message
|
403
|
+
name=\"AddExemptCertificateSoapIn\">\n <wsdl:part name=\"parameters\" element=\"tns:AddExemptCertificate\"
|
404
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"AddExemptCertificateSoapOut\">\n
|
405
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:AddExemptCertificateResponse\"
|
406
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"DeleteExemptCertificateSoapIn\">\n
|
407
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:DeleteExemptCertificate\"
|
408
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"DeleteExemptCertificateSoapOut\">\n
|
409
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:DeleteExemptCertificateResponse\"
|
410
|
+
/>\n </wsdl:message>\n <wsdl:message name=\"GetExemptCertificatesSoapIn\">\n
|
411
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:GetExemptCertificates\" />\n
|
412
|
+
\ </wsdl:message>\n <wsdl:message name=\"GetExemptCertificatesSoapOut\">\n
|
413
|
+
\ <wsdl:part name=\"parameters\" element=\"tns:GetExemptCertificatesResponse\"
|
414
|
+
/>\n </wsdl:message>\n <wsdl:portType name=\"TaxCloudSoap\">\n <wsdl:operation
|
415
|
+
name=\"VerifyAddress\">\n <wsdl:input message=\"tns:VerifyAddressSoapIn\"
|
416
|
+
/>\n <wsdl:output message=\"tns:VerifyAddressSoapOut\" />\n </wsdl:operation>\n
|
417
|
+
\ <wsdl:operation name=\"LookupForDate\">\n <wsdl:input message=\"tns:LookupForDateSoapIn\"
|
418
|
+
/>\n <wsdl:output message=\"tns:LookupForDateSoapOut\" />\n </wsdl:operation>\n
|
419
|
+
\ <wsdl:operation name=\"Lookup\">\n <wsdl:input message=\"tns:LookupSoapIn\"
|
420
|
+
/>\n <wsdl:output message=\"tns:LookupSoapOut\" />\n </wsdl:operation>\n
|
421
|
+
\ <wsdl:operation name=\"Authorized\">\n <wsdl:input message=\"tns:AuthorizedSoapIn\"
|
422
|
+
/>\n <wsdl:output message=\"tns:AuthorizedSoapOut\" />\n </wsdl:operation>\n
|
423
|
+
\ <wsdl:operation name=\"AuthorizedWithCapture\">\n <wsdl:input message=\"tns:AuthorizedWithCaptureSoapIn\"
|
424
|
+
/>\n <wsdl:output message=\"tns:AuthorizedWithCaptureSoapOut\" />\n </wsdl:operation>\n
|
425
|
+
\ <wsdl:operation name=\"Captured\">\n <wsdl:input message=\"tns:CapturedSoapIn\"
|
426
|
+
/>\n <wsdl:output message=\"tns:CapturedSoapOut\" />\n </wsdl:operation>\n
|
427
|
+
\ <wsdl:operation name=\"Returned\">\n <wsdl:input message=\"tns:ReturnedSoapIn\"
|
428
|
+
/>\n <wsdl:output message=\"tns:ReturnedSoapOut\" />\n </wsdl:operation>\n
|
429
|
+
\ <wsdl:operation name=\"GetTICGroups\">\n <wsdl:input message=\"tns:GetTICGroupsSoapIn\"
|
430
|
+
/>\n <wsdl:output message=\"tns:GetTICGroupsSoapOut\" />\n </wsdl:operation>\n
|
431
|
+
\ <wsdl:operation name=\"GetTICs\">\n <wsdl:input message=\"tns:GetTICsSoapIn\"
|
432
|
+
/>\n <wsdl:output message=\"tns:GetTICsSoapOut\" />\n </wsdl:operation>\n
|
433
|
+
\ <wsdl:operation name=\"GetTICsByGroup\">\n <wsdl:input message=\"tns:GetTICsByGroupSoapIn\"
|
434
|
+
/>\n <wsdl:output message=\"tns:GetTICsByGroupSoapOut\" />\n </wsdl:operation>\n
|
435
|
+
\ <wsdl:operation name=\"AddExemptCertificate\">\n <wsdl:input message=\"tns:AddExemptCertificateSoapIn\"
|
436
|
+
/>\n <wsdl:output message=\"tns:AddExemptCertificateSoapOut\" />\n </wsdl:operation>\n
|
437
|
+
\ <wsdl:operation name=\"DeleteExemptCertificate\">\n <wsdl:input message=\"tns:DeleteExemptCertificateSoapIn\"
|
438
|
+
/>\n <wsdl:output message=\"tns:DeleteExemptCertificateSoapOut\" />\n
|
439
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"GetExemptCertificates\">\n
|
440
|
+
\ <wsdl:input message=\"tns:GetExemptCertificatesSoapIn\" />\n <wsdl:output
|
441
|
+
message=\"tns:GetExemptCertificatesSoapOut\" />\n </wsdl:operation>\n </wsdl:portType>\n
|
442
|
+
\ <wsdl:binding name=\"TaxCloudSoap\" type=\"tns:TaxCloudSoap\">\n <soap:binding
|
443
|
+
transport=\"http://schemas.xmlsoap.org/soap/http\" />\n <wsdl:operation
|
444
|
+
name=\"VerifyAddress\">\n <soap:operation soapAction=\"http://taxcloud.net/VerifyAddress\"
|
445
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
446
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
447
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"LookupForDate\">\n
|
448
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/LookupForDate\" style=\"document\"
|
449
|
+
/>\n <wsdl:input>\n <soap:body use=\"literal\" />\n </wsdl:input>\n
|
450
|
+
\ <wsdl:output>\n <soap:body use=\"literal\" />\n </wsdl:output>\n
|
451
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"Lookup\">\n <soap:operation
|
452
|
+
soapAction=\"http://taxcloud.net/Lookup\" style=\"document\" />\n <wsdl:input>\n
|
453
|
+
\ <soap:body use=\"literal\" />\n </wsdl:input>\n <wsdl:output>\n
|
454
|
+
\ <soap:body use=\"literal\" />\n </wsdl:output>\n </wsdl:operation>\n
|
455
|
+
\ <wsdl:operation name=\"Authorized\">\n <soap:operation soapAction=\"http://taxcloud.net/Authorized\"
|
456
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
457
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
458
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"AuthorizedWithCapture\">\n
|
459
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/AuthorizedWithCapture\"
|
460
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
461
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
462
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"Captured\">\n
|
463
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/Captured\" style=\"document\"
|
464
|
+
/>\n <wsdl:input>\n <soap:body use=\"literal\" />\n </wsdl:input>\n
|
465
|
+
\ <wsdl:output>\n <soap:body use=\"literal\" />\n </wsdl:output>\n
|
466
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"Returned\">\n <soap:operation
|
467
|
+
soapAction=\"http://taxcloud.net/Returned\" style=\"document\" />\n <wsdl:input>\n
|
468
|
+
\ <soap:body use=\"literal\" />\n </wsdl:input>\n <wsdl:output>\n
|
469
|
+
\ <soap:body use=\"literal\" />\n </wsdl:output>\n </wsdl:operation>\n
|
470
|
+
\ <wsdl:operation name=\"GetTICGroups\">\n <soap:operation soapAction=\"http://taxcloud.net/GetTICGroups\"
|
471
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
472
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
473
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"GetTICs\">\n
|
474
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/GetTICs\" style=\"document\"
|
475
|
+
/>\n <wsdl:input>\n <soap:body use=\"literal\" />\n </wsdl:input>\n
|
476
|
+
\ <wsdl:output>\n <soap:body use=\"literal\" />\n </wsdl:output>\n
|
477
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"GetTICsByGroup\">\n <soap:operation
|
478
|
+
soapAction=\"http://taxcloud.net/GetTICsByGroup\" style=\"document\" />\n
|
479
|
+
\ <wsdl:input>\n <soap:body use=\"literal\" />\n </wsdl:input>\n
|
480
|
+
\ <wsdl:output>\n <soap:body use=\"literal\" />\n </wsdl:output>\n
|
481
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"AddExemptCertificate\">\n
|
482
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/AddExemptCertificate\"
|
483
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
484
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
485
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"DeleteExemptCertificate\">\n
|
486
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/DeleteExemptCertificate\"
|
487
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
488
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
489
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"GetExemptCertificates\">\n
|
490
|
+
\ <soap:operation soapAction=\"http://taxcloud.net/GetExemptCertificates\"
|
491
|
+
style=\"document\" />\n <wsdl:input>\n <soap:body use=\"literal\"
|
492
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap:body use=\"literal\"
|
493
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n </wsdl:binding>\n <wsdl:binding
|
494
|
+
name=\"TaxCloudSoap12\" type=\"tns:TaxCloudSoap\">\n <soap12:binding transport=\"http://schemas.xmlsoap.org/soap/http\"
|
495
|
+
/>\n <wsdl:operation name=\"VerifyAddress\">\n <soap12:operation soapAction=\"http://taxcloud.net/VerifyAddress\"
|
496
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
497
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
498
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"LookupForDate\">\n
|
499
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/LookupForDate\" style=\"document\"
|
500
|
+
/>\n <wsdl:input>\n <soap12:body use=\"literal\" />\n </wsdl:input>\n
|
501
|
+
\ <wsdl:output>\n <soap12:body use=\"literal\" />\n </wsdl:output>\n
|
502
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"Lookup\">\n <soap12:operation
|
503
|
+
soapAction=\"http://taxcloud.net/Lookup\" style=\"document\" />\n <wsdl:input>\n
|
504
|
+
\ <soap12:body use=\"literal\" />\n </wsdl:input>\n <wsdl:output>\n
|
505
|
+
\ <soap12:body use=\"literal\" />\n </wsdl:output>\n </wsdl:operation>\n
|
506
|
+
\ <wsdl:operation name=\"Authorized\">\n <soap12:operation soapAction=\"http://taxcloud.net/Authorized\"
|
507
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
508
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
509
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"AuthorizedWithCapture\">\n
|
510
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/AuthorizedWithCapture\"
|
511
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
512
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
513
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"Captured\">\n
|
514
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/Captured\" style=\"document\"
|
515
|
+
/>\n <wsdl:input>\n <soap12:body use=\"literal\" />\n </wsdl:input>\n
|
516
|
+
\ <wsdl:output>\n <soap12:body use=\"literal\" />\n </wsdl:output>\n
|
517
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"Returned\">\n <soap12:operation
|
518
|
+
soapAction=\"http://taxcloud.net/Returned\" style=\"document\" />\n <wsdl:input>\n
|
519
|
+
\ <soap12:body use=\"literal\" />\n </wsdl:input>\n <wsdl:output>\n
|
520
|
+
\ <soap12:body use=\"literal\" />\n </wsdl:output>\n </wsdl:operation>\n
|
521
|
+
\ <wsdl:operation name=\"GetTICGroups\">\n <soap12:operation soapAction=\"http://taxcloud.net/GetTICGroups\"
|
522
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
523
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
524
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"GetTICs\">\n
|
525
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/GetTICs\" style=\"document\"
|
526
|
+
/>\n <wsdl:input>\n <soap12:body use=\"literal\" />\n </wsdl:input>\n
|
527
|
+
\ <wsdl:output>\n <soap12:body use=\"literal\" />\n </wsdl:output>\n
|
528
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"GetTICsByGroup\">\n <soap12:operation
|
529
|
+
soapAction=\"http://taxcloud.net/GetTICsByGroup\" style=\"document\" />\n
|
530
|
+
\ <wsdl:input>\n <soap12:body use=\"literal\" />\n </wsdl:input>\n
|
531
|
+
\ <wsdl:output>\n <soap12:body use=\"literal\" />\n </wsdl:output>\n
|
532
|
+
\ </wsdl:operation>\n <wsdl:operation name=\"AddExemptCertificate\">\n
|
533
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/AddExemptCertificate\"
|
534
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
535
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
536
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"DeleteExemptCertificate\">\n
|
537
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/DeleteExemptCertificate\"
|
538
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
539
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
540
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n <wsdl:operation name=\"GetExemptCertificates\">\n
|
541
|
+
\ <soap12:operation soapAction=\"http://taxcloud.net/GetExemptCertificates\"
|
542
|
+
style=\"document\" />\n <wsdl:input>\n <soap12:body use=\"literal\"
|
543
|
+
/>\n </wsdl:input>\n <wsdl:output>\n <soap12:body use=\"literal\"
|
544
|
+
/>\n </wsdl:output>\n </wsdl:operation>\n </wsdl:binding>\n <wsdl:service
|
545
|
+
name=\"TaxCloud\">\n <wsdl:documentation xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">TaxCloud
|
546
|
+
Web Service</wsdl:documentation>\n <wsdl:port name=\"TaxCloudSoap\" binding=\"tns:TaxCloudSoap\">\n
|
547
|
+
\ <soap:address location=\"https://api.taxcloud.net/1.0/TaxCloud.asmx\"
|
548
|
+
/>\n </wsdl:port>\n <wsdl:port name=\"TaxCloudSoap12\" binding=\"tns:TaxCloudSoap12\">\n
|
549
|
+
\ <soap12:address location=\"https://api.taxcloud.net/1.0/TaxCloud.asmx\"
|
550
|
+
/>\n </wsdl:port>\n </wsdl:service>\n</wsdl:definitions>"
|
551
|
+
http_version: '1.1'
|
552
|
+
recorded_at: Fri, 23 Nov 2012 15:41:40 GMT
|
553
|
+
- request:
|
554
|
+
method: post
|
555
|
+
uri: https://api.taxcloud.net/1.0/TaxCloud.asmx
|
556
|
+
body:
|
557
|
+
encoding: UTF-8
|
558
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
559
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://taxcloud.net"
|
560
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ins0="http://taxcloud.net"><env:Body><ins0:VerifyAddress><wsdl:apiLoginId>api-login-id</wsdl:apiLoginId><wsdl:apiKey>api-key</wsdl:apiKey><ins0:uspsUserID>usps-username</ins0:uspsUserID><ins0:address1>10001
|
561
|
+
Test Street</ins0:address1><ins0:address2 xsi:nil="true"/><ins0:city>New York</ins0:city><ins0:state>New
|
562
|
+
York</ins0:state><ins0:zip5>99999</ins0:zip5><ins0:zip4 xsi:nil="true"/></ins0:VerifyAddress></env:Body></env:Envelope>
|
563
|
+
headers:
|
564
|
+
Soapaction:
|
565
|
+
- ! '"http://taxcloud.net/VerifyAddress"'
|
566
|
+
Content-Type:
|
972
567
|
- text/xml;charset=UTF-8
|
973
|
-
response:
|
974
|
-
status:
|
568
|
+
response:
|
569
|
+
status:
|
975
570
|
code: 200
|
976
571
|
message: OK
|
977
|
-
headers:
|
978
|
-
|
572
|
+
headers:
|
573
|
+
Cache-Control:
|
979
574
|
- private, max-age=0
|
980
|
-
|
575
|
+
Content-Type:
|
981
576
|
- text/xml; charset=utf-8
|
982
|
-
|
577
|
+
Server:
|
983
578
|
- Microsoft-IIS/7.0
|
984
|
-
|
579
|
+
X-Aspnet-Version:
|
985
580
|
- 2.0.50727
|
986
|
-
|
581
|
+
X-Powered-By:
|
987
582
|
- TaxCloud
|
988
|
-
|
583
|
+
Date:
|
989
584
|
- Sat, 17 Sep 2011 19:21:53 GMT
|
990
|
-
|
991
|
-
-
|
992
|
-
body:
|
993
|
-
|
585
|
+
Content-Length:
|
586
|
+
- '450'
|
587
|
+
body:
|
588
|
+
encoding: UTF-8
|
589
|
+
string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
590
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><VerifyAddressResponse
|
591
|
+
xmlns="http://taxcloud.net"><VerifyAddressResult><ErrNumber>-2147219399</ErrNumber><ErrDescription>Invalid
|
592
|
+
Zip Code. </ErrDescription></VerifyAddressResult></VerifyAddressResponse></soap:Body></soap:Envelope>
|
593
|
+
http_version: '1.1'
|
594
|
+
recorded_at: Fri, 23 Nov 2012 15:41:40 GMT
|
595
|
+
recorded_with: VCR 2.3.0
|