kennethkalmer-postini 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +22 -0
- data/License.txt +29 -0
- data/Manifest.txt +34 -0
- data/PostInstall.txt +8 -0
- data/README.txt +62 -0
- data/Rakefile +29 -0
- data/TODO +37 -0
- data/features/development.feature +13 -0
- data/features/step_definitions/common_steps.rb +172 -0
- data/features/support/common.rb +29 -0
- data/features/support/env.rb +6 -0
- data/features/support/matchers.rb +11 -0
- data/lib/postini.rb +119 -0
- data/lib/postini/automated_batch_service.rb +464 -0
- data/lib/postini/configuration_check.rb +25 -0
- data/lib/postini/endpoint_resolver_service.rb +41 -0
- data/lib/postini/endpoints.rb +26 -0
- data/lib/postini/exceptions.rb +85 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +71 -0
- data/setup.rb +1585 -0
- data/spec/exceptions_spec.rb +19 -0
- data/spec/postini_spec.rb +25 -0
- data/spec/rcov.opts +1 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +15 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/rspec.rake +21 -0
- data/tasks/website.rake +17 -0
- data/vendor/automatedbatch.wsdl +1721 -0
- data/vendor/endpointresolver.wsdl +214 -0
- metadata +111 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/spec_helper'
|
2
|
+
|
3
|
+
describe "Remote exception handling" do
|
4
|
+
it "should parse the reason" do
|
5
|
+
reason = "StatusException: You specified 'false' to the test operation - we have raised an exception as you have requested. () (Request ID B7BBF9D8-56D3-11DE-A949-FAAF5903FD3E)"
|
6
|
+
|
7
|
+
exception = Postini::RemoteException.new( reason )
|
8
|
+
exception.type.should == "StatusException"
|
9
|
+
exception.message.should == "You specified 'false' to the test operation - we have raised an exception as you have requested. ()"
|
10
|
+
exception.request_id.should == "B7BBF9D8-56D3-11DE-A949-FAAF5903FD3E"
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should delegate the exception correctly" do
|
14
|
+
reason = "StatusException: You specified 'false' to the test operation - we have raised an exception as you have requested. () (Request ID B7BBF9D8-56D3-11DE-A949-FAAF5903FD3E)"
|
15
|
+
|
16
|
+
exception = Postini::RemoteException.delegate( reason )
|
17
|
+
exception.should be_a_kind_of( Postini::StatusException )
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/spec_helper.rb'
|
2
|
+
|
3
|
+
describe "Postini master module" do
|
4
|
+
|
5
|
+
it "must allow for setting the API Access Key" do
|
6
|
+
Postini.api_key = "1234567890"
|
7
|
+
Postini.api_key.should eql("1234567890")
|
8
|
+
end
|
9
|
+
|
10
|
+
it "must allow for setting the system number" do
|
11
|
+
Postini.system_number = 200
|
12
|
+
Postini.system_number.should be(200)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "must allow for setting a username" do
|
16
|
+
Postini.username = 'administrator@jumboinc.com'
|
17
|
+
Postini.username.should eql('administrator@jumboinc.com')
|
18
|
+
end
|
19
|
+
|
20
|
+
it "must allow for setting a password" do
|
21
|
+
Postini.password = 'secret'
|
22
|
+
Postini.password.should eql('secret')
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
data/spec/rcov.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--exclude "spec/*,gems/*"
|
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
begin
|
2
|
+
require 'spec'
|
3
|
+
rescue LoadError
|
4
|
+
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
5
|
+
gem 'rspec'
|
6
|
+
require 'spec'
|
7
|
+
end
|
8
|
+
|
9
|
+
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
10
|
+
require 'postini'
|
11
|
+
require 'ostruct'
|
12
|
+
|
13
|
+
Spec::Runner.configure do |config|
|
14
|
+
config.mock_with :mocha
|
15
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
desc 'Release the website and new gem version'
|
2
|
+
task :deploy => [:check_version, :website, :release] do
|
3
|
+
puts "Remember to create SVN tag:"
|
4
|
+
puts "svn copy svn+ssh://#{rubyforge_username}@rubyforge.org/var/svn/#{PATH}/trunk " +
|
5
|
+
"svn+ssh://#{rubyforge_username}@rubyforge.org/var/svn/#{PATH}/tags/REL-#{VERS} "
|
6
|
+
puts "Suggested comment:"
|
7
|
+
puts "Tagging release #{CHANGES}"
|
8
|
+
end
|
9
|
+
|
10
|
+
desc 'Runs tasks website_generate and install_gem as a local deployment of the gem'
|
11
|
+
task :local_deploy => [:website_generate, :install_gem]
|
12
|
+
|
13
|
+
task :check_version do
|
14
|
+
unless ENV['VERSION']
|
15
|
+
puts 'Must pass a VERSION=x.y.z release version'
|
16
|
+
exit
|
17
|
+
end
|
18
|
+
unless ENV['VERSION'] == VERS
|
19
|
+
puts "Please update your version.rb to match the release version, currently #{VERS}"
|
20
|
+
exit
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
desc 'Install the package as a gem, without generating documentation(ri/rdoc)'
|
25
|
+
task :install_gem_no_doc => [:clean, :package] do
|
26
|
+
sh "#{'sudo ' unless Hoe::WINDOZE }gem install pkg/*.gem --no-rdoc --no-ri"
|
27
|
+
end
|
28
|
+
|
29
|
+
namespace :manifest do
|
30
|
+
desc 'Recreate Manifest.txt to include ALL files'
|
31
|
+
task :refresh do
|
32
|
+
`rake check_manifest | patch -p0 > Manifest.txt`
|
33
|
+
end
|
34
|
+
end
|
data/tasks/rspec.rake
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
begin
|
2
|
+
require 'spec'
|
3
|
+
rescue LoadError
|
4
|
+
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
5
|
+
require 'spec'
|
6
|
+
end
|
7
|
+
begin
|
8
|
+
require 'spec/rake/spectask'
|
9
|
+
rescue LoadError
|
10
|
+
puts <<-EOS
|
11
|
+
To use rspec for testing you must install rspec gem:
|
12
|
+
gem install rspec
|
13
|
+
EOS
|
14
|
+
exit(0)
|
15
|
+
end
|
16
|
+
|
17
|
+
desc "Run the specs under spec/models"
|
18
|
+
Spec::Rake::SpecTask.new do |t|
|
19
|
+
t.spec_opts = ['--options', "spec/spec.opts"]
|
20
|
+
t.spec_files = FileList['spec/**/*_spec.rb']
|
21
|
+
end
|
data/tasks/website.rake
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
desc 'Generate website files'
|
2
|
+
task :website_generate => :ruby_env do
|
3
|
+
(Dir['website/**/*.txt'] - Dir['website/version*.txt']).each do |txt|
|
4
|
+
sh %{ #{RUBY_APP} script/txt2html #{txt} > #{txt.gsub(/txt$/,'html')} }
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
desc 'Upload website files to rubyforge'
|
9
|
+
task :website_upload do
|
10
|
+
host = "#{rubyforge_username}@rubyforge.org"
|
11
|
+
remote_dir = "/var/www/gforge-projects/#{PATH}/"
|
12
|
+
local_dir = 'website'
|
13
|
+
sh %{rsync -aCv #{local_dir}/ #{host}:#{remote_dir}}
|
14
|
+
end
|
15
|
+
|
16
|
+
desc 'Generate and upload website files'
|
17
|
+
task :website => [:website_generate, :website_upload, :publish_docs]
|
@@ -0,0 +1,1721 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- Originating Build y6_19_0c21, y6_19_0c21, Tue May 19 19:02:18 PDT 2009-->
|
3
|
+
|
4
|
+
<wsdl:definitions
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
6
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
7
|
+
xmlns:xmime="http://www.w3.org/2004/11/xmlmime"
|
8
|
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
9
|
+
xmlns:tns="http://postini.com/PSTN/SOAPAPI/v2/automatedbatch"
|
10
|
+
targetNamespace="http://postini.com/PSTN/SOAPAPI/v2/automatedbatch"
|
11
|
+
name="AutomatedBatch"
|
12
|
+
>
|
13
|
+
|
14
|
+
<wsdl:types>
|
15
|
+
<schema
|
16
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
17
|
+
targetNamespace="http://postini.com/PSTN/SOAPAPI/v2/automatedbatch"
|
18
|
+
>
|
19
|
+
|
20
|
+
<xsd:complexType name="AdminBlockException">
|
21
|
+
<xsd:sequence>
|
22
|
+
<xsd:element name="message" type="xsd:string" />
|
23
|
+
</xsd:sequence>
|
24
|
+
</xsd:complexType>
|
25
|
+
|
26
|
+
<xsd:complexType name="AuthenticationException">
|
27
|
+
<xsd:sequence>
|
28
|
+
<xsd:element name="message" type="xsd:string" />
|
29
|
+
</xsd:sequence>
|
30
|
+
</xsd:complexType>
|
31
|
+
|
32
|
+
<xsd:complexType name="BatchException">
|
33
|
+
<xsd:sequence>
|
34
|
+
<xsd:element name="message" type="xsd:string" />
|
35
|
+
</xsd:sequence>
|
36
|
+
</xsd:complexType>
|
37
|
+
|
38
|
+
<xsd:complexType name="InternalException">
|
39
|
+
<xsd:sequence>
|
40
|
+
<xsd:element name="message" type="xsd:string" />
|
41
|
+
</xsd:sequence>
|
42
|
+
</xsd:complexType>
|
43
|
+
|
44
|
+
<xsd:complexType name="InvalidValueException">
|
45
|
+
<xsd:sequence>
|
46
|
+
<xsd:element name="message" type="xsd:string" />
|
47
|
+
</xsd:sequence>
|
48
|
+
</xsd:complexType>
|
49
|
+
|
50
|
+
<xsd:complexType name="MalformedKeyException">
|
51
|
+
<xsd:sequence>
|
52
|
+
<xsd:element name="message" type="xsd:string" />
|
53
|
+
</xsd:sequence>
|
54
|
+
</xsd:complexType>
|
55
|
+
|
56
|
+
<xsd:complexType name="MissingElementException">
|
57
|
+
<xsd:sequence>
|
58
|
+
<xsd:element name="message" type="xsd:string" />
|
59
|
+
</xsd:sequence>
|
60
|
+
</xsd:complexType>
|
61
|
+
|
62
|
+
<xsd:complexType name="NoSuchKeyException">
|
63
|
+
<xsd:sequence>
|
64
|
+
<xsd:element name="message" type="xsd:string" />
|
65
|
+
</xsd:sequence>
|
66
|
+
</xsd:complexType>
|
67
|
+
|
68
|
+
<xsd:complexType name="StatusException">
|
69
|
+
<xsd:sequence>
|
70
|
+
<xsd:element name="message" type="xsd:string" />
|
71
|
+
</xsd:sequence>
|
72
|
+
</xsd:complexType>
|
73
|
+
|
74
|
+
<xsd:complexType name="UnknownInternalException">
|
75
|
+
<xsd:sequence>
|
76
|
+
<xsd:element name="message" type="xsd:string" />
|
77
|
+
</xsd:sequence>
|
78
|
+
</xsd:complexType>
|
79
|
+
|
80
|
+
<xsd:complexType name="addalias">
|
81
|
+
<xsd:sequence>
|
82
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
83
|
+
<xsd:element name="userAddressOrId" type="xsd:string" />
|
84
|
+
<xsd:element name="aliasAddress" type="xsd:string" />
|
85
|
+
<xsd:element name="confirm" minOccurs="0" type="xsd:string" />
|
86
|
+
</xsd:sequence>
|
87
|
+
</xsd:complexType>
|
88
|
+
|
89
|
+
<xsd:complexType name="addaliasResponse">
|
90
|
+
<xsd:sequence>
|
91
|
+
</xsd:sequence>
|
92
|
+
</xsd:complexType>
|
93
|
+
|
94
|
+
<xsd:complexType name="adddomain">
|
95
|
+
<xsd:sequence>
|
96
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
97
|
+
<xsd:element name="orgNameOrId" type="xsd:string" />
|
98
|
+
<xsd:element name="args" minOccurs="0" type="tns:adddomainargs" />
|
99
|
+
</xsd:sequence>
|
100
|
+
</xsd:complexType>
|
101
|
+
|
102
|
+
<xsd:complexType name="adddomainResponse">
|
103
|
+
<xsd:sequence>
|
104
|
+
</xsd:sequence>
|
105
|
+
</xsd:complexType>
|
106
|
+
|
107
|
+
<xsd:complexType name="adddomainargs">
|
108
|
+
<xsd:all>
|
109
|
+
<xsd:element name="domain" type="xsd:string" />
|
110
|
+
</xsd:all>
|
111
|
+
</xsd:complexType>
|
112
|
+
|
113
|
+
<xsd:complexType name="addorg">
|
114
|
+
<xsd:sequence>
|
115
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
116
|
+
<xsd:element name="orgName" type="xsd:string" />
|
117
|
+
<xsd:element name="args" minOccurs="0" type="tns:addorgargs" />
|
118
|
+
</xsd:sequence>
|
119
|
+
</xsd:complexType>
|
120
|
+
|
121
|
+
<xsd:complexType name="addorgResponse">
|
122
|
+
<xsd:sequence>
|
123
|
+
</xsd:sequence>
|
124
|
+
</xsd:complexType>
|
125
|
+
|
126
|
+
<xsd:complexType name="addorgargs">
|
127
|
+
<xsd:all>
|
128
|
+
<xsd:element name="parent" minOccurs="0" type="xsd:string" />
|
129
|
+
</xsd:all>
|
130
|
+
</xsd:complexType>
|
131
|
+
|
132
|
+
<xsd:complexType name="adduser">
|
133
|
+
<xsd:sequence>
|
134
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
135
|
+
<xsd:element name="userAddress" type="xsd:string" />
|
136
|
+
<xsd:element name="args" minOccurs="0" type="tns:adduserargs" />
|
137
|
+
</xsd:sequence>
|
138
|
+
</xsd:complexType>
|
139
|
+
|
140
|
+
<xsd:complexType name="adduserResponse">
|
141
|
+
<xsd:sequence>
|
142
|
+
</xsd:sequence>
|
143
|
+
</xsd:complexType>
|
144
|
+
|
145
|
+
<xsd:complexType name="adduserargs">
|
146
|
+
<xsd:all>
|
147
|
+
<xsd:element name="org" minOccurs="0" type="xsd:string" />
|
148
|
+
<xsd:element name="welcome" minOccurs="0" type="xsd:string" />
|
149
|
+
</xsd:all>
|
150
|
+
</xsd:complexType>
|
151
|
+
|
152
|
+
<xsd:complexType name="authElem">
|
153
|
+
<xsd:all>
|
154
|
+
<xsd:element name="apiKey" type="xsd:string" />
|
155
|
+
<xsd:element name="email" type="xsd:string" />
|
156
|
+
<xsd:element name="pword" minOccurs="0" type="xsd:string" />
|
157
|
+
<xsd:element name="xauth" minOccurs="0" type="xsd:string" />
|
158
|
+
</xsd:all>
|
159
|
+
</xsd:complexType>
|
160
|
+
|
161
|
+
|
162
|
+
<xsd:complexType name="checkauth">
|
163
|
+
<xsd:sequence>
|
164
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
165
|
+
</xsd:sequence>
|
166
|
+
</xsd:complexType>
|
167
|
+
|
168
|
+
<xsd:complexType name="checkauthResponse">
|
169
|
+
<xsd:sequence>
|
170
|
+
</xsd:sequence>
|
171
|
+
</xsd:complexType>
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
<xsd:complexType name="deletealias">
|
176
|
+
<xsd:sequence>
|
177
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
178
|
+
<xsd:element name="aliasAddress" type="xsd:string" />
|
179
|
+
</xsd:sequence>
|
180
|
+
</xsd:complexType>
|
181
|
+
|
182
|
+
<xsd:complexType name="deletealiasResponse">
|
183
|
+
<xsd:sequence>
|
184
|
+
</xsd:sequence>
|
185
|
+
</xsd:complexType>
|
186
|
+
|
187
|
+
<xsd:complexType name="deletedomain">
|
188
|
+
<xsd:sequence>
|
189
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
190
|
+
<xsd:element name="domainNameOrId" type="xsd:string" />
|
191
|
+
</xsd:sequence>
|
192
|
+
</xsd:complexType>
|
193
|
+
|
194
|
+
<xsd:complexType name="deletedomainResponse">
|
195
|
+
<xsd:sequence>
|
196
|
+
</xsd:sequence>
|
197
|
+
</xsd:complexType>
|
198
|
+
|
199
|
+
<xsd:complexType name="deleteorg">
|
200
|
+
<xsd:sequence>
|
201
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
202
|
+
<xsd:element name="orgNameOrId" type="xsd:string" />
|
203
|
+
</xsd:sequence>
|
204
|
+
</xsd:complexType>
|
205
|
+
|
206
|
+
<xsd:complexType name="deleteorgResponse">
|
207
|
+
<xsd:sequence>
|
208
|
+
</xsd:sequence>
|
209
|
+
</xsd:complexType>
|
210
|
+
|
211
|
+
<xsd:complexType name="deleteuser">
|
212
|
+
<xsd:sequence>
|
213
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
214
|
+
<xsd:element name="userAddressOrId" type="xsd:string" />
|
215
|
+
</xsd:sequence>
|
216
|
+
</xsd:complexType>
|
217
|
+
|
218
|
+
<xsd:complexType name="deleteuserResponse">
|
219
|
+
<xsd:sequence>
|
220
|
+
</xsd:sequence>
|
221
|
+
</xsd:complexType>
|
222
|
+
|
223
|
+
<xsd:complexType name="displaydomain">
|
224
|
+
<xsd:sequence>
|
225
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
226
|
+
<xsd:element name="domainNameOrId" type="xsd:string" />
|
227
|
+
</xsd:sequence>
|
228
|
+
</xsd:complexType>
|
229
|
+
|
230
|
+
<xsd:complexType name="displaydomainResponse">
|
231
|
+
<xsd:sequence>
|
232
|
+
<xsd:element name="domainRecord" type="tns:domainRecord" />
|
233
|
+
</xsd:sequence>
|
234
|
+
</xsd:complexType>
|
235
|
+
|
236
|
+
<xsd:complexType name="displayorg">
|
237
|
+
<xsd:sequence>
|
238
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
239
|
+
<xsd:element name="orgNameOrId" type="xsd:string" />
|
240
|
+
</xsd:sequence>
|
241
|
+
</xsd:complexType>
|
242
|
+
|
243
|
+
<xsd:complexType name="displayorgResponse">
|
244
|
+
<xsd:sequence>
|
245
|
+
<xsd:element name="orgRecord" type="tns:orgRecord" />
|
246
|
+
</xsd:sequence>
|
247
|
+
</xsd:complexType>
|
248
|
+
|
249
|
+
<xsd:complexType name="displayspool">
|
250
|
+
<xsd:sequence>
|
251
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
252
|
+
<xsd:element name="emailOrgNameOrId" type="xsd:string" />
|
253
|
+
</xsd:sequence>
|
254
|
+
</xsd:complexType>
|
255
|
+
|
256
|
+
<xsd:complexType name="displayspoolResponse">
|
257
|
+
<xsd:sequence>
|
258
|
+
<xsd:element name="spoolRecord" type="tns:spoolRecord" />
|
259
|
+
</xsd:sequence>
|
260
|
+
</xsd:complexType>
|
261
|
+
|
262
|
+
<xsd:complexType name="displayuser">
|
263
|
+
<xsd:sequence>
|
264
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
265
|
+
<xsd:element name="userAddressOrId" type="xsd:string" />
|
266
|
+
</xsd:sequence>
|
267
|
+
</xsd:complexType>
|
268
|
+
|
269
|
+
<xsd:complexType name="displayuserResponse">
|
270
|
+
<xsd:sequence>
|
271
|
+
<xsd:element name="userRecord" type="tns:userRecord" />
|
272
|
+
</xsd:sequence>
|
273
|
+
</xsd:complexType>
|
274
|
+
|
275
|
+
<xsd:complexType name="domainRecord">
|
276
|
+
<xsd:all>
|
277
|
+
<xsd:element name="alias" minOccurs="0" type="xsd:string" />
|
278
|
+
<xsd:element name="aliasedfrom" minOccurs="0" type="xsd:string" />
|
279
|
+
<xsd:element name="aliasedto" minOccurs="0" type="xsd:string" />
|
280
|
+
<xsd:element name="domainid" minOccurs="0" type="xsd:string" />
|
281
|
+
<xsd:element name="domainname" minOccurs="0" type="xsd:string" />
|
282
|
+
<xsd:element name="neworg" minOccurs="0" type="xsd:string" />
|
283
|
+
<xsd:element name="org" minOccurs="0" type="xsd:string" />
|
284
|
+
<xsd:element name="substrip" minOccurs="0" type="xsd:string" />
|
285
|
+
</xsd:all>
|
286
|
+
</xsd:complexType>
|
287
|
+
|
288
|
+
<xsd:complexType name="getorgreport">
|
289
|
+
<xsd:sequence>
|
290
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
291
|
+
<xsd:element name="orgNameOrId" type="xsd:string" />
|
292
|
+
<xsd:element name="args" type="tns:getorgreportargs" />
|
293
|
+
</xsd:sequence>
|
294
|
+
</xsd:complexType>
|
295
|
+
|
296
|
+
<xsd:complexType name="getorgreportResponse">
|
297
|
+
<xsd:sequence>
|
298
|
+
<xsd:element name="report" minOccurs="0" maxOccurs="unbounded" type="tns:orgReportRecord" />
|
299
|
+
</xsd:sequence>
|
300
|
+
</xsd:complexType>
|
301
|
+
|
302
|
+
<xsd:complexType name="getorgreportargs">
|
303
|
+
<xsd:all>
|
304
|
+
<xsd:element name="date" type="xsd:string" />
|
305
|
+
<xsd:element name="report" type="xsd:string" />
|
306
|
+
<xsd:element name="top" minOccurs="0" type="xsd:string" />
|
307
|
+
</xsd:all>
|
308
|
+
</xsd:complexType>
|
309
|
+
|
310
|
+
|
311
|
+
<xsd:complexType name="listdomains">
|
312
|
+
<xsd:sequence>
|
313
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
314
|
+
<xsd:element name="queryString" type="xsd:string" />
|
315
|
+
<xsd:element name="queryParams" type="tns:listdomainsqueryParams" />
|
316
|
+
</xsd:sequence>
|
317
|
+
</xsd:complexType>
|
318
|
+
|
319
|
+
<xsd:complexType name="listdomainsResponse">
|
320
|
+
<xsd:sequence>
|
321
|
+
<xsd:element name="domain" minOccurs="0" maxOccurs="unbounded" type="tns:domainRecord" />
|
322
|
+
</xsd:sequence>
|
323
|
+
</xsd:complexType>
|
324
|
+
|
325
|
+
<xsd:complexType name="listdomainsqueryParams">
|
326
|
+
<xsd:all>
|
327
|
+
<xsd:element name="aliases" minOccurs="0" type="xsd:string" />
|
328
|
+
<xsd:element name="childorgs" minOccurs="0" type="xsd:string" />
|
329
|
+
<xsd:element name="end" minOccurs="0" type="xsd:string" />
|
330
|
+
<xsd:element name="fields" minOccurs="0" type="xsd:string" />
|
331
|
+
<xsd:element name="orgtagqs" minOccurs="0" type="xsd:string" />
|
332
|
+
<xsd:element name="primaryqs" minOccurs="0" type="xsd:string" />
|
333
|
+
<xsd:element name="sort" minOccurs="0" type="xsd:string" />
|
334
|
+
<xsd:element name="start" minOccurs="0" type="xsd:string" />
|
335
|
+
<xsd:element name="targetOrg" minOccurs="0" type="xsd:string" />
|
336
|
+
</xsd:all>
|
337
|
+
</xsd:complexType>
|
338
|
+
|
339
|
+
<xsd:complexType name="listorgs">
|
340
|
+
<xsd:sequence>
|
341
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
342
|
+
<xsd:element name="queryString" type="xsd:string" />
|
343
|
+
<xsd:element name="queryParams" type="tns:listorgsqueryParams" />
|
344
|
+
</xsd:sequence>
|
345
|
+
</xsd:complexType>
|
346
|
+
|
347
|
+
<xsd:complexType name="listorgsResponse">
|
348
|
+
<xsd:sequence>
|
349
|
+
<xsd:element name="org" minOccurs="0" maxOccurs="unbounded" type="tns:orgRecord" />
|
350
|
+
</xsd:sequence>
|
351
|
+
</xsd:complexType>
|
352
|
+
|
353
|
+
<xsd:complexType name="listorgsqueryParams">
|
354
|
+
<xsd:all>
|
355
|
+
<xsd:element name="childorgs" minOccurs="0" type="xsd:string" />
|
356
|
+
<xsd:element name="end" minOccurs="0" type="xsd:string" />
|
357
|
+
<xsd:element name="fields" minOccurs="0" type="xsd:string" />
|
358
|
+
<xsd:element name="orgtag" minOccurs="0" type="xsd:string" />
|
359
|
+
<xsd:element name="sort" minOccurs="0" type="xsd:string" />
|
360
|
+
<xsd:element name="start" minOccurs="0" type="xsd:string" />
|
361
|
+
<xsd:element name="targetOrg" minOccurs="0" type="xsd:string" />
|
362
|
+
</xsd:all>
|
363
|
+
</xsd:complexType>
|
364
|
+
|
365
|
+
<xsd:complexType name="listusers">
|
366
|
+
<xsd:sequence>
|
367
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
368
|
+
<xsd:element name="queryString" type="xsd:string" />
|
369
|
+
<xsd:element name="queryParams" minOccurs="0" type="tns:listusersqueryParams" />
|
370
|
+
</xsd:sequence>
|
371
|
+
</xsd:complexType>
|
372
|
+
|
373
|
+
<xsd:complexType name="listusersResponse">
|
374
|
+
<xsd:sequence>
|
375
|
+
<xsd:element name="user" minOccurs="0" maxOccurs="unbounded" type="tns:userRecord" />
|
376
|
+
</xsd:sequence>
|
377
|
+
</xsd:complexType>
|
378
|
+
|
379
|
+
<xsd:complexType name="listusersqueryParams">
|
380
|
+
<xsd:all>
|
381
|
+
<xsd:element name="aliases" minOccurs="0" type="xsd:string" />
|
382
|
+
<xsd:element name="childorgs" minOccurs="0" type="xsd:string" />
|
383
|
+
<xsd:element name="end" minOccurs="0" type="xsd:string" />
|
384
|
+
<xsd:element name="fields" minOccurs="0" type="xsd:string" />
|
385
|
+
<xsd:element name="orgtagqs" minOccurs="0" type="xsd:string" />
|
386
|
+
<xsd:element name="primaryqs" minOccurs="0" type="xsd:string" />
|
387
|
+
<xsd:element name="sort" minOccurs="0" type="xsd:string" />
|
388
|
+
<xsd:element name="start" minOccurs="0" type="xsd:string" />
|
389
|
+
<xsd:element name="targetOrg" minOccurs="0" type="xsd:string" />
|
390
|
+
<xsd:element name="type_of_user" minOccurs="0" type="xsd:string" />
|
391
|
+
</xsd:all>
|
392
|
+
</xsd:complexType>
|
393
|
+
|
394
|
+
<xsd:complexType name="modifydomain">
|
395
|
+
<xsd:sequence>
|
396
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
397
|
+
<xsd:element name="domainNameOrId" type="xsd:string" />
|
398
|
+
<xsd:element name="domainModifications" type="tns:domainRecord" />
|
399
|
+
</xsd:sequence>
|
400
|
+
</xsd:complexType>
|
401
|
+
|
402
|
+
<xsd:complexType name="modifydomainResponse">
|
403
|
+
<xsd:sequence>
|
404
|
+
</xsd:sequence>
|
405
|
+
</xsd:complexType>
|
406
|
+
|
407
|
+
<xsd:complexType name="modifyorg">
|
408
|
+
<xsd:sequence>
|
409
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
410
|
+
<xsd:element name="orgNameOrId" type="xsd:string" />
|
411
|
+
<xsd:element name="orgModifications" type="tns:orgRecord" />
|
412
|
+
</xsd:sequence>
|
413
|
+
</xsd:complexType>
|
414
|
+
|
415
|
+
<xsd:complexType name="modifyorgResponse">
|
416
|
+
<xsd:sequence>
|
417
|
+
</xsd:sequence>
|
418
|
+
</xsd:complexType>
|
419
|
+
|
420
|
+
<xsd:complexType name="modifyuser">
|
421
|
+
<xsd:sequence>
|
422
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
423
|
+
<xsd:element name="userAddressOrId" type="xsd:string" />
|
424
|
+
<xsd:element name="userModifications" type="tns:userRecord" />
|
425
|
+
</xsd:sequence>
|
426
|
+
</xsd:complexType>
|
427
|
+
|
428
|
+
<xsd:complexType name="modifyuserResponse">
|
429
|
+
<xsd:sequence>
|
430
|
+
</xsd:sequence>
|
431
|
+
</xsd:complexType>
|
432
|
+
|
433
|
+
<xsd:complexType name="orgRecord">
|
434
|
+
<xsd:all>
|
435
|
+
<xsd:element name="approved_senders" minOccurs="0" type="xsd:string" />
|
436
|
+
<xsd:element name="archive" minOccurs="0" type="xsd:string" />
|
437
|
+
<xsd:element name="async_bounce" minOccurs="0" type="xsd:string" />
|
438
|
+
<xsd:element name="at_notify_on" minOccurs="0" type="xsd:string" />
|
439
|
+
<xsd:element name="authentication_data" minOccurs="0" type="xsd:string" />
|
440
|
+
<xsd:element name="authentication_type" minOccurs="0" type="xsd:string" />
|
441
|
+
<xsd:element name="autocreate_smtp" minOccurs="0" type="xsd:string" />
|
442
|
+
<xsd:element name="autocreate_web" minOccurs="0" type="xsd:string" />
|
443
|
+
<xsd:element name="blatant_spam" minOccurs="0" type="xsd:string" />
|
444
|
+
<xsd:element name="blocked_senders" minOccurs="0" type="xsd:string" />
|
445
|
+
<xsd:element name="bounce_fragments" minOccurs="0" type="xsd:string" />
|
446
|
+
<xsd:element name="company_name" minOccurs="0" type="xsd:string" />
|
447
|
+
<xsd:element name="create_method" minOccurs="0" type="xsd:string" />
|
448
|
+
<xsd:element name="created_date" minOccurs="0" type="xsd:string" />
|
449
|
+
<xsd:element name="creator" minOccurs="0" type="xsd:string" />
|
450
|
+
<xsd:element name="default_message_limit" minOccurs="0" type="xsd:string" />
|
451
|
+
<xsd:element name="default_user" minOccurs="0" type="xsd:string" />
|
452
|
+
<xsd:element name="disable_first_spam" minOccurs="0" type="xsd:string" />
|
453
|
+
<xsd:element name="disposition_virus" minOccurs="0" type="xsd:string" />
|
454
|
+
<xsd:element name="ext_encrypt" minOccurs="0" type="xsd:string" />
|
455
|
+
<xsd:element name="footer_on" minOccurs="0" type="xsd:string" />
|
456
|
+
<xsd:element name="iid" minOccurs="0" type="xsd:string" />
|
457
|
+
<xsd:element name="im_enable" minOccurs="0" type="xsd:string" />
|
458
|
+
<xsd:element name="im_external_enable" minOccurs="0" type="xsd:string" />
|
459
|
+
<xsd:element name="im_proto_enable" minOccurs="0" type="xsd:string" />
|
460
|
+
<xsd:element name="is_email_config" minOccurs="0" type="xsd:string" />
|
461
|
+
<xsd:element name="lang_locale" minOccurs="0" type="xsd:string" />
|
462
|
+
<xsd:element name="lastmod_date" minOccurs="0" type="xsd:string" />
|
463
|
+
<xsd:element name="max_message_size" minOccurs="0" type="xsd:string" />
|
464
|
+
<xsd:element name="ndr" minOccurs="0" type="xsd:string" />
|
465
|
+
<xsd:element name="non_account_bounce" minOccurs="0" type="xsd:string" />
|
466
|
+
<xsd:element name="non_account_virus_scan" minOccurs="0" type="xsd:string" />
|
467
|
+
<xsd:element name="orgname" minOccurs="0" type="xsd:string" />
|
468
|
+
<xsd:element name="out_at_notify_on" minOccurs="0" type="xsd:string" />
|
469
|
+
<xsd:element name="outbound_max_message_size" minOccurs="0" type="xsd:string" />
|
470
|
+
<xsd:element name="outbound_virus" minOccurs="0" type="xsd:string" />
|
471
|
+
<xsd:element name="outbound_virus_disposition" minOccurs="0" type="xsd:string" />
|
472
|
+
<xsd:element name="parent_org" minOccurs="0" type="xsd:string" />
|
473
|
+
<xsd:element name="qsum_actionable" minOccurs="0" type="xsd:string" />
|
474
|
+
<xsd:element name="qsum_enable" minOccurs="0" type="xsd:string" />
|
475
|
+
<xsd:element name="qtine_redir_atq" minOccurs="0" type="xsd:string" />
|
476
|
+
<xsd:element name="qtine_redir_ndr" minOccurs="0" type="xsd:string" />
|
477
|
+
<xsd:element name="qtine_redir_out_atq" minOccurs="0" type="xsd:string" />
|
478
|
+
<xsd:element name="qtine_redir_out_virus" minOccurs="0" type="xsd:string" />
|
479
|
+
<xsd:element name="qtine_redir_spam" minOccurs="0" type="xsd:string" />
|
480
|
+
<xsd:element name="qtine_redir_virus" minOccurs="0" type="xsd:string" />
|
481
|
+
<xsd:element name="quarantine_links" minOccurs="0" type="xsd:string" />
|
482
|
+
<xsd:element name="quarsum_links" minOccurs="0" type="xsd:string" />
|
483
|
+
<xsd:element name="remotecmd_secret" minOccurs="0" type="xsd:string" />
|
484
|
+
<xsd:element name="spam_notify_on" minOccurs="0" type="xsd:string" />
|
485
|
+
<xsd:element name="support_contact" minOccurs="0" type="xsd:string" />
|
486
|
+
<xsd:element name="tagonly_spam" minOccurs="0" type="xsd:string" />
|
487
|
+
<xsd:element name="timezone" minOccurs="0" type="xsd:string" />
|
488
|
+
<xsd:element name="tls_notify_admin" minOccurs="0" type="xsd:string" />
|
489
|
+
<xsd:element name="tls_notify_on" minOccurs="0" type="xsd:string" />
|
490
|
+
<xsd:element name="virus_clean" minOccurs="0" type="xsd:string" />
|
491
|
+
<xsd:element name="virus_notify" minOccurs="0" type="xsd:string" />
|
492
|
+
<xsd:element name="welcome_on" minOccurs="0" type="xsd:string" />
|
493
|
+
<xsd:element name="zero_hour_notify_on" minOccurs="0" type="xsd:string" />
|
494
|
+
<xsd:element name="zero_hour_scan" minOccurs="0" type="xsd:string" />
|
495
|
+
<xsd:element name="zero_hour_waiver" minOccurs="0" type="xsd:string" />
|
496
|
+
</xsd:all>
|
497
|
+
</xsd:complexType>
|
498
|
+
|
499
|
+
<xsd:complexType name="orgReportRecord">
|
500
|
+
<xsd:all>
|
501
|
+
<xsd:element name="acc_messages" minOccurs="0" type="xsd:string" />
|
502
|
+
<xsd:element name="account" minOccurs="0" type="xsd:string" />
|
503
|
+
<xsd:element name="bad_isp" minOccurs="0" type="xsd:string" />
|
504
|
+
<xsd:element name="bad_sender" minOccurs="0" type="xsd:string" />
|
505
|
+
<xsd:element name="bulk" minOccurs="0" type="xsd:string" />
|
506
|
+
<xsd:element name="bytes" minOccurs="0" type="xsd:string" />
|
507
|
+
<xsd:element name="clean_failures" minOccurs="0" type="xsd:string" />
|
508
|
+
<xsd:element name="cleanings" minOccurs="0" type="xsd:string" />
|
509
|
+
<xsd:element name="commerce" minOccurs="0" type="xsd:string" />
|
510
|
+
<xsd:element name="customerid" minOccurs="0" type="xsd:string" />
|
511
|
+
<xsd:element name="customername" minOccurs="0" type="xsd:string" />
|
512
|
+
<xsd:element name="deliveries" minOccurs="0" type="xsd:string" />
|
513
|
+
<xsd:element name="inf_deliveries" minOccurs="0" type="xsd:string" />
|
514
|
+
<xsd:element name="messages" minOccurs="0" type="xsd:string" />
|
515
|
+
<xsd:element name="mmf" minOccurs="0" type="xsd:string" />
|
516
|
+
<xsd:element name="naughty" minOccurs="0" type="xsd:string" />
|
517
|
+
<xsd:element name="num_bh_messages" minOccurs="0" type="xsd:string" />
|
518
|
+
<xsd:element name="num_bytes" minOccurs="0" type="xsd:string" />
|
519
|
+
<xsd:element name="num_f_messages" minOccurs="0" type="xsd:string" />
|
520
|
+
<xsd:element name="num_messages" minOccurs="0" type="xsd:string" />
|
521
|
+
<xsd:element name="num_q_messages" minOccurs="0" type="xsd:string" />
|
522
|
+
<xsd:element name="num_spams" minOccurs="0" type="xsd:string" />
|
523
|
+
<xsd:element name="num_viruses" minOccurs="0" type="xsd:string" />
|
524
|
+
<xsd:element name="pct_bh_bytes" minOccurs="0" type="xsd:string" />
|
525
|
+
<xsd:element name="pct_bh_messages" minOccurs="0" type="xsd:string" />
|
526
|
+
<xsd:element name="pct_f_bytes" minOccurs="0" type="xsd:string" />
|
527
|
+
<xsd:element name="pct_f_messages" minOccurs="0" type="xsd:string" />
|
528
|
+
<xsd:element name="pct_q_bytes" minOccurs="0" type="xsd:string" />
|
529
|
+
<xsd:element name="pct_q_messages" minOccurs="0" type="xsd:string" />
|
530
|
+
<xsd:element name="productid" minOccurs="0" type="xsd:string" />
|
531
|
+
<xsd:element name="racial" minOccurs="0" type="xsd:string" />
|
532
|
+
<xsd:element name="recip" minOccurs="0" type="xsd:string" />
|
533
|
+
<xsd:element name="sellerid" minOccurs="0" type="xsd:string" />
|
534
|
+
<xsd:element name="ssb" minOccurs="0" type="xsd:string" />
|
535
|
+
<xsd:element name="stored_size" minOccurs="0" type="xsd:string" />
|
536
|
+
<xsd:element name="users" minOccurs="0" type="xsd:string" />
|
537
|
+
</xsd:all>
|
538
|
+
</xsd:complexType>
|
539
|
+
|
540
|
+
<xsd:complexType name="spoolRecord">
|
541
|
+
<xsd:all>
|
542
|
+
<xsd:element name="auto_unspool" minOccurs="0" type="xsd:string" />
|
543
|
+
<xsd:element name="despool_max_connections" minOccurs="0" type="xsd:string" />
|
544
|
+
<xsd:element name="duration" minOccurs="0" type="xsd:string" />
|
545
|
+
<xsd:element name="org" minOccurs="0" type="xsd:string" />
|
546
|
+
<xsd:element name="quota" minOccurs="0" type="xsd:string" />
|
547
|
+
<xsd:element name="spool_delay" minOccurs="0" type="xsd:string" />
|
548
|
+
<xsd:element name="spool_mech" minOccurs="0" type="xsd:string" />
|
549
|
+
<xsd:element name="status" minOccurs="0" type="xsd:string" />
|
550
|
+
<xsd:element name="used_pct" minOccurs="0" type="xsd:string" />
|
551
|
+
<xsd:element name="used_size" minOccurs="0" type="xsd:string" />
|
552
|
+
</xsd:all>
|
553
|
+
</xsd:complexType>
|
554
|
+
|
555
|
+
|
556
|
+
<xsd:complexType name="suspenduser">
|
557
|
+
<xsd:sequence>
|
558
|
+
<xsd:element name="authElem" type="tns:authElem" />
|
559
|
+
<xsd:element name="userAddressOrId" type="xsd:string" />
|
560
|
+
<xsd:element name="optArgStr1" minOccurs="0" type="xsd:string" />
|
561
|
+
<xsd:element name="optArgStr2" minOccurs="0" type="xsd:string" />
|
562
|
+
<xsd:element name="optArgStr3" minOccurs="0" type="xsd:string" />
|
563
|
+
</xsd:sequence>
|
564
|
+
</xsd:complexType>
|
565
|
+
|
566
|
+
<xsd:complexType name="suspenduserResponse">
|
567
|
+
<xsd:sequence>
|
568
|
+
</xsd:sequence>
|
569
|
+
</xsd:complexType>
|
570
|
+
|
571
|
+
<xsd:complexType name="test">
|
572
|
+
<xsd:sequence>
|
573
|
+
<xsd:element name="should_work" type="xsd:boolean" />
|
574
|
+
</xsd:sequence>
|
575
|
+
</xsd:complexType>
|
576
|
+
|
577
|
+
<xsd:complexType name="testResponse">
|
578
|
+
<xsd:sequence>
|
579
|
+
<xsd:element name="confirmation_message" type="xsd:string" />
|
580
|
+
</xsd:sequence>
|
581
|
+
</xsd:complexType>
|
582
|
+
|
583
|
+
<xsd:complexType name="userRecord">
|
584
|
+
<xsd:all>
|
585
|
+
<xsd:element name="active" minOccurs="0" type="xsd:string" />
|
586
|
+
<xsd:element name="address" minOccurs="0" type="xsd:string" />
|
587
|
+
<xsd:element name="approved_recipients" minOccurs="0" type="xsd:string" />
|
588
|
+
<xsd:element name="approved_senders" minOccurs="0" type="xsd:string" />
|
589
|
+
<xsd:element name="blocked_senders" minOccurs="0" type="xsd:string" />
|
590
|
+
<xsd:element name="create_method" minOccurs="0" type="xsd:string" />
|
591
|
+
<xsd:element name="created_date" minOccurs="0" type="xsd:string" />
|
592
|
+
<xsd:element name="ext_encrypt" minOccurs="0" type="xsd:string" />
|
593
|
+
<xsd:element name="filter_adult" minOccurs="0" type="xsd:string" />
|
594
|
+
<xsd:element name="filter_bulk" minOccurs="0" type="xsd:string" />
|
595
|
+
<xsd:element name="filter_getrich" minOccurs="0" type="xsd:string" />
|
596
|
+
<xsd:element name="filter_offers" minOccurs="0" type="xsd:string" />
|
597
|
+
<xsd:element name="filter_racial" minOccurs="0" type="xsd:string" />
|
598
|
+
<xsd:element name="initial_password" minOccurs="0" type="xsd:string" />
|
599
|
+
<xsd:element name="junkmail_filter" minOccurs="0" type="xsd:string" />
|
600
|
+
<xsd:element name="lang_locale" minOccurs="0" type="xsd:string" />
|
601
|
+
<xsd:element name="lastmod_date" minOccurs="0" type="xsd:string" />
|
602
|
+
<xsd:element name="message_count" minOccurs="0" type="xsd:string" />
|
603
|
+
<xsd:element name="message_limit" minOccurs="0" type="xsd:string" />
|
604
|
+
<xsd:element name="message_limited" minOccurs="0" type="xsd:string" />
|
605
|
+
<xsd:element name="notice_address" minOccurs="0" type="xsd:string" />
|
606
|
+
<xsd:element name="orgid" minOccurs="0" type="xsd:string" />
|
607
|
+
<xsd:element name="orgtag" minOccurs="0" type="xsd:string" />
|
608
|
+
<xsd:element name="password" minOccurs="0" type="xsd:string" />
|
609
|
+
<xsd:element name="timezone" minOccurs="0" type="xsd:string" />
|
610
|
+
<xsd:element name="user_id" minOccurs="0" type="xsd:string" />
|
611
|
+
<xsd:element name="virus_notify" minOccurs="0" type="xsd:string" />
|
612
|
+
<xsd:element name="virus_state" minOccurs="0" type="xsd:string" />
|
613
|
+
<xsd:element name="weblocked" minOccurs="0" type="xsd:string" />
|
614
|
+
<xsd:element name="welcome_count" minOccurs="0" type="xsd:string" />
|
615
|
+
<xsd:element name="wireless_state" minOccurs="0" type="xsd:string" />
|
616
|
+
</xsd:all>
|
617
|
+
</xsd:complexType>
|
618
|
+
|
619
|
+
|
620
|
+
|
621
|
+
<xsd:element name="AdminBlockException" type="tns:AdminBlockException" />
|
622
|
+
|
623
|
+
<xsd:element name="AuthenticationException" type="tns:AuthenticationException" />
|
624
|
+
|
625
|
+
<xsd:element name="BatchException" type="tns:BatchException" />
|
626
|
+
|
627
|
+
<xsd:element name="InternalException" type="tns:InternalException" />
|
628
|
+
|
629
|
+
<xsd:element name="InvalidValueException" type="tns:InvalidValueException" />
|
630
|
+
|
631
|
+
<xsd:element name="MalformedKeyException" type="tns:MalformedKeyException" />
|
632
|
+
|
633
|
+
<xsd:element name="MissingElementException" type="tns:MissingElementException" />
|
634
|
+
|
635
|
+
<xsd:element name="NoSuchKeyException" type="tns:NoSuchKeyException" />
|
636
|
+
|
637
|
+
<xsd:element name="StatusException" type="tns:StatusException" />
|
638
|
+
|
639
|
+
<xsd:element name="UnknownInternalException" type="tns:UnknownInternalException" />
|
640
|
+
|
641
|
+
<xsd:element name="addalias" type="tns:addalias" />
|
642
|
+
|
643
|
+
<xsd:element name="addaliasResponse" type="tns:addaliasResponse" />
|
644
|
+
|
645
|
+
<xsd:element name="adddomain" type="tns:adddomain" />
|
646
|
+
|
647
|
+
<xsd:element name="adddomainResponse" type="tns:adddomainResponse" />
|
648
|
+
|
649
|
+
<xsd:element name="addorg" type="tns:addorg" />
|
650
|
+
|
651
|
+
<xsd:element name="addorgResponse" type="tns:addorgResponse" />
|
652
|
+
|
653
|
+
<xsd:element name="adduser" type="tns:adduser" />
|
654
|
+
|
655
|
+
<xsd:element name="adduserResponse" type="tns:adduserResponse" />
|
656
|
+
|
657
|
+
<xsd:element name="checkauth" type="tns:checkauth" />
|
658
|
+
|
659
|
+
<xsd:element name="checkauthResponse" type="tns:checkauthResponse" />
|
660
|
+
|
661
|
+
<xsd:element name="deletealias" type="tns:deletealias" />
|
662
|
+
|
663
|
+
<xsd:element name="deletealiasResponse" type="tns:deletealiasResponse" />
|
664
|
+
|
665
|
+
<xsd:element name="deletedomain" type="tns:deletedomain" />
|
666
|
+
|
667
|
+
<xsd:element name="deletedomainResponse" type="tns:deletedomainResponse" />
|
668
|
+
|
669
|
+
<xsd:element name="deleteorg" type="tns:deleteorg" />
|
670
|
+
|
671
|
+
<xsd:element name="deleteorgResponse" type="tns:deleteorgResponse" />
|
672
|
+
|
673
|
+
<xsd:element name="deleteuser" type="tns:deleteuser" />
|
674
|
+
|
675
|
+
<xsd:element name="deleteuserResponse" type="tns:deleteuserResponse" />
|
676
|
+
|
677
|
+
<xsd:element name="displaydomain" type="tns:displaydomain" />
|
678
|
+
|
679
|
+
<xsd:element name="displaydomainResponse" type="tns:displaydomainResponse" />
|
680
|
+
|
681
|
+
<xsd:element name="displayorg" type="tns:displayorg" />
|
682
|
+
|
683
|
+
<xsd:element name="displayorgResponse" type="tns:displayorgResponse" />
|
684
|
+
|
685
|
+
<xsd:element name="displayspool" type="tns:displayspool" />
|
686
|
+
|
687
|
+
<xsd:element name="displayspoolResponse" type="tns:displayspoolResponse" />
|
688
|
+
|
689
|
+
<xsd:element name="displayuser" type="tns:displayuser" />
|
690
|
+
|
691
|
+
<xsd:element name="displayuserResponse" type="tns:displayuserResponse" />
|
692
|
+
|
693
|
+
<xsd:element name="getorgreport" type="tns:getorgreport" />
|
694
|
+
|
695
|
+
<xsd:element name="getorgreportResponse" type="tns:getorgreportResponse" />
|
696
|
+
|
697
|
+
<xsd:element name="listdomains" type="tns:listdomains" />
|
698
|
+
|
699
|
+
<xsd:element name="listdomainsResponse" type="tns:listdomainsResponse" />
|
700
|
+
|
701
|
+
<xsd:element name="listorgs" type="tns:listorgs" />
|
702
|
+
|
703
|
+
<xsd:element name="listorgsResponse" type="tns:listorgsResponse" />
|
704
|
+
|
705
|
+
<xsd:element name="listusers" type="tns:listusers" />
|
706
|
+
|
707
|
+
<xsd:element name="listusersResponse" type="tns:listusersResponse" />
|
708
|
+
|
709
|
+
<xsd:element name="modifydomain" type="tns:modifydomain" />
|
710
|
+
|
711
|
+
<xsd:element name="modifydomainResponse" type="tns:modifydomainResponse" />
|
712
|
+
|
713
|
+
<xsd:element name="modifyorg" type="tns:modifyorg" />
|
714
|
+
|
715
|
+
<xsd:element name="modifyorgResponse" type="tns:modifyorgResponse" />
|
716
|
+
|
717
|
+
<xsd:element name="modifyuser" type="tns:modifyuser" />
|
718
|
+
|
719
|
+
<xsd:element name="modifyuserResponse" type="tns:modifyuserResponse" />
|
720
|
+
|
721
|
+
<xsd:element name="suspenduser" type="tns:suspenduser" />
|
722
|
+
|
723
|
+
<xsd:element name="suspenduserResponse" type="tns:suspenduserResponse" />
|
724
|
+
|
725
|
+
<xsd:element name="test" type="tns:test" />
|
726
|
+
|
727
|
+
<xsd:element name="testResponse" type="tns:testResponse" />
|
728
|
+
|
729
|
+
|
730
|
+
</schema>
|
731
|
+
</wsdl:types>
|
732
|
+
|
733
|
+
<wsdl:message name="StatusException">
|
734
|
+
<wsdl:part name="fault" element="tns:StatusException"/>
|
735
|
+
</wsdl:message>
|
736
|
+
|
737
|
+
|
738
|
+
<wsdl:message name="BatchException">
|
739
|
+
<wsdl:part name="fault" element="tns:BatchException"/>
|
740
|
+
</wsdl:message>
|
741
|
+
|
742
|
+
|
743
|
+
<wsdl:message name="InternalException">
|
744
|
+
<wsdl:part name="fault" element="tns:InternalException"/>
|
745
|
+
</wsdl:message>
|
746
|
+
|
747
|
+
|
748
|
+
<wsdl:message name="UnknownInternalException">
|
749
|
+
<wsdl:part name="fault" element="tns:UnknownInternalException"/>
|
750
|
+
</wsdl:message>
|
751
|
+
|
752
|
+
|
753
|
+
<wsdl:message name="MissingElementException">
|
754
|
+
<wsdl:part name="fault" element="tns:MissingElementException"/>
|
755
|
+
</wsdl:message>
|
756
|
+
|
757
|
+
|
758
|
+
<wsdl:message name="InvalidValueException">
|
759
|
+
<wsdl:part name="fault" element="tns:InvalidValueException"/>
|
760
|
+
</wsdl:message>
|
761
|
+
|
762
|
+
|
763
|
+
<wsdl:message name="AuthenticationException">
|
764
|
+
<wsdl:part name="fault" element="tns:AuthenticationException"/>
|
765
|
+
</wsdl:message>
|
766
|
+
|
767
|
+
|
768
|
+
<wsdl:message name="MalformedKeyException">
|
769
|
+
<wsdl:part name="fault" element="tns:MalformedKeyException"/>
|
770
|
+
</wsdl:message>
|
771
|
+
|
772
|
+
|
773
|
+
<wsdl:message name="NoSuchKeyException">
|
774
|
+
<wsdl:part name="fault" element="tns:NoSuchKeyException"/>
|
775
|
+
</wsdl:message>
|
776
|
+
|
777
|
+
|
778
|
+
<wsdl:message name="AdminBlockException">
|
779
|
+
<wsdl:part name="fault" element="tns:AdminBlockException"/>
|
780
|
+
</wsdl:message>
|
781
|
+
|
782
|
+
|
783
|
+
<wsdl:message name="test">
|
784
|
+
<wsdl:part name="parameters" element="tns:test"/>
|
785
|
+
</wsdl:message>
|
786
|
+
|
787
|
+
|
788
|
+
<wsdl:message name="testResponse">
|
789
|
+
<wsdl:part name="parameters" element="tns:testResponse"/>
|
790
|
+
</wsdl:message>
|
791
|
+
|
792
|
+
|
793
|
+
<wsdl:message name="checkauth">
|
794
|
+
<wsdl:part name="parameters" element="tns:checkauth"/>
|
795
|
+
</wsdl:message>
|
796
|
+
|
797
|
+
|
798
|
+
<wsdl:message name="checkauthResponse">
|
799
|
+
<wsdl:part name="parameters" element="tns:checkauthResponse"/>
|
800
|
+
</wsdl:message>
|
801
|
+
|
802
|
+
|
803
|
+
<wsdl:message name="addalias">
|
804
|
+
<wsdl:part name="parameters" element="tns:addalias"/>
|
805
|
+
</wsdl:message>
|
806
|
+
|
807
|
+
|
808
|
+
<wsdl:message name="addaliasResponse">
|
809
|
+
<wsdl:part name="parameters" element="tns:addaliasResponse"/>
|
810
|
+
</wsdl:message>
|
811
|
+
|
812
|
+
|
813
|
+
<wsdl:message name="adddomain">
|
814
|
+
<wsdl:part name="parameters" element="tns:adddomain"/>
|
815
|
+
</wsdl:message>
|
816
|
+
|
817
|
+
|
818
|
+
<wsdl:message name="adddomainResponse">
|
819
|
+
<wsdl:part name="parameters" element="tns:adddomainResponse"/>
|
820
|
+
</wsdl:message>
|
821
|
+
|
822
|
+
|
823
|
+
<wsdl:message name="addorg">
|
824
|
+
<wsdl:part name="parameters" element="tns:addorg"/>
|
825
|
+
</wsdl:message>
|
826
|
+
|
827
|
+
|
828
|
+
<wsdl:message name="addorgResponse">
|
829
|
+
<wsdl:part name="parameters" element="tns:addorgResponse"/>
|
830
|
+
</wsdl:message>
|
831
|
+
|
832
|
+
|
833
|
+
<wsdl:message name="adduser">
|
834
|
+
<wsdl:part name="parameters" element="tns:adduser"/>
|
835
|
+
</wsdl:message>
|
836
|
+
|
837
|
+
|
838
|
+
<wsdl:message name="adduserResponse">
|
839
|
+
<wsdl:part name="parameters" element="tns:adduserResponse"/>
|
840
|
+
</wsdl:message>
|
841
|
+
|
842
|
+
|
843
|
+
<wsdl:message name="deletealias">
|
844
|
+
<wsdl:part name="parameters" element="tns:deletealias"/>
|
845
|
+
</wsdl:message>
|
846
|
+
|
847
|
+
|
848
|
+
<wsdl:message name="deletealiasResponse">
|
849
|
+
<wsdl:part name="parameters" element="tns:deletealiasResponse"/>
|
850
|
+
</wsdl:message>
|
851
|
+
|
852
|
+
|
853
|
+
<wsdl:message name="deletedomain">
|
854
|
+
<wsdl:part name="parameters" element="tns:deletedomain"/>
|
855
|
+
</wsdl:message>
|
856
|
+
|
857
|
+
|
858
|
+
<wsdl:message name="deletedomainResponse">
|
859
|
+
<wsdl:part name="parameters" element="tns:deletedomainResponse"/>
|
860
|
+
</wsdl:message>
|
861
|
+
|
862
|
+
|
863
|
+
<wsdl:message name="deleteorg">
|
864
|
+
<wsdl:part name="parameters" element="tns:deleteorg"/>
|
865
|
+
</wsdl:message>
|
866
|
+
|
867
|
+
|
868
|
+
<wsdl:message name="deleteorgResponse">
|
869
|
+
<wsdl:part name="parameters" element="tns:deleteorgResponse"/>
|
870
|
+
</wsdl:message>
|
871
|
+
|
872
|
+
|
873
|
+
<wsdl:message name="deleteuser">
|
874
|
+
<wsdl:part name="parameters" element="tns:deleteuser"/>
|
875
|
+
</wsdl:message>
|
876
|
+
|
877
|
+
|
878
|
+
<wsdl:message name="deleteuserResponse">
|
879
|
+
<wsdl:part name="parameters" element="tns:deleteuserResponse"/>
|
880
|
+
</wsdl:message>
|
881
|
+
|
882
|
+
|
883
|
+
<wsdl:message name="displaydomain">
|
884
|
+
<wsdl:part name="parameters" element="tns:displaydomain"/>
|
885
|
+
</wsdl:message>
|
886
|
+
|
887
|
+
|
888
|
+
<wsdl:message name="displaydomainResponse">
|
889
|
+
<wsdl:part name="parameters" element="tns:displaydomainResponse"/>
|
890
|
+
</wsdl:message>
|
891
|
+
|
892
|
+
|
893
|
+
<wsdl:message name="displayorg">
|
894
|
+
<wsdl:part name="parameters" element="tns:displayorg"/>
|
895
|
+
</wsdl:message>
|
896
|
+
|
897
|
+
|
898
|
+
<wsdl:message name="displayorgResponse">
|
899
|
+
<wsdl:part name="parameters" element="tns:displayorgResponse"/>
|
900
|
+
</wsdl:message>
|
901
|
+
|
902
|
+
|
903
|
+
<wsdl:message name="displayspool">
|
904
|
+
<wsdl:part name="parameters" element="tns:displayspool"/>
|
905
|
+
</wsdl:message>
|
906
|
+
|
907
|
+
|
908
|
+
<wsdl:message name="displayspoolResponse">
|
909
|
+
<wsdl:part name="parameters" element="tns:displayspoolResponse"/>
|
910
|
+
</wsdl:message>
|
911
|
+
|
912
|
+
|
913
|
+
<wsdl:message name="displayuser">
|
914
|
+
<wsdl:part name="parameters" element="tns:displayuser"/>
|
915
|
+
</wsdl:message>
|
916
|
+
|
917
|
+
|
918
|
+
<wsdl:message name="displayuserResponse">
|
919
|
+
<wsdl:part name="parameters" element="tns:displayuserResponse"/>
|
920
|
+
</wsdl:message>
|
921
|
+
|
922
|
+
|
923
|
+
<wsdl:message name="getorgreport">
|
924
|
+
<wsdl:part name="parameters" element="tns:getorgreport"/>
|
925
|
+
</wsdl:message>
|
926
|
+
|
927
|
+
|
928
|
+
<wsdl:message name="getorgreportResponse">
|
929
|
+
<wsdl:part name="parameters" element="tns:getorgreportResponse"/>
|
930
|
+
</wsdl:message>
|
931
|
+
|
932
|
+
|
933
|
+
<wsdl:message name="listdomains">
|
934
|
+
<wsdl:part name="parameters" element="tns:listdomains"/>
|
935
|
+
</wsdl:message>
|
936
|
+
|
937
|
+
|
938
|
+
<wsdl:message name="listdomainsResponse">
|
939
|
+
<wsdl:part name="parameters" element="tns:listdomainsResponse"/>
|
940
|
+
</wsdl:message>
|
941
|
+
|
942
|
+
|
943
|
+
<wsdl:message name="listorgs">
|
944
|
+
<wsdl:part name="parameters" element="tns:listorgs"/>
|
945
|
+
</wsdl:message>
|
946
|
+
|
947
|
+
|
948
|
+
<wsdl:message name="listorgsResponse">
|
949
|
+
<wsdl:part name="parameters" element="tns:listorgsResponse"/>
|
950
|
+
</wsdl:message>
|
951
|
+
|
952
|
+
|
953
|
+
<wsdl:message name="listusers">
|
954
|
+
<wsdl:part name="parameters" element="tns:listusers"/>
|
955
|
+
</wsdl:message>
|
956
|
+
|
957
|
+
|
958
|
+
<wsdl:message name="listusersResponse">
|
959
|
+
<wsdl:part name="parameters" element="tns:listusersResponse"/>
|
960
|
+
</wsdl:message>
|
961
|
+
|
962
|
+
|
963
|
+
<wsdl:message name="modifydomain">
|
964
|
+
<wsdl:part name="parameters" element="tns:modifydomain"/>
|
965
|
+
</wsdl:message>
|
966
|
+
|
967
|
+
|
968
|
+
<wsdl:message name="modifydomainResponse">
|
969
|
+
<wsdl:part name="parameters" element="tns:modifydomainResponse"/>
|
970
|
+
</wsdl:message>
|
971
|
+
|
972
|
+
|
973
|
+
<wsdl:message name="modifyorg">
|
974
|
+
<wsdl:part name="parameters" element="tns:modifyorg"/>
|
975
|
+
</wsdl:message>
|
976
|
+
|
977
|
+
|
978
|
+
<wsdl:message name="modifyorgResponse">
|
979
|
+
<wsdl:part name="parameters" element="tns:modifyorgResponse"/>
|
980
|
+
</wsdl:message>
|
981
|
+
|
982
|
+
|
983
|
+
<wsdl:message name="modifyuser">
|
984
|
+
<wsdl:part name="parameters" element="tns:modifyuser"/>
|
985
|
+
</wsdl:message>
|
986
|
+
|
987
|
+
|
988
|
+
<wsdl:message name="modifyuserResponse">
|
989
|
+
<wsdl:part name="parameters" element="tns:modifyuserResponse"/>
|
990
|
+
</wsdl:message>
|
991
|
+
|
992
|
+
|
993
|
+
<wsdl:message name="suspenduser">
|
994
|
+
<wsdl:part name="parameters" element="tns:suspenduser"/>
|
995
|
+
</wsdl:message>
|
996
|
+
|
997
|
+
|
998
|
+
<wsdl:message name="suspenduserResponse">
|
999
|
+
<wsdl:part name="parameters" element="tns:suspenduserResponse"/>
|
1000
|
+
</wsdl:message>
|
1001
|
+
|
1002
|
+
<wsdl:portType name="AutomatedBatchPort">
|
1003
|
+
|
1004
|
+
<wsdl:operation name="test">
|
1005
|
+
<wsdl:documentation>Performs simple connection level round-trip testing.</wsdl:documentation>
|
1006
|
+
<wsdl:input message="tns:test" name="test"/>
|
1007
|
+
<wsdl:output message="tns:testResponse" name="testResponse"/>
|
1008
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1009
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1010
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1011
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1012
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1013
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1014
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1015
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1016
|
+
<wsdl:fault name="StatusException" message="tns:StatusException"/>
|
1017
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1018
|
+
</wsdl:operation>
|
1019
|
+
|
1020
|
+
|
1021
|
+
<wsdl:operation name="checkauth">
|
1022
|
+
<wsdl:documentation>Verifies the specified authentication credentials without the need to call another operation.</wsdl:documentation>
|
1023
|
+
<wsdl:input message="tns:checkauth" name="checkauth"/>
|
1024
|
+
<wsdl:output message="tns:checkauthResponse" name="checkauthResponse"/>
|
1025
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1026
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1027
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1028
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1029
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1030
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1031
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1032
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1033
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1034
|
+
</wsdl:operation>
|
1035
|
+
|
1036
|
+
|
1037
|
+
<wsdl:operation name="addalias">
|
1038
|
+
<wsdl:documentation>Add a user alias</wsdl:documentation>
|
1039
|
+
<wsdl:input message="tns:addalias" name="addalias"/>
|
1040
|
+
<wsdl:output message="tns:addaliasResponse" name="addaliasResponse"/>
|
1041
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1042
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1043
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1044
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1045
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1046
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1047
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1048
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1049
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1050
|
+
</wsdl:operation>
|
1051
|
+
|
1052
|
+
|
1053
|
+
<wsdl:operation name="adddomain">
|
1054
|
+
<wsdl:documentation>Add a domain</wsdl:documentation>
|
1055
|
+
<wsdl:input message="tns:adddomain" name="adddomain"/>
|
1056
|
+
<wsdl:output message="tns:adddomainResponse" name="adddomainResponse"/>
|
1057
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1058
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1059
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1060
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1061
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1062
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1063
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1064
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1065
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1066
|
+
</wsdl:operation>
|
1067
|
+
|
1068
|
+
|
1069
|
+
<wsdl:operation name="addorg">
|
1070
|
+
<wsdl:documentation>Add a org</wsdl:documentation>
|
1071
|
+
<wsdl:input message="tns:addorg" name="addorg"/>
|
1072
|
+
<wsdl:output message="tns:addorgResponse" name="addorgResponse"/>
|
1073
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1074
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1075
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1076
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1077
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1078
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1079
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1080
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1081
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1082
|
+
</wsdl:operation>
|
1083
|
+
|
1084
|
+
|
1085
|
+
<wsdl:operation name="adduser">
|
1086
|
+
<wsdl:documentation>Add a user</wsdl:documentation>
|
1087
|
+
<wsdl:input message="tns:adduser" name="adduser"/>
|
1088
|
+
<wsdl:output message="tns:adduserResponse" name="adduserResponse"/>
|
1089
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1090
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1091
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1092
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1093
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1094
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1095
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1096
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1097
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1098
|
+
</wsdl:operation>
|
1099
|
+
|
1100
|
+
|
1101
|
+
<wsdl:operation name="deletealias">
|
1102
|
+
<wsdl:documentation>Delete a user alias</wsdl:documentation>
|
1103
|
+
<wsdl:input message="tns:deletealias" name="deletealias"/>
|
1104
|
+
<wsdl:output message="tns:deletealiasResponse" name="deletealiasResponse"/>
|
1105
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1106
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1107
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1108
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1109
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1110
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1111
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1112
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1113
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1114
|
+
</wsdl:operation>
|
1115
|
+
|
1116
|
+
|
1117
|
+
<wsdl:operation name="deletedomain">
|
1118
|
+
<wsdl:documentation>Delete a domain</wsdl:documentation>
|
1119
|
+
<wsdl:input message="tns:deletedomain" name="deletedomain"/>
|
1120
|
+
<wsdl:output message="tns:deletedomainResponse" name="deletedomainResponse"/>
|
1121
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1122
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1123
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1124
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1125
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1126
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1127
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1128
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1129
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1130
|
+
</wsdl:operation>
|
1131
|
+
|
1132
|
+
|
1133
|
+
<wsdl:operation name="deleteorg">
|
1134
|
+
<wsdl:documentation>Delete a org</wsdl:documentation>
|
1135
|
+
<wsdl:input message="tns:deleteorg" name="deleteorg"/>
|
1136
|
+
<wsdl:output message="tns:deleteorgResponse" name="deleteorgResponse"/>
|
1137
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1138
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1139
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1140
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1141
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1142
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1143
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1144
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1145
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1146
|
+
</wsdl:operation>
|
1147
|
+
|
1148
|
+
|
1149
|
+
<wsdl:operation name="deleteuser">
|
1150
|
+
<wsdl:documentation>Delete a user</wsdl:documentation>
|
1151
|
+
<wsdl:input message="tns:deleteuser" name="deleteuser"/>
|
1152
|
+
<wsdl:output message="tns:deleteuserResponse" name="deleteuserResponse"/>
|
1153
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1154
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1155
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1156
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1157
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1158
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1159
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1160
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1161
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1162
|
+
</wsdl:operation>
|
1163
|
+
|
1164
|
+
|
1165
|
+
<wsdl:operation name="displaydomain">
|
1166
|
+
<wsdl:documentation>Display domain information</wsdl:documentation>
|
1167
|
+
<wsdl:input message="tns:displaydomain" name="displaydomain"/>
|
1168
|
+
<wsdl:output message="tns:displaydomainResponse" name="displaydomainResponse"/>
|
1169
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1170
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1171
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1172
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1173
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1174
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1175
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1176
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1177
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1178
|
+
</wsdl:operation>
|
1179
|
+
|
1180
|
+
|
1181
|
+
<wsdl:operation name="displayorg">
|
1182
|
+
<wsdl:documentation>Display org information</wsdl:documentation>
|
1183
|
+
<wsdl:input message="tns:displayorg" name="displayorg"/>
|
1184
|
+
<wsdl:output message="tns:displayorgResponse" name="displayorgResponse"/>
|
1185
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1186
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1187
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1188
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1189
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1190
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1191
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1192
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1193
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1194
|
+
</wsdl:operation>
|
1195
|
+
|
1196
|
+
|
1197
|
+
<wsdl:operation name="displayspool">
|
1198
|
+
<wsdl:documentation>Display email org spooling information</wsdl:documentation>
|
1199
|
+
<wsdl:input message="tns:displayspool" name="displayspool"/>
|
1200
|
+
<wsdl:output message="tns:displayspoolResponse" name="displayspoolResponse"/>
|
1201
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1202
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1203
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1204
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1205
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1206
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1207
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1208
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1209
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1210
|
+
</wsdl:operation>
|
1211
|
+
|
1212
|
+
|
1213
|
+
<wsdl:operation name="displayuser">
|
1214
|
+
<wsdl:documentation>Display user information</wsdl:documentation>
|
1215
|
+
<wsdl:input message="tns:displayuser" name="displayuser"/>
|
1216
|
+
<wsdl:output message="tns:displayuserResponse" name="displayuserResponse"/>
|
1217
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1218
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1219
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1220
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1221
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1222
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1223
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1224
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1225
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1226
|
+
</wsdl:operation>
|
1227
|
+
|
1228
|
+
|
1229
|
+
<wsdl:operation name="getorgreport">
|
1230
|
+
<wsdl:documentation>Get org report</wsdl:documentation>
|
1231
|
+
<wsdl:input message="tns:getorgreport" name="getorgreport"/>
|
1232
|
+
<wsdl:output message="tns:getorgreportResponse" name="getorgreportResponse"/>
|
1233
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1234
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1235
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1236
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1237
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1238
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1239
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1240
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1241
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1242
|
+
</wsdl:operation>
|
1243
|
+
|
1244
|
+
|
1245
|
+
<wsdl:operation name="listdomains">
|
1246
|
+
<wsdl:documentation>List domain information</wsdl:documentation>
|
1247
|
+
<wsdl:input message="tns:listdomains" name="listdomains"/>
|
1248
|
+
<wsdl:output message="tns:listdomainsResponse" name="listdomainsResponse"/>
|
1249
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1250
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1251
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1252
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1253
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1254
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1255
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1256
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1257
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1258
|
+
</wsdl:operation>
|
1259
|
+
|
1260
|
+
|
1261
|
+
<wsdl:operation name="listorgs">
|
1262
|
+
<wsdl:documentation>List org information</wsdl:documentation>
|
1263
|
+
<wsdl:input message="tns:listorgs" name="listorgs"/>
|
1264
|
+
<wsdl:output message="tns:listorgsResponse" name="listorgsResponse"/>
|
1265
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1266
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1267
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1268
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1269
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1270
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1271
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1272
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1273
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1274
|
+
</wsdl:operation>
|
1275
|
+
|
1276
|
+
|
1277
|
+
<wsdl:operation name="listusers">
|
1278
|
+
<wsdl:documentation>Retrieve a list of users meeting arbitary criteria</wsdl:documentation>
|
1279
|
+
<wsdl:input message="tns:listusers" name="listusers"/>
|
1280
|
+
<wsdl:output message="tns:listusersResponse" name="listusersResponse"/>
|
1281
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1282
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1283
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1284
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1285
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1286
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1287
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1288
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1289
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1290
|
+
</wsdl:operation>
|
1291
|
+
|
1292
|
+
|
1293
|
+
<wsdl:operation name="modifydomain">
|
1294
|
+
<wsdl:documentation>Modify domain information</wsdl:documentation>
|
1295
|
+
<wsdl:input message="tns:modifydomain" name="modifydomain"/>
|
1296
|
+
<wsdl:output message="tns:modifydomainResponse" name="modifydomainResponse"/>
|
1297
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1298
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1299
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1300
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1301
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1302
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1303
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1304
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1305
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1306
|
+
</wsdl:operation>
|
1307
|
+
|
1308
|
+
|
1309
|
+
<wsdl:operation name="modifyorg">
|
1310
|
+
<wsdl:documentation>Modify org information</wsdl:documentation>
|
1311
|
+
<wsdl:input message="tns:modifyorg" name="modifyorg"/>
|
1312
|
+
<wsdl:output message="tns:modifyorgResponse" name="modifyorgResponse"/>
|
1313
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1314
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1315
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1316
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1317
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1318
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1319
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1320
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1321
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1322
|
+
</wsdl:operation>
|
1323
|
+
|
1324
|
+
|
1325
|
+
<wsdl:operation name="modifyuser">
|
1326
|
+
<wsdl:documentation>Modify user information</wsdl:documentation>
|
1327
|
+
<wsdl:input message="tns:modifyuser" name="modifyuser"/>
|
1328
|
+
<wsdl:output message="tns:modifyuserResponse" name="modifyuserResponse"/>
|
1329
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1330
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1331
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1332
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1333
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1334
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1335
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1336
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1337
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1338
|
+
</wsdl:operation>
|
1339
|
+
|
1340
|
+
|
1341
|
+
<wsdl:operation name="suspenduser">
|
1342
|
+
<wsdl:documentation>Suspend a user</wsdl:documentation>
|
1343
|
+
<wsdl:input message="tns:suspenduser" name="suspenduser"/>
|
1344
|
+
<wsdl:output message="tns:suspenduserResponse" name="suspenduserResponse"/>
|
1345
|
+
<wsdl:fault name="AdminBlockException" message="tns:AdminBlockException"/>
|
1346
|
+
<wsdl:fault name="AuthenticationException" message="tns:AuthenticationException"/>
|
1347
|
+
<wsdl:fault name="BatchException" message="tns:BatchException"/>
|
1348
|
+
<wsdl:fault name="InternalException" message="tns:InternalException"/>
|
1349
|
+
<wsdl:fault name="InvalidValueException" message="tns:InvalidValueException"/>
|
1350
|
+
<wsdl:fault name="MalformedKeyException" message="tns:MalformedKeyException"/>
|
1351
|
+
<wsdl:fault name="MissingElementException" message="tns:MissingElementException"/>
|
1352
|
+
<wsdl:fault name="NoSuchKeyException" message="tns:NoSuchKeyException"/>
|
1353
|
+
<wsdl:fault name="UnknownInternalException" message="tns:UnknownInternalException"/>
|
1354
|
+
</wsdl:operation>
|
1355
|
+
|
1356
|
+
</wsdl:portType>
|
1357
|
+
|
1358
|
+
<wsdl:binding name="AutomatedBatchBinding" type="tns:AutomatedBatchPort">
|
1359
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
1360
|
+
|
1361
|
+
|
1362
|
+
<wsdl:operation name="test">
|
1363
|
+
<soap:operation soapAction="" style="document"/>
|
1364
|
+
<wsdl:input name="test"><soap:body use="literal"/></wsdl:input>
|
1365
|
+
<wsdl:output name="testResponse"><soap:body use="literal"/></wsdl:output>
|
1366
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1367
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1368
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1369
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1370
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1371
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1372
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1373
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1374
|
+
<wsdl:fault name="StatusException"><soap:fault name="StatusException" use="literal"/></wsdl:fault>
|
1375
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1376
|
+
</wsdl:operation>
|
1377
|
+
|
1378
|
+
|
1379
|
+
<wsdl:operation name="checkauth">
|
1380
|
+
<soap:operation soapAction="" style="document"/>
|
1381
|
+
<wsdl:input name="checkauth"><soap:body use="literal"/></wsdl:input>
|
1382
|
+
<wsdl:output name="checkauthResponse"><soap:body use="literal"/></wsdl:output>
|
1383
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1384
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1385
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1386
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1387
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1388
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1389
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1390
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1391
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1392
|
+
</wsdl:operation>
|
1393
|
+
|
1394
|
+
|
1395
|
+
<wsdl:operation name="addalias">
|
1396
|
+
<soap:operation soapAction="" style="document"/>
|
1397
|
+
<wsdl:input name="addalias"><soap:body use="literal"/></wsdl:input>
|
1398
|
+
<wsdl:output name="addaliasResponse"><soap:body use="literal"/></wsdl:output>
|
1399
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1400
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1401
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1402
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1403
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1404
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1405
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1406
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1407
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1408
|
+
</wsdl:operation>
|
1409
|
+
|
1410
|
+
|
1411
|
+
<wsdl:operation name="adddomain">
|
1412
|
+
<soap:operation soapAction="" style="document"/>
|
1413
|
+
<wsdl:input name="adddomain"><soap:body use="literal"/></wsdl:input>
|
1414
|
+
<wsdl:output name="adddomainResponse"><soap:body use="literal"/></wsdl:output>
|
1415
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1416
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1417
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1418
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1419
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1420
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1421
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1422
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1423
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1424
|
+
</wsdl:operation>
|
1425
|
+
|
1426
|
+
|
1427
|
+
<wsdl:operation name="addorg">
|
1428
|
+
<soap:operation soapAction="" style="document"/>
|
1429
|
+
<wsdl:input name="addorg"><soap:body use="literal"/></wsdl:input>
|
1430
|
+
<wsdl:output name="addorgResponse"><soap:body use="literal"/></wsdl:output>
|
1431
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1432
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1433
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1434
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1435
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1436
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1437
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1438
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1439
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1440
|
+
</wsdl:operation>
|
1441
|
+
|
1442
|
+
|
1443
|
+
<wsdl:operation name="adduser">
|
1444
|
+
<soap:operation soapAction="" style="document"/>
|
1445
|
+
<wsdl:input name="adduser"><soap:body use="literal"/></wsdl:input>
|
1446
|
+
<wsdl:output name="adduserResponse"><soap:body use="literal"/></wsdl:output>
|
1447
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1448
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1449
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1450
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1451
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1452
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1453
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1454
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1455
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1456
|
+
</wsdl:operation>
|
1457
|
+
|
1458
|
+
|
1459
|
+
<wsdl:operation name="deletealias">
|
1460
|
+
<soap:operation soapAction="" style="document"/>
|
1461
|
+
<wsdl:input name="deletealias"><soap:body use="literal"/></wsdl:input>
|
1462
|
+
<wsdl:output name="deletealiasResponse"><soap:body use="literal"/></wsdl:output>
|
1463
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1464
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1465
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1466
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1467
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1468
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1469
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1470
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1471
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1472
|
+
</wsdl:operation>
|
1473
|
+
|
1474
|
+
|
1475
|
+
<wsdl:operation name="deletedomain">
|
1476
|
+
<soap:operation soapAction="" style="document"/>
|
1477
|
+
<wsdl:input name="deletedomain"><soap:body use="literal"/></wsdl:input>
|
1478
|
+
<wsdl:output name="deletedomainResponse"><soap:body use="literal"/></wsdl:output>
|
1479
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1480
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1481
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1482
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1483
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1484
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1485
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1486
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1487
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1488
|
+
</wsdl:operation>
|
1489
|
+
|
1490
|
+
|
1491
|
+
<wsdl:operation name="deleteorg">
|
1492
|
+
<soap:operation soapAction="" style="document"/>
|
1493
|
+
<wsdl:input name="deleteorg"><soap:body use="literal"/></wsdl:input>
|
1494
|
+
<wsdl:output name="deleteorgResponse"><soap:body use="literal"/></wsdl:output>
|
1495
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1496
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1497
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1498
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1499
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1500
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1501
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1502
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1503
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1504
|
+
</wsdl:operation>
|
1505
|
+
|
1506
|
+
|
1507
|
+
<wsdl:operation name="deleteuser">
|
1508
|
+
<soap:operation soapAction="" style="document"/>
|
1509
|
+
<wsdl:input name="deleteuser"><soap:body use="literal"/></wsdl:input>
|
1510
|
+
<wsdl:output name="deleteuserResponse"><soap:body use="literal"/></wsdl:output>
|
1511
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1512
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1513
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1514
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1515
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1516
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1517
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1518
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1519
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1520
|
+
</wsdl:operation>
|
1521
|
+
|
1522
|
+
|
1523
|
+
<wsdl:operation name="displaydomain">
|
1524
|
+
<soap:operation soapAction="" style="document"/>
|
1525
|
+
<wsdl:input name="displaydomain"><soap:body use="literal"/></wsdl:input>
|
1526
|
+
<wsdl:output name="displaydomainResponse"><soap:body use="literal"/></wsdl:output>
|
1527
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1528
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1529
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1530
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1531
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1532
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1533
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1534
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1535
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1536
|
+
</wsdl:operation>
|
1537
|
+
|
1538
|
+
|
1539
|
+
<wsdl:operation name="displayorg">
|
1540
|
+
<soap:operation soapAction="" style="document"/>
|
1541
|
+
<wsdl:input name="displayorg"><soap:body use="literal"/></wsdl:input>
|
1542
|
+
<wsdl:output name="displayorgResponse"><soap:body use="literal"/></wsdl:output>
|
1543
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1544
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1545
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1546
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1547
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1548
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1549
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1550
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1551
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1552
|
+
</wsdl:operation>
|
1553
|
+
|
1554
|
+
|
1555
|
+
<wsdl:operation name="displayspool">
|
1556
|
+
<soap:operation soapAction="" style="document"/>
|
1557
|
+
<wsdl:input name="displayspool"><soap:body use="literal"/></wsdl:input>
|
1558
|
+
<wsdl:output name="displayspoolResponse"><soap:body use="literal"/></wsdl:output>
|
1559
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1560
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1561
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1562
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1563
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1564
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1565
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1566
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1567
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1568
|
+
</wsdl:operation>
|
1569
|
+
|
1570
|
+
|
1571
|
+
<wsdl:operation name="displayuser">
|
1572
|
+
<soap:operation soapAction="" style="document"/>
|
1573
|
+
<wsdl:input name="displayuser"><soap:body use="literal"/></wsdl:input>
|
1574
|
+
<wsdl:output name="displayuserResponse"><soap:body use="literal"/></wsdl:output>
|
1575
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1576
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1577
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1578
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1579
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1580
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1581
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1582
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1583
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1584
|
+
</wsdl:operation>
|
1585
|
+
|
1586
|
+
|
1587
|
+
<wsdl:operation name="getorgreport">
|
1588
|
+
<soap:operation soapAction="" style="document"/>
|
1589
|
+
<wsdl:input name="getorgreport"><soap:body use="literal"/></wsdl:input>
|
1590
|
+
<wsdl:output name="getorgreportResponse"><soap:body use="literal"/></wsdl:output>
|
1591
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1592
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1593
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1594
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1595
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1596
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1597
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1598
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1599
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1600
|
+
</wsdl:operation>
|
1601
|
+
|
1602
|
+
|
1603
|
+
<wsdl:operation name="listdomains">
|
1604
|
+
<soap:operation soapAction="" style="document"/>
|
1605
|
+
<wsdl:input name="listdomains"><soap:body use="literal"/></wsdl:input>
|
1606
|
+
<wsdl:output name="listdomainsResponse"><soap:body use="literal"/></wsdl:output>
|
1607
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1608
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1609
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1610
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1611
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1612
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1613
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1614
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1615
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1616
|
+
</wsdl:operation>
|
1617
|
+
|
1618
|
+
|
1619
|
+
<wsdl:operation name="listorgs">
|
1620
|
+
<soap:operation soapAction="" style="document"/>
|
1621
|
+
<wsdl:input name="listorgs"><soap:body use="literal"/></wsdl:input>
|
1622
|
+
<wsdl:output name="listorgsResponse"><soap:body use="literal"/></wsdl:output>
|
1623
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1624
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1625
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1626
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1627
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1628
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1629
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1630
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1631
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1632
|
+
</wsdl:operation>
|
1633
|
+
|
1634
|
+
|
1635
|
+
<wsdl:operation name="listusers">
|
1636
|
+
<soap:operation soapAction="" style="document"/>
|
1637
|
+
<wsdl:input name="listusers"><soap:body use="literal"/></wsdl:input>
|
1638
|
+
<wsdl:output name="listusersResponse"><soap:body use="literal"/></wsdl:output>
|
1639
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1640
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1641
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1642
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1643
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1644
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1645
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1646
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1647
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1648
|
+
</wsdl:operation>
|
1649
|
+
|
1650
|
+
|
1651
|
+
<wsdl:operation name="modifydomain">
|
1652
|
+
<soap:operation soapAction="" style="document"/>
|
1653
|
+
<wsdl:input name="modifydomain"><soap:body use="literal"/></wsdl:input>
|
1654
|
+
<wsdl:output name="modifydomainResponse"><soap:body use="literal"/></wsdl:output>
|
1655
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1656
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1657
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1658
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1659
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1660
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1661
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1662
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1663
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1664
|
+
</wsdl:operation>
|
1665
|
+
|
1666
|
+
|
1667
|
+
<wsdl:operation name="modifyorg">
|
1668
|
+
<soap:operation soapAction="" style="document"/>
|
1669
|
+
<wsdl:input name="modifyorg"><soap:body use="literal"/></wsdl:input>
|
1670
|
+
<wsdl:output name="modifyorgResponse"><soap:body use="literal"/></wsdl:output>
|
1671
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1672
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1673
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1674
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1675
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1676
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1677
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1678
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1679
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1680
|
+
</wsdl:operation>
|
1681
|
+
|
1682
|
+
|
1683
|
+
<wsdl:operation name="modifyuser">
|
1684
|
+
<soap:operation soapAction="" style="document"/>
|
1685
|
+
<wsdl:input name="modifyuser"><soap:body use="literal"/></wsdl:input>
|
1686
|
+
<wsdl:output name="modifyuserResponse"><soap:body use="literal"/></wsdl:output>
|
1687
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1688
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1689
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1690
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1691
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1692
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1693
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1694
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1695
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1696
|
+
</wsdl:operation>
|
1697
|
+
|
1698
|
+
|
1699
|
+
<wsdl:operation name="suspenduser">
|
1700
|
+
<soap:operation soapAction="" style="document"/>
|
1701
|
+
<wsdl:input name="suspenduser"><soap:body use="literal"/></wsdl:input>
|
1702
|
+
<wsdl:output name="suspenduserResponse"><soap:body use="literal"/></wsdl:output>
|
1703
|
+
<wsdl:fault name="AdminBlockException"><soap:fault name="AdminBlockException" use="literal"/></wsdl:fault>
|
1704
|
+
<wsdl:fault name="AuthenticationException"><soap:fault name="AuthenticationException" use="literal"/></wsdl:fault>
|
1705
|
+
<wsdl:fault name="BatchException"><soap:fault name="BatchException" use="literal"/></wsdl:fault>
|
1706
|
+
<wsdl:fault name="InternalException"><soap:fault name="InternalException" use="literal"/></wsdl:fault>
|
1707
|
+
<wsdl:fault name="InvalidValueException"><soap:fault name="InvalidValueException" use="literal"/></wsdl:fault>
|
1708
|
+
<wsdl:fault name="MalformedKeyException"><soap:fault name="MalformedKeyException" use="literal"/></wsdl:fault>
|
1709
|
+
<wsdl:fault name="MissingElementException"><soap:fault name="MissingElementException" use="literal"/></wsdl:fault>
|
1710
|
+
<wsdl:fault name="NoSuchKeyException"><soap:fault name="NoSuchKeyException" use="literal"/></wsdl:fault>
|
1711
|
+
<wsdl:fault name="UnknownInternalException"><soap:fault name="UnknownInternalException" use="literal"/></wsdl:fault>
|
1712
|
+
</wsdl:operation>
|
1713
|
+
|
1714
|
+
</wsdl:binding>
|
1715
|
+
|
1716
|
+
<wsdl:service name="AutomatedBatchService">
|
1717
|
+
<wsdl:port name="AutomatedBatchPort" binding="tns:AutomatedBatchBinding">
|
1718
|
+
<soap:address location="https://api-s200.postini.com/api2/automatedbatch"/>
|
1719
|
+
</wsdl:port>
|
1720
|
+
</wsdl:service>
|
1721
|
+
</wsdl:definitions>
|