savon 2.2.0 → 2.12.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/.travis.yml +20 -9
  4. data/CHANGELOG.md +157 -10
  5. data/CONTRIBUTING.md +1 -1
  6. data/Gemfile +10 -2
  7. data/README.md +38 -13
  8. data/donate.png +0 -0
  9. data/lib/savon/builder.rb +81 -15
  10. data/lib/savon/client.rb +6 -2
  11. data/lib/savon/core_ext/string.rb +0 -1
  12. data/lib/savon/header.rb +68 -17
  13. data/lib/savon/log_message.rb +7 -3
  14. data/lib/savon/message.rb +6 -7
  15. data/lib/savon/mock/expectation.rb +12 -2
  16. data/lib/savon/model.rb +4 -0
  17. data/lib/savon/operation.rb +45 -38
  18. data/lib/savon/options.rb +149 -22
  19. data/lib/savon/qualified_message.rb +31 -25
  20. data/lib/savon/request.rb +24 -4
  21. data/lib/savon/request_logger.rb +48 -0
  22. data/lib/savon/response.rb +35 -18
  23. data/lib/savon/soap_fault.rb +11 -11
  24. data/lib/savon/version.rb +1 -3
  25. data/savon.gemspec +12 -11
  26. data/spec/fixtures/response/empty_soap_fault.xml +13 -0
  27. data/spec/fixtures/response/f5.xml +39 -0
  28. data/spec/fixtures/response/no_body.xml +1 -0
  29. data/spec/fixtures/response/soap_fault_funky.xml +8 -0
  30. data/spec/fixtures/wsdl/brand.xml +624 -0
  31. data/spec/fixtures/wsdl/elements_in_types.xml +43 -0
  32. data/spec/fixtures/wsdl/no_message_tag.xml +1267 -0
  33. data/spec/fixtures/wsdl/vies.xml +176 -0
  34. data/spec/integration/centra_spec.rb +67 -0
  35. data/spec/integration/email_example_spec.rb +1 -1
  36. data/spec/integration/random_quote_spec.rb +23 -0
  37. data/spec/integration/stockquote_example_spec.rb +7 -1
  38. data/spec/integration/support/application.rb +1 -1
  39. data/spec/integration/zipcode_example_spec.rb +1 -1
  40. data/spec/savon/builder_spec.rb +50 -0
  41. data/spec/savon/client_spec.rb +78 -0
  42. data/spec/savon/core_ext/string_spec.rb +9 -9
  43. data/spec/savon/features/message_tag_spec.rb +5 -0
  44. data/spec/savon/http_error_spec.rb +2 -2
  45. data/spec/savon/log_message_spec.rb +18 -1
  46. data/spec/savon/message_spec.rb +70 -0
  47. data/spec/savon/mock_spec.rb +31 -0
  48. data/spec/savon/model_spec.rb +28 -0
  49. data/spec/savon/operation_spec.rb +69 -3
  50. data/spec/savon/options_spec.rb +515 -87
  51. data/spec/savon/qualified_message_spec.rb +101 -0
  52. data/spec/savon/request_logger_spec.rb +37 -0
  53. data/spec/savon/request_spec.rb +85 -10
  54. data/spec/savon/response_spec.rb +118 -27
  55. data/spec/savon/soap_fault_spec.rb +25 -5
  56. data/spec/savon/softlayer_spec.rb +27 -0
  57. data/spec/spec_helper.rb +5 -2
  58. data/spec/support/adapters.rb +48 -0
  59. data/spec/support/integration.rb +1 -1
  60. metadata +76 -93
@@ -0,0 +1 @@
1
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">Text</soap:Envelope>
@@ -0,0 +1,8 @@
1
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
2
+ <soap:Body>
3
+ <soap:ServiceFault>
4
+ <faultcode>42</faultcode>
5
+ <faultstring>The Answer to Life The Universe And Everything</faultstring>
6
+ </soap:ServiceFault>
7
+ </soap:Body>
8
+ </soap:Envelope>
@@ -0,0 +1,624 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://api.service.softlayer.com/soap/v3/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="slApi" targetNamespace="http://api.service.softlayer.com/soap/v3/">
3
+ <types>
4
+ <xsd:schema targetNamespace="http://api.service.softlayer.com/soap/v3/">
5
+ <xsd:include namespace="http://api.service.softlayer.com/soap/v3/" schemaLocation="https://api.softlayer.com/soap/v3/SoftLayer_Brand?xsd"/>
6
+ </xsd:schema>
7
+ <xsd:schema targetNamespace="http://api.service.softlayer.com/soap/v3/">
8
+ <xsd:complexType name="SoftLayer_BrandInitParameters">
9
+ <xsd:sequence>
10
+ <xsd:element minOccurs="1" maxOccurs="1" name="id" type="xsd:int"/>
11
+ <xsd:element minOccurs="0" maxOccurs="1" name="globalIdentifier" type="xsd:string"/>
12
+ </xsd:sequence>
13
+ </xsd:complexType>
14
+ <xsd:complexType name="SoftLayer_BrandObjectMask">
15
+ <xsd:sequence>
16
+ <xsd:element minOccurs="1" maxOccurs="1" name="mask" type="tns:SoftLayer_Brand"/>
17
+ </xsd:sequence>
18
+ </xsd:complexType>
19
+ </xsd:schema>
20
+ </types>
21
+ <message name="SoftLayer_BrandInitParametersHeader">
22
+ <part name="SoftLayer_BrandInitParameters" type="tns:SoftLayer_BrandInitParameters"/>
23
+ </message>
24
+ <message name="createCustomerAccount">
25
+ <part name="account" type="tns:SoftLayer_Account"/>
26
+ <part name="bypassDuplicateAccountCheck" type="xsd:boolean"/>
27
+ </message>
28
+ <message name="createCustomerAccountResponse">
29
+ <part name="createCustomerAccountReturn" type="tns:SoftLayer_Account"/>
30
+ </message>
31
+ <message name="createObject">
32
+ <part name="templateObject" type="tns:SoftLayer_Brand"/>
33
+ </message>
34
+ <message name="createObjectResponse">
35
+ <part name="createObjectReturn" type="tns:SoftLayer_Brand"/>
36
+ </message>
37
+ <message name="getAccount"/>
38
+ <message name="getAccountResponse">
39
+ <part name="getAccountReturn" type="tns:SoftLayer_Account"/>
40
+ </message>
41
+ <message name="getAllOwnedAccounts"/>
42
+ <message name="getAllOwnedAccountsResponse">
43
+ <part name="getAllOwnedAccountsReturn" type="tns:SoftLayer_AccountArray"/>
44
+ </message>
45
+ <message name="getAllTicketSubjects">
46
+ <part name="account" type="tns:SoftLayer_Account"/>
47
+ </message>
48
+ <message name="getAllTicketSubjectsResponse">
49
+ <part name="getAllTicketSubjectsReturn" type="tns:SoftLayer_Ticket_SubjectArray"/>
50
+ </message>
51
+ <message name="getAllowAccountCreationFlag"/>
52
+ <message name="getAllowAccountCreationFlagResponse">
53
+ <part name="getAllowAccountCreationFlagReturn" type="xsd:boolean"/>
54
+ </message>
55
+ <message name="getCatalog"/>
56
+ <message name="getCatalogResponse">
57
+ <part name="getCatalogReturn" type="tns:SoftLayer_Product_Catalog"/>
58
+ </message>
59
+ <message name="getContactInformation"/>
60
+ <message name="getContactInformationResponse">
61
+ <part name="getContactInformationReturn" type="tns:SoftLayer_Brand_ContactArray"/>
62
+ </message>
63
+ <message name="getContacts"/>
64
+ <message name="getContactsResponse">
65
+ <part name="getContactsReturn" type="tns:SoftLayer_Brand_ContactArray"/>
66
+ </message>
67
+ <message name="getCustomerCountryLocationRestrictions"/>
68
+ <message name="getCustomerCountryLocationRestrictionsResponse">
69
+ <part name="getCustomerCountryLocationRestrictionsReturn" type="tns:SoftLayer_Brand_Restriction_Location_CustomerCountryArray"/>
70
+ </message>
71
+ <message name="getDistributor"/>
72
+ <message name="getDistributorResponse">
73
+ <part name="getDistributorReturn" type="tns:SoftLayer_Brand"/>
74
+ </message>
75
+ <message name="getDistributorChildFlag"/>
76
+ <message name="getDistributorChildFlagResponse">
77
+ <part name="getDistributorChildFlagReturn" type="xsd:boolean"/>
78
+ </message>
79
+ <message name="getDistributorFlag"/>
80
+ <message name="getDistributorFlagResponse">
81
+ <part name="getDistributorFlagReturn" type="xsd:string"/>
82
+ </message>
83
+ <message name="getHardware"/>
84
+ <message name="getHardwareResponse">
85
+ <part name="getHardwareReturn" type="tns:SoftLayer_HardwareArray"/>
86
+ </message>
87
+ <message name="getHasAgentSupportFlag"/>
88
+ <message name="getHasAgentSupportFlagResponse">
89
+ <part name="getHasAgentSupportFlagReturn" type="xsd:boolean"/>
90
+ </message>
91
+ <message name="getMerchantName"/>
92
+ <message name="getMerchantNameResponse">
93
+ <part name="getMerchantNameReturn" type="xsd:string"/>
94
+ </message>
95
+ <message name="getObject"/>
96
+ <message name="getObjectResponse">
97
+ <part name="getObjectReturn" type="tns:SoftLayer_Brand"/>
98
+ </message>
99
+ <message name="getOpenTickets"/>
100
+ <message name="getOpenTicketsResponse">
101
+ <part name="getOpenTicketsReturn" type="tns:SoftLayer_TicketArray"/>
102
+ </message>
103
+ <message name="getOwnedAccounts"/>
104
+ <message name="getOwnedAccountsResponse">
105
+ <part name="getOwnedAccountsReturn" type="tns:SoftLayer_AccountArray"/>
106
+ </message>
107
+ <message name="getTicketGroups"/>
108
+ <message name="getTicketGroupsResponse">
109
+ <part name="getTicketGroupsReturn" type="tns:SoftLayer_Ticket_GroupArray"/>
110
+ </message>
111
+ <message name="getTickets"/>
112
+ <message name="getTicketsResponse">
113
+ <part name="getTicketsReturn" type="tns:SoftLayer_TicketArray"/>
114
+ </message>
115
+ <message name="getToken">
116
+ <part name="userId" type="xsd:int"/>
117
+ </message>
118
+ <message name="getTokenResponse">
119
+ <part name="getTokenReturn" type="xsd:string"/>
120
+ </message>
121
+ <message name="getUsers"/>
122
+ <message name="getUsersResponse">
123
+ <part name="getUsersReturn" type="tns:SoftLayer_User_CustomerArray"/>
124
+ </message>
125
+ <message name="getVirtualGuests"/>
126
+ <message name="getVirtualGuestsResponse">
127
+ <part name="getVirtualGuestsReturn" type="tns:SoftLayer_Virtual_GuestArray"/>
128
+ </message>
129
+ <message name="authenticateHeader">
130
+ <part name="authenticate" type="tns:authenticate"/>
131
+ </message>
132
+ <message name="resultLimitHeader">
133
+ <part name="resultLimit" type="tns:resultLimit"/>
134
+ </message>
135
+ <message name="totalItemsHeader">
136
+ <part name="totalItems" type="tns:totalItems"/>
137
+ </message>
138
+ <message name="SoftLayer_BrandObjectMaskHeader">
139
+ <part name="SoftLayer_BrandObjectMask" type="tns:SoftLayer_BrandObjectMask"/>
140
+ </message>
141
+ <message name="SoftLayer_BrandObjectFilterHeader">
142
+ <part name="SoftLayer_BrandObjectFilter" type="tns:SoftLayer_BrandObjectFilter"/>
143
+ </message>
144
+ <message name="SoftLayer_ObjectMaskHeader">
145
+ <part name="SoftLayer_ObjectMask" type="tns:SoftLayer_ObjectMask"/>
146
+ </message>
147
+ <portType name="SoftLayer_BrandPortType">
148
+ <documentation>Every SoftLayer customer account is associated to a brand
149
+
150
+ SoftLayer customers are unable to change their brand information in the portal or the API. </documentation>
151
+ <operation name="createCustomerAccount">
152
+ <documentation>Create a new customer account record. </documentation>
153
+ <input message="tns:createCustomerAccount"/>
154
+ <output message="tns:createCustomerAccountResponse"/>
155
+ </operation>
156
+ <operation name="createObject">
157
+ <documentation>Create a new brand record. </documentation>
158
+ <input message="tns:createObject"/>
159
+ <output message="tns:createObjectResponse"/>
160
+ </operation>
161
+ <operation name="getAccount">
162
+ <documentation></documentation>
163
+ <input message="tns:getAccount"/>
164
+ <output message="tns:getAccountResponse"/>
165
+ </operation>
166
+ <operation name="getAllOwnedAccounts">
167
+ <documentation>Retrieve all accounts owned by the brand.</documentation>
168
+ <input message="tns:getAllOwnedAccounts"/>
169
+ <output message="tns:getAllOwnedAccountsResponse"/>
170
+ </operation>
171
+ <operation name="getAllTicketSubjects">
172
+ <documentation></documentation>
173
+ <input message="tns:getAllTicketSubjects"/>
174
+ <output message="tns:getAllTicketSubjectsResponse"/>
175
+ </operation>
176
+ <operation name="getAllowAccountCreationFlag">
177
+ <documentation>Retrieve this flag indicates if creation of accounts is allowed.</documentation>
178
+ <input message="tns:getAllowAccountCreationFlag"/>
179
+ <output message="tns:getAllowAccountCreationFlagResponse"/>
180
+ </operation>
181
+ <operation name="getCatalog">
182
+ <documentation>Retrieve the Product Catalog for the Brand</documentation>
183
+ <input message="tns:getCatalog"/>
184
+ <output message="tns:getCatalogResponse"/>
185
+ </operation>
186
+ <operation name="getContactInformation">
187
+ <documentation>Retrieve the contact information for the brand such as the corporate or support contact. This will include the contact name, telephone number, fax number, email address, and mailing address of the contact. </documentation>
188
+ <input message="tns:getContactInformation"/>
189
+ <output message="tns:getContactInformationResponse"/>
190
+ </operation>
191
+ <operation name="getContacts">
192
+ <documentation>Retrieve the contacts for the brand.</documentation>
193
+ <input message="tns:getContacts"/>
194
+ <output message="tns:getContactsResponse"/>
195
+ </operation>
196
+ <operation name="getCustomerCountryLocationRestrictions">
197
+ <documentation>Retrieve this references relationship between brands, locations and countries associated with a user's account that are ineligible when ordering products. For example, the India datacenter may not be available on this brand for customers that live in Great Britain.</documentation>
198
+ <input message="tns:getCustomerCountryLocationRestrictions"/>
199
+ <output message="tns:getCustomerCountryLocationRestrictionsResponse"/>
200
+ </operation>
201
+ <operation name="getDistributor">
202
+ <documentation></documentation>
203
+ <input message="tns:getDistributor"/>
204
+ <output message="tns:getDistributorResponse"/>
205
+ </operation>
206
+ <operation name="getDistributorChildFlag">
207
+ <documentation></documentation>
208
+ <input message="tns:getDistributorChildFlag"/>
209
+ <output message="tns:getDistributorChildFlagResponse"/>
210
+ </operation>
211
+ <operation name="getDistributorFlag">
212
+ <documentation></documentation>
213
+ <input message="tns:getDistributorFlag"/>
214
+ <output message="tns:getDistributorFlagResponse"/>
215
+ </operation>
216
+ <operation name="getHardware">
217
+ <documentation>Retrieve an account's associated hardware objects.</documentation>
218
+ <input message="tns:getHardware"/>
219
+ <output message="tns:getHardwareResponse"/>
220
+ </operation>
221
+ <operation name="getHasAgentSupportFlag">
222
+ <documentation></documentation>
223
+ <input message="tns:getHasAgentSupportFlag"/>
224
+ <output message="tns:getHasAgentSupportFlagResponse"/>
225
+ </operation>
226
+ <operation name="getMerchantName">
227
+ <documentation>Get the payment processor merchant name.</documentation>
228
+ <input message="tns:getMerchantName"/>
229
+ <output message="tns:getMerchantNameResponse"/>
230
+ </operation>
231
+ <operation name="getObject">
232
+ <documentation></documentation>
233
+ <input message="tns:getObject"/>
234
+ <output message="tns:getObjectResponse"/>
235
+ </operation>
236
+ <operation name="getOpenTickets">
237
+ <documentation></documentation>
238
+ <input message="tns:getOpenTickets"/>
239
+ <output message="tns:getOpenTicketsResponse"/>
240
+ </operation>
241
+ <operation name="getOwnedAccounts">
242
+ <documentation>Retrieve active accounts owned by the brand.</documentation>
243
+ <input message="tns:getOwnedAccounts"/>
244
+ <output message="tns:getOwnedAccountsResponse"/>
245
+ </operation>
246
+ <operation name="getTicketGroups">
247
+ <documentation></documentation>
248
+ <input message="tns:getTicketGroups"/>
249
+ <output message="tns:getTicketGroupsResponse"/>
250
+ </operation>
251
+ <operation name="getTickets">
252
+ <documentation></documentation>
253
+ <input message="tns:getTickets"/>
254
+ <output message="tns:getTicketsResponse"/>
255
+ </operation>
256
+ <operation name="getToken">
257
+ <documentation></documentation>
258
+ <input message="tns:getToken"/>
259
+ <output message="tns:getTokenResponse"/>
260
+ </operation>
261
+ <operation name="getUsers">
262
+ <documentation></documentation>
263
+ <input message="tns:getUsers"/>
264
+ <output message="tns:getUsersResponse"/>
265
+ </operation>
266
+ <operation name="getVirtualGuests">
267
+ <documentation>Retrieve an account's associated virtual guest objects.</documentation>
268
+ <input message="tns:getVirtualGuests"/>
269
+ <output message="tns:getVirtualGuestsResponse"/>
270
+ </operation>
271
+ </portType>
272
+ <binding name="SoftLayer_BrandBinding" type="tns:SoftLayer_BrandPortType">
273
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
274
+ <operation name="createCustomerAccount">
275
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
276
+ <input>
277
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
278
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
279
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
280
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
281
+ </input>
282
+ <output>
283
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
284
+ </output>
285
+ </operation>
286
+ <operation name="createObject">
287
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
288
+ <input>
289
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
290
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
291
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
292
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
293
+ </input>
294
+ <output>
295
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
296
+ </output>
297
+ </operation>
298
+ <operation name="getAccount">
299
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
300
+ <input>
301
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
302
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
303
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
304
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
305
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
306
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
307
+ </input>
308
+ <output>
309
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
310
+ </output>
311
+ </operation>
312
+ <operation name="getAllOwnedAccounts">
313
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
314
+ <input>
315
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
316
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
317
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
318
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
319
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
320
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
321
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
322
+ </input>
323
+ <output>
324
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
325
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
326
+ </output>
327
+ </operation>
328
+ <operation name="getAllTicketSubjects">
329
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
330
+ <input>
331
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
332
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
333
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
334
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
335
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
336
+ </input>
337
+ <output>
338
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
339
+ </output>
340
+ </operation>
341
+ <operation name="getAllowAccountCreationFlag">
342
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
343
+ <input>
344
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
345
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
346
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
347
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
348
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
349
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
350
+ </input>
351
+ <output>
352
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
353
+ </output>
354
+ </operation>
355
+ <operation name="getCatalog">
356
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
357
+ <input>
358
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
359
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
360
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
361
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
362
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
363
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
364
+ </input>
365
+ <output>
366
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
367
+ </output>
368
+ </operation>
369
+ <operation name="getContactInformation">
370
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
371
+ <input>
372
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
373
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
374
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
375
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
376
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
377
+ </input>
378
+ <output>
379
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
380
+ </output>
381
+ </operation>
382
+ <operation name="getContacts">
383
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
384
+ <input>
385
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
386
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
387
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
388
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
389
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
390
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
391
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
392
+ </input>
393
+ <output>
394
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
395
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
396
+ </output>
397
+ </operation>
398
+ <operation name="getCustomerCountryLocationRestrictions">
399
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
400
+ <input>
401
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
402
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
403
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
404
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
405
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
406
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
407
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
408
+ </input>
409
+ <output>
410
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
411
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
412
+ </output>
413
+ </operation>
414
+ <operation name="getDistributor">
415
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
416
+ <input>
417
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
418
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
419
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
420
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
421
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
422
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
423
+ </input>
424
+ <output>
425
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
426
+ </output>
427
+ </operation>
428
+ <operation name="getDistributorChildFlag">
429
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
430
+ <input>
431
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
432
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
433
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
434
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
435
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
436
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
437
+ </input>
438
+ <output>
439
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
440
+ </output>
441
+ </operation>
442
+ <operation name="getDistributorFlag">
443
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
444
+ <input>
445
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
446
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
447
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
448
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
449
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
450
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
451
+ </input>
452
+ <output>
453
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
454
+ </output>
455
+ </operation>
456
+ <operation name="getHardware">
457
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
458
+ <input>
459
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
460
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
461
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
462
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
463
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
464
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
465
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
466
+ </input>
467
+ <output>
468
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
469
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
470
+ </output>
471
+ </operation>
472
+ <operation name="getHasAgentSupportFlag">
473
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
474
+ <input>
475
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
476
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
477
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
478
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
479
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
480
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
481
+ </input>
482
+ <output>
483
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
484
+ </output>
485
+ </operation>
486
+ <operation name="getMerchantName">
487
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
488
+ <input>
489
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
490
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
491
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
492
+ </input>
493
+ <output>
494
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
495
+ </output>
496
+ </operation>
497
+ <operation name="getObject">
498
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
499
+ <input>
500
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
501
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
502
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
503
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
504
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
505
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
506
+ </input>
507
+ <output>
508
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
509
+ </output>
510
+ </operation>
511
+ <operation name="getOpenTickets">
512
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
513
+ <input>
514
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
515
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
516
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
517
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
518
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
519
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
520
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
521
+ </input>
522
+ <output>
523
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
524
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
525
+ </output>
526
+ </operation>
527
+ <operation name="getOwnedAccounts">
528
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
529
+ <input>
530
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
531
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
532
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
533
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
534
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
535
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
536
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
537
+ </input>
538
+ <output>
539
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
540
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
541
+ </output>
542
+ </operation>
543
+ <operation name="getTicketGroups">
544
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
545
+ <input>
546
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
547
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
548
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
549
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
550
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
551
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
552
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
553
+ </input>
554
+ <output>
555
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
556
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
557
+ </output>
558
+ </operation>
559
+ <operation name="getTickets">
560
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
561
+ <input>
562
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
563
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
564
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
565
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
566
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
567
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
568
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
569
+ </input>
570
+ <output>
571
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
572
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
573
+ </output>
574
+ </operation>
575
+ <operation name="getToken">
576
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
577
+ <input>
578
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
579
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
580
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
581
+ </input>
582
+ <output>
583
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
584
+ </output>
585
+ </operation>
586
+ <operation name="getUsers">
587
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
588
+ <input>
589
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
590
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
591
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
592
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
593
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
594
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
595
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
596
+ </input>
597
+ <output>
598
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
599
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
600
+ </output>
601
+ </operation>
602
+ <operation name="getVirtualGuests">
603
+ <soap:operation soapAction="http://api.service.softlayer.com/soap/v3/SoftLayer_BrandAction"/>
604
+ <input>
605
+ <soap:header message="tns:SoftLayer_BrandObjectMaskHeader" part="SoftLayer_BrandObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
606
+ <soap:header message="tns:SoftLayer_BrandObjectFilterHeader" part="SoftLayer_BrandObjectFilter" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
607
+ <soap:header message="tns:resultLimitHeader" part="resultLimit" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
608
+ <soap:header message="tns:SoftLayer_ObjectMaskHeader" part="SoftLayer_ObjectMask" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
609
+ <soap:header message="tns:SoftLayer_BrandInitParametersHeader" part="SoftLayer_BrandInitParameters" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
610
+ <soap:header message="tns:authenticateHeader" part="authenticate" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
611
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
612
+ </input>
613
+ <output>
614
+ <soap:header message="tns:totalItemsHeader" part="totalItems" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
615
+ <soap:body namespace="http://api.service.softlayer.com/soap/v3/" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
616
+ </output>
617
+ </operation>
618
+ </binding>
619
+ <service name="SoftLayer_BrandService">
620
+ <port name="SoftLayer_BrandPort" binding="tns:SoftLayer_BrandBinding">
621
+ <soap:address location="https://api.softlayer.com/soap/v3/SoftLayer_Brand"/>
622
+ </port>
623
+ </service>
624
+ </definitions>