savon 2.11.1 → 2.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +7 -3
- data/CHANGELOG.md +9 -0
- data/Gemfile +1 -6
- data/README.md +5 -5
- data/lib/savon/builder.rb +32 -6
- data/lib/savon/client.rb +1 -2
- data/lib/savon/log_message.rb +1 -1
- data/lib/savon/operation.rb +2 -1
- data/lib/savon/options.rb +28 -18
- data/lib/savon/qualified_message.rb +29 -28
- data/lib/savon/request.rb +4 -3
- data/lib/savon/response.rb +6 -5
- data/lib/savon/soap_fault.rb +1 -1
- data/lib/savon/version.rb +1 -1
- data/spec/fixtures/wsdl/brand.xml +624 -0
- data/spec/integration/random_quote_spec.rb +1 -1
- data/spec/integration/stockquote_example_spec.rb +6 -0
- data/spec/savon/log_message_spec.rb +7 -1
- data/spec/savon/options_spec.rb +11 -0
- data/spec/savon/qualified_message_spec.rb +53 -5
- data/spec/savon/soap_fault_spec.rb +5 -0
- data/spec/savon/softlayer_spec.rb +27 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee16983ffafe63866c9a55e2f87082982882442b
|
4
|
+
data.tar.gz: 031a0b620818fa9242fa6df79d716dc2d5fb0795
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32d112e59f45ec6b6f1c65f54c33030c99ae2e2c931ce476d0c62cceb7715d62772164b0f7e182ab691a8b47d8cfeb7c83140986743f3e134e91040d099905a6
|
7
|
+
data.tar.gz: 0d73626cde6c3ccec91b090f0d30cb1f6031b5fdc88834e1874719f0e269ae62c5a4e9402e863a45e7fb64c176b58f6ff8bb5296a2e13d1ddd28bb1133c9af0d
|
data/.travis.yml
CHANGED
@@ -1,10 +1,14 @@
|
|
1
1
|
# https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
|
2
2
|
language: "ruby"
|
3
|
+
sudo: false
|
4
|
+
before_install:
|
5
|
+
- gem install bundler
|
3
6
|
script: "bundle exec rake --trace"
|
4
7
|
rvm:
|
5
|
-
- 2.0
|
6
|
-
- 2.1
|
7
|
-
- 2.2
|
8
|
+
- 2.0.0
|
9
|
+
- 2.1.8
|
10
|
+
- 2.2.4
|
11
|
+
- 2.3.0
|
8
12
|
- jruby
|
9
13
|
- rbx-2
|
10
14
|
matrix:
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
# 2.11.2 (2017-08-03)
|
2
|
+
* Fix: [#676](https://github.com/savonrb/savon/pull/676) Fixes handling of `content!` and `attributes!`
|
3
|
+
* Fix: [#800](https://github.com/savonrb/savon/pull/800) Fix exception calling `SOAPFault#to_s` when http.body is empty
|
4
|
+
* Fix: [#757](https://github.com/savonrb/savon/pull/757) Logging: Use filter without automatic pretty printing
|
5
|
+
* Fix: [#771](https://github.com/savonrb/savon/pull/771) Restore support for cookies when using custom headers
|
6
|
+
* Feature: [#744](https://github.com/savonrb/savon/pull/744) Add support for rpc encoded wsdl
|
7
|
+
* Feature: [#742](https://github.com/savonrb/savon/pull/742) Add support for local request headers
|
8
|
+
* Feature: [#704](https://github.com/savonrb/savon/pull/704) Add possibility to pass attribute delete_namespace_attributes to Nori
|
9
|
+
|
1
10
|
# 2.11.1 (2015-05-27)
|
2
11
|
|
3
12
|
* Replace dependency on [uuid](https://rubygems.org/gems/uuid), using SecureRandom.uuid instead.
|
data/Gemfile
CHANGED
@@ -1,18 +1,13 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
gemspec
|
3
3
|
|
4
|
-
gem "httpclient", "~> 2.
|
4
|
+
gem "httpclient", "~> 2.7.1"
|
5
5
|
|
6
6
|
gem "simplecov", :require => false
|
7
7
|
gem "coveralls", :require => false
|
8
8
|
|
9
9
|
platform :rbx do
|
10
|
-
gem 'json'
|
11
10
|
gem 'racc'
|
12
11
|
gem 'rubysl'
|
13
12
|
gem 'rubinius-coverage'
|
14
13
|
end
|
15
|
-
|
16
|
-
platform :jruby do
|
17
|
-
gem 'json'
|
18
|
-
end
|
data/README.md
CHANGED
@@ -5,10 +5,10 @@ Heavy metal SOAP client
|
|
5
5
|
[Documentation](http://savonrb.com) | [RDoc](http://rubydoc.info/gems/savon) |
|
6
6
|
[Mailing list](https://groups.google.com/forum/#!forum/savonrb) | [Twitter](http://twitter.com/savonrb)
|
7
7
|
|
8
|
-
[![Build Status](https://secure.travis-ci.org/savonrb/savon.
|
9
|
-
[![Gem Version](https://badge.fury.io/rb/savon.
|
10
|
-
[![Code Climate](https://codeclimate.com/github/savonrb/savon.
|
11
|
-
[![Coverage Status](https://coveralls.io/repos/savonrb/savon/badge.
|
8
|
+
[![Build Status](https://secure.travis-ci.org/savonrb/savon.svg?branch=master)](http://travis-ci.org/savonrb/savon)
|
9
|
+
[![Gem Version](https://badge.fury.io/rb/savon.svg)](http://badge.fury.io/rb/savon)
|
10
|
+
[![Code Climate](https://codeclimate.com/github/savonrb/savon.svg)](https://codeclimate.com/github/savonrb/savon)
|
11
|
+
[![Coverage Status](https://coveralls.io/repos/savonrb/savon/badge.svg?branch=version2)](https://coveralls.io/r/savonrb/savon)
|
12
12
|
|
13
13
|
|
14
14
|
## Version 2
|
@@ -22,7 +22,7 @@ $ gem install savon
|
|
22
22
|
or add it to your Gemfile like this:
|
23
23
|
|
24
24
|
```
|
25
|
-
gem 'savon', '~> 2.
|
25
|
+
gem 'savon', '~> 2.11.1'
|
26
26
|
```
|
27
27
|
|
28
28
|
## Usage example
|
data/lib/savon/builder.rb
CHANGED
@@ -36,18 +36,18 @@ module Savon
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def build_document
|
39
|
-
|
39
|
+
xml_result = tag(builder, :Envelope, namespaces_with_globals) do |xml|
|
40
40
|
tag(xml, :Header, header_attributes) { xml << header.to_s } unless header.empty?
|
41
41
|
if @globals[:no_message_tag]
|
42
42
|
tag(xml, :Body, body_attributes) { xml << message.to_s }
|
43
43
|
else
|
44
|
-
tag(xml, :Body, body_attributes) { xml.tag!(*namespaced_message_tag) { xml <<
|
44
|
+
tag(xml, :Body, body_attributes) { xml.tag!(*namespaced_message_tag) { xml << body_message } }
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
48
|
# if we have a signature sign the document
|
49
49
|
if @signature
|
50
|
-
@signature.document =
|
50
|
+
@signature.document = xml_result
|
51
51
|
|
52
52
|
2.times do
|
53
53
|
@header = nil
|
@@ -61,10 +61,10 @@ module Savon
|
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
-
|
64
|
+
xml_result = @signature.document
|
65
65
|
end
|
66
66
|
|
67
|
-
|
67
|
+
xml_result
|
68
68
|
end
|
69
69
|
|
70
70
|
def header_attributes
|
@@ -141,6 +141,7 @@ module Savon
|
|
141
141
|
|
142
142
|
def namespaced_message_tag
|
143
143
|
tag_name = message_tag
|
144
|
+
return [tag_name] if @wsdl.document? and @wsdl.soap_input(@operation_name.to_sym).is_a?(Hash)
|
144
145
|
if namespace_identifier == nil
|
145
146
|
[tag_name, message_attributes]
|
146
147
|
elsif @used_namespaces[[tag_name.to_s]]
|
@@ -150,8 +151,25 @@ module Savon
|
|
150
151
|
end
|
151
152
|
end
|
152
153
|
|
154
|
+
def serialized_message_tag
|
155
|
+
[:wsdl, @wsdl.soap_input(@operation_name.to_sym).keys.first, {}]
|
156
|
+
end
|
157
|
+
|
158
|
+
def serialized_messages
|
159
|
+
messages = ""
|
160
|
+
message_tag = serialized_message_tag[1]
|
161
|
+
@wsdl.soap_input(@operation_name.to_sym)[message_tag].each_pair do |message, type|
|
162
|
+
break if @locals[:message].nil?
|
163
|
+
message_locals = @locals[:message][message.snakecase.to_sym]
|
164
|
+
message_content = Message.new(message_tag, namespace_identifier, @types, @used_namespaces, message_locals, :unqualified, @globals[:convert_request_keys_to], @globals[:unwrap]).to_s
|
165
|
+
messages << "<#{message} xsi:type=\"#{type.join(':')}\">#{message_content}</#{message}>"
|
166
|
+
end
|
167
|
+
messages
|
168
|
+
end
|
169
|
+
|
153
170
|
def message_tag
|
154
|
-
message_tag = @
|
171
|
+
message_tag = @wsdl.soap_input(@operation_name.to_sym).keys.first if @wsdl.document? and @wsdl.soap_input(@operation_name.to_sym).is_a?(Hash)
|
172
|
+
message_tag ||= @locals[:message_tag]
|
155
173
|
message_tag ||= @wsdl.soap_input(@operation_name.to_sym) if @wsdl.document?
|
156
174
|
message_tag ||= Gyoku.xml_tag(@operation_name, :key_converter => @globals[:convert_request_keys_to])
|
157
175
|
|
@@ -162,6 +180,14 @@ module Savon
|
|
162
180
|
@locals[:attributes] || {}
|
163
181
|
end
|
164
182
|
|
183
|
+
def body_message
|
184
|
+
if @wsdl.document? and @wsdl.soap_input(@operation_name.to_sym).is_a?(Hash)
|
185
|
+
serialized_messages
|
186
|
+
else
|
187
|
+
message.to_s
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
165
191
|
def message
|
166
192
|
element_form_default = @globals[:element_form_default] || @wsdl.element_form_default
|
167
193
|
# TODO: clean this up! [dh, 2012-12-17]
|
data/lib/savon/client.rb
CHANGED
@@ -21,7 +21,7 @@ module Savon
|
|
21
21
|
build_wsdl_document
|
22
22
|
end
|
23
23
|
|
24
|
-
attr_reader :globals
|
24
|
+
attr_reader :globals, :wsdl
|
25
25
|
|
26
26
|
def operations
|
27
27
|
raise_missing_wsdl_error! unless @wsdl.document?
|
@@ -60,7 +60,6 @@ module Savon
|
|
60
60
|
@wsdl.document = @globals[:wsdl] if @globals.include? :wsdl
|
61
61
|
@wsdl.endpoint = @globals[:endpoint] if @globals.include? :endpoint
|
62
62
|
@wsdl.namespace = @globals[:namespace] if @globals.include? :namespace
|
63
|
-
@wsdl.servicename = @globals[:servicename] if @globals.include? :servicename
|
64
63
|
@wsdl.adapter = @globals[:adapter] if @globals.include? :adapter
|
65
64
|
|
66
65
|
@wsdl.request = WSDLRequest.new(@globals).build
|
data/lib/savon/log_message.rb
CHANGED
data/lib/savon/operation.rb
CHANGED
data/lib/savon/options.rb
CHANGED
@@ -73,24 +73,25 @@ module Savon
|
|
73
73
|
@option_type = :global
|
74
74
|
|
75
75
|
defaults = {
|
76
|
-
:encoding
|
77
|
-
:soap_version
|
78
|
-
:namespaces
|
79
|
-
:logger
|
80
|
-
:log
|
81
|
-
:filters
|
82
|
-
:pretty_print_xml
|
83
|
-
:raise_errors
|
84
|
-
:strip_namespaces
|
85
|
-
:
|
86
|
-
:
|
87
|
-
:
|
88
|
-
:
|
89
|
-
:
|
90
|
-
:
|
91
|
-
:
|
92
|
-
:
|
93
|
-
:
|
76
|
+
:encoding => "UTF-8",
|
77
|
+
:soap_version => 1,
|
78
|
+
:namespaces => {},
|
79
|
+
:logger => Logger.new($stdout),
|
80
|
+
:log => false,
|
81
|
+
:filters => [],
|
82
|
+
:pretty_print_xml => false,
|
83
|
+
:raise_errors => true,
|
84
|
+
:strip_namespaces => true,
|
85
|
+
:delete_namespace_attributes => false,
|
86
|
+
:convert_response_tags_to => lambda { |tag| tag.snakecase.to_sym},
|
87
|
+
:convert_attributes_to => lambda { |k,v| [k,v] },
|
88
|
+
:multipart => false,
|
89
|
+
:adapter => nil,
|
90
|
+
:use_wsa_headers => false,
|
91
|
+
:no_message_tag => false,
|
92
|
+
:follow_redirects => false,
|
93
|
+
:unwrap => false,
|
94
|
+
:host => nil
|
94
95
|
}
|
95
96
|
|
96
97
|
options = defaults.merge(options)
|
@@ -288,6 +289,11 @@ module Savon
|
|
288
289
|
@options[:strip_namespaces] = strip_namespaces
|
289
290
|
end
|
290
291
|
|
292
|
+
# Instruct Nori whether to delete namespace attributes from XML nodes.
|
293
|
+
def delete_namespace_attributes(delete_namespace_attributes)
|
294
|
+
@options[:delete_namespace_attributes] = delete_namespace_attributes
|
295
|
+
end
|
296
|
+
|
291
297
|
# Tell Gyoku how to convert Hash key Symbols to XML tags.
|
292
298
|
# Accepts one of :lower_camelcase, :camelcase, :upcase, or :none.
|
293
299
|
def convert_request_keys_to(converter)
|
@@ -406,5 +412,9 @@ module Savon
|
|
406
412
|
def multipart(multipart)
|
407
413
|
@options[:multipart] = multipart
|
408
414
|
end
|
415
|
+
|
416
|
+
def headers(headers)
|
417
|
+
@options[:headers] = headers
|
418
|
+
end
|
409
419
|
end
|
410
420
|
end
|
@@ -2,49 +2,50 @@ require "gyoku"
|
|
2
2
|
|
3
3
|
module Savon
|
4
4
|
class QualifiedMessage
|
5
|
-
|
6
5
|
def initialize(types, used_namespaces, key_converter)
|
7
|
-
@types
|
6
|
+
@types = types
|
8
7
|
@used_namespaces = used_namespaces
|
9
|
-
@key_converter
|
8
|
+
@key_converter = key_converter
|
10
9
|
end
|
11
10
|
|
12
11
|
def to_hash(hash, path)
|
13
|
-
return
|
14
|
-
return hash.map { |value| to_hash(value, path) } if hash.
|
15
|
-
return hash.to_s unless hash.
|
16
|
-
|
17
|
-
hash.
|
18
|
-
|
19
|
-
|
20
|
-
newhash
|
12
|
+
return unless hash
|
13
|
+
return hash.map { |value| to_hash(value, path) } if hash.is_a?(Array)
|
14
|
+
return hash.to_s unless hash.is_a?(Hash)
|
15
|
+
|
16
|
+
hash.each_with_object({}) do |(key, value), newhash|
|
17
|
+
case key
|
18
|
+
when :order!
|
19
|
+
newhash[key] = add_namespaces_to_values(value, path)
|
20
|
+
when :attributes!, :content!
|
21
|
+
newhash[key] = to_hash(value, path)
|
21
22
|
else
|
22
|
-
|
23
|
-
|
24
|
-
newpath = path + [translated_key]
|
25
|
-
|
26
|
-
if @used_namespaces[newpath]
|
27
|
-
newhash.merge(
|
28
|
-
"#{@used_namespaces[newpath]}:#{translated_key}" =>
|
29
|
-
to_hash(value, @types[newpath] ? [@types[newpath]] : newpath)
|
30
|
-
)
|
23
|
+
if key.to_s =~ /!$/
|
24
|
+
newhash[key] = value
|
31
25
|
else
|
32
|
-
|
26
|
+
translated_key = translate_tag(key)
|
27
|
+
newkey = add_namespaces_to_values(key, path).first
|
28
|
+
newpath = path + [translated_key]
|
29
|
+
newhash[newkey] = to_hash(value, newpath)
|
33
30
|
end
|
34
31
|
end
|
32
|
+
newhash
|
35
33
|
end
|
36
34
|
end
|
37
35
|
|
38
36
|
private
|
39
37
|
|
40
|
-
def
|
41
|
-
|
42
|
-
camelcased_value = Gyoku.xml_tag(value, :key_converter => @key_converter)
|
43
|
-
namespace_path = path + [camelcased_value.to_s]
|
44
|
-
namespace = @used_namespaces[namespace_path]
|
45
|
-
"#{namespace.blank? ? '' : namespace + ":"}#{camelcased_value}"
|
46
|
-
}
|
38
|
+
def translate_tag(key)
|
39
|
+
Gyoku.xml_tag(key, :key_converter => @key_converter).to_s
|
47
40
|
end
|
48
41
|
|
42
|
+
def add_namespaces_to_values(values, path)
|
43
|
+
Array(values).collect do |value|
|
44
|
+
translated_value = translate_tag(value)
|
45
|
+
namespace_path = path + [translated_value]
|
46
|
+
namespace = @used_namespaces[namespace_path]
|
47
|
+
namespace.blank? ? value : "#{namespace}:#{translated_value}"
|
48
|
+
end
|
49
|
+
end
|
49
50
|
end
|
50
51
|
end
|
data/lib/savon/request.rb
CHANGED
@@ -72,9 +72,9 @@ module Savon
|
|
72
72
|
|
73
73
|
def build(options = {})
|
74
74
|
configure_proxy
|
75
|
-
configure_cookies options[:cookies]
|
76
75
|
configure_timeouts
|
77
|
-
configure_headers options[:soap_action]
|
76
|
+
configure_headers options[:soap_action], options[:headers]
|
77
|
+
configure_cookies options[:cookies]
|
78
78
|
configure_ssl
|
79
79
|
configure_auth
|
80
80
|
configure_redirect_handling
|
@@ -88,8 +88,9 @@ module Savon
|
|
88
88
|
@http_request.set_cookies(cookies) if cookies
|
89
89
|
end
|
90
90
|
|
91
|
-
def configure_headers(soap_action)
|
91
|
+
def configure_headers(soap_action, headers)
|
92
92
|
@http_request.headers = @globals[:headers] if @globals.include? :headers
|
93
|
+
@http_request.headers.merge!(headers) if headers
|
93
94
|
@http_request.headers["SOAPAction"] ||= %{"#{soap_action}"} if soap_action
|
94
95
|
@http_request.headers["Content-Type"] ||= CONTENT_TYPE[@globals[:soap_version]] % @globals[:encoding]
|
95
96
|
end
|
data/lib/savon/response.rb
CHANGED
@@ -98,11 +98,12 @@ module Savon
|
|
98
98
|
return @nori if @nori
|
99
99
|
|
100
100
|
nori_options = {
|
101
|
-
:
|
102
|
-
:
|
103
|
-
:
|
104
|
-
:
|
105
|
-
:
|
101
|
+
:delete_namespace_attributes => @globals[:delete_namespace_attributes],
|
102
|
+
:strip_namespaces => @globals[:strip_namespaces],
|
103
|
+
:convert_tags_to => @globals[:convert_response_tags_to],
|
104
|
+
:convert_attributes_to => @globals[:convert_attributes_to],
|
105
|
+
:advanced_typecasting => @locals[:advanced_typecasting],
|
106
|
+
:parser => @locals[:response_parser]
|
106
107
|
}
|
107
108
|
|
108
109
|
non_nil_nori_options = nori_options.reject { |_, value| value.nil? }
|
data/lib/savon/soap_fault.rb
CHANGED
data/lib/savon/version.rb
CHANGED
@@ -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>
|