cherby 0.0.1
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/.gitignore +6 -0
- data/.rspec +3 -0
- data/.travis.yml +4 -0
- data/.yardopts +4 -0
- data/Gemfile +6 -0
- data/README.md +83 -0
- data/Rakefile +12 -0
- data/cherby.gemspec +29 -0
- data/lib/cherby.rb +11 -0
- data/lib/cherby/business_object.rb +159 -0
- data/lib/cherby/cherwell.rb +230 -0
- data/lib/cherby/client.rb +147 -0
- data/lib/cherby/exceptions.rb +6 -0
- data/lib/cherby/incident.rb +141 -0
- data/lib/cherby/journal_note.rb +13 -0
- data/lib/cherby/task.rb +37 -0
- data/lib/cherby/templates/incident.mustache +226 -0
- data/lib/cherby/templates/journal_note.mustache +30 -0
- data/lib/cherby/templates/journal_note_relationship.mustache +3 -0
- data/lib/cherby/templates/task.mustache +67 -0
- data/lib/cherby/templates/task_relationship.mustache +3 -0
- data/lib/cherby/templates/test/simple.mustache +8 -0
- data/spec/business_object_spec.rb +250 -0
- data/spec/cherwell_spec.rb +300 -0
- data/spec/client_spec.rb +149 -0
- data/spec/data/cherwell.wsdl +1568 -0
- data/spec/data/incident.xml +1411 -0
- data/spec/data/login_false.xml +8 -0
- data/spec/data/login_true.xml +6 -0
- data/spec/data/task.xml +64 -0
- data/spec/incident_spec.rb +124 -0
- data/spec/journal_note_spec.rb +13 -0
- data/spec/spec_helper.rb +40 -0
- data/spec/task_spec.rb +77 -0
- data/spec/xml/method_response_result.mustache +4 -0
- data/spec/xml/soap_envelope.mustache +6 -0
- data/tasks/pry.rake +28 -0
- data/tasks/spec.rake +8 -0
- metadata +261 -0
data/spec/client_spec.rb
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
require 'cherby/client'
|
3
|
+
require 'savon/mock/spec_helper'
|
4
|
+
|
5
|
+
describe Cherby::Client do
|
6
|
+
include Savon::SpecHelper
|
7
|
+
|
8
|
+
before(:all) do
|
9
|
+
savon.mock!
|
10
|
+
end
|
11
|
+
|
12
|
+
after(:all) do
|
13
|
+
savon.unmock!
|
14
|
+
end
|
15
|
+
|
16
|
+
before(:each) do
|
17
|
+
@client = Cherby::Client.new(CHERWELL_WSDL)
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "#initialize" do
|
21
|
+
it "raises ArgumentError if URL does not begin with http" do
|
22
|
+
lambda do
|
23
|
+
Cherby::Client.new("ftp://example.com")
|
24
|
+
end.should raise_error(
|
25
|
+
ArgumentError, /Client URL must be a local file, or begin with http/)
|
26
|
+
end
|
27
|
+
|
28
|
+
it "can get WSDL from a local filename" do
|
29
|
+
client = Cherby::Client.new(CHERWELL_WSDL)
|
30
|
+
client.globals[:wsdl].should == CHERWELL_WSDL
|
31
|
+
end
|
32
|
+
|
33
|
+
it "appends '?WSDL' if an HTTP URL is missing it" do
|
34
|
+
client = Cherby::Client.new("http://example.com")
|
35
|
+
client.globals[:wsdl].should == "http://example.com?WSDL"
|
36
|
+
end
|
37
|
+
|
38
|
+
it "does not append another '?WSDL' if the HTTP URL already has it" do
|
39
|
+
client = Cherby::Client.new("http://example.com?WSDL")
|
40
|
+
client.globals[:wsdl].should == "http://example.com?WSDL"
|
41
|
+
end
|
42
|
+
end #initialize
|
43
|
+
|
44
|
+
describe "#call_wrap" do
|
45
|
+
it "accepts string method name" do
|
46
|
+
savon.expects(:login).
|
47
|
+
with(:message => :any).
|
48
|
+
returns(savon_response('Login', 'true'))
|
49
|
+
@client.call_wrap('login')
|
50
|
+
end
|
51
|
+
|
52
|
+
it "accepts symbol method name" do
|
53
|
+
savon.expects(:login).
|
54
|
+
with(:message => :any).
|
55
|
+
returns(savon_response('Login', 'true'))
|
56
|
+
@client.call_wrap(:login)
|
57
|
+
end
|
58
|
+
|
59
|
+
it "passes the body to the SOAP method" do
|
60
|
+
body = {:userId => 'someone', :password => 'somepass'}
|
61
|
+
savon.expects(:login).
|
62
|
+
with(:message => body).
|
63
|
+
returns(savon_response('Login', 'true'))
|
64
|
+
@client.call_wrap(:login, body)
|
65
|
+
end
|
66
|
+
|
67
|
+
it "returns the string found in <[MethodName]Result>" do
|
68
|
+
result_string = "Login result text"
|
69
|
+
savon.expects(:login).
|
70
|
+
with(:message => :any).
|
71
|
+
returns(savon_response('Login', result_string))
|
72
|
+
result = @client.call_wrap(:login)
|
73
|
+
result.should == result_string
|
74
|
+
end
|
75
|
+
|
76
|
+
it "raises ArgumentError if method is unknown" do
|
77
|
+
lambda do
|
78
|
+
@client.call_wrap(:bogus)
|
79
|
+
end.should raise_error(
|
80
|
+
ArgumentError, /Unknown Cherwell SOAP API method: bogus/)
|
81
|
+
end
|
82
|
+
end #call
|
83
|
+
|
84
|
+
describe "#method_missing" do
|
85
|
+
it "converts positional arguments to a Hash appropriate for the method" do
|
86
|
+
savon.expects(:login).
|
87
|
+
with(:message => {:userId => 'username', :password => 'password'}).
|
88
|
+
returns(savon_response('Login', 'true'))
|
89
|
+
@client.login('username', 'password')
|
90
|
+
end
|
91
|
+
|
92
|
+
it "passes hash argument as-is" do
|
93
|
+
message = {:userId => 'username', :password => 'password'}
|
94
|
+
savon.expects(:login).
|
95
|
+
with(:message => message).
|
96
|
+
returns(savon_response('Login', 'true'))
|
97
|
+
@client.login(message)
|
98
|
+
end
|
99
|
+
|
100
|
+
it "raises an exception if method is not in known_methods" do
|
101
|
+
lambda do
|
102
|
+
@client.bogus_method
|
103
|
+
end.should raise_error(NoMethodError)
|
104
|
+
end
|
105
|
+
end #method_missing
|
106
|
+
|
107
|
+
describe "#known_methods" do
|
108
|
+
it "returns an array of symbolic method names" do
|
109
|
+
methods = @client.known_methods
|
110
|
+
methods.should be_a(Array)
|
111
|
+
methods.each do |meth|
|
112
|
+
meth.should be_a(Symbol)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end #known_methods
|
116
|
+
|
117
|
+
describe "#params_for_method" do
|
118
|
+
it "returns a hash of parameters and their type info" do
|
119
|
+
params = @client.params_for_method(:login)
|
120
|
+
params.should include(:password)
|
121
|
+
params.should include(:userId)
|
122
|
+
end
|
123
|
+
|
124
|
+
it "returns an empty hash if method has no parameters" do
|
125
|
+
@client.params_for_method(:logout).should == {}
|
126
|
+
end
|
127
|
+
|
128
|
+
it "returns an empty hash for unknown method" do
|
129
|
+
@client.params_for_method(:bogus).should == {}
|
130
|
+
end
|
131
|
+
end #params_for_method
|
132
|
+
|
133
|
+
describe "#args_to_hash" do
|
134
|
+
it "returns a Hash of :paramName => value" do
|
135
|
+
hash = @client.args_to_hash(:login, 'username', 'password')
|
136
|
+
hash.should == {
|
137
|
+
:userId => 'username',
|
138
|
+
:password => 'password'
|
139
|
+
}
|
140
|
+
end
|
141
|
+
|
142
|
+
it "raises ArgumentError if wrong number of args given" do
|
143
|
+
lambda do
|
144
|
+
@client.args_to_hash(:login, 'username')
|
145
|
+
end.should raise_error(
|
146
|
+
ArgumentError, /Wrong number of arguments/)
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end # Cherby::Client
|
@@ -0,0 +1,1568 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://cherwellsoftware.com" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://cherwellsoftware.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
3
|
+
<wsdl:types>
|
4
|
+
<s:schema elementFormDefault="qualified" targetNamespace="http://cherwellsoftware.com">
|
5
|
+
<s:element name="Login">
|
6
|
+
<s:complexType>
|
7
|
+
<s:sequence>
|
8
|
+
<s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
|
9
|
+
<s:element minOccurs="0" maxOccurs="1" name="password" type="s:string" />
|
10
|
+
</s:sequence>
|
11
|
+
</s:complexType>
|
12
|
+
</s:element>
|
13
|
+
<s:element name="LoginResponse">
|
14
|
+
<s:complexType>
|
15
|
+
<s:sequence>
|
16
|
+
<s:element minOccurs="1" maxOccurs="1" name="LoginResult" type="s:boolean" />
|
17
|
+
</s:sequence>
|
18
|
+
</s:complexType>
|
19
|
+
</s:element>
|
20
|
+
<s:element name="MobileLogin">
|
21
|
+
<s:complexType>
|
22
|
+
<s:sequence>
|
23
|
+
<s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
|
24
|
+
<s:element minOccurs="0" maxOccurs="1" name="password" type="s:string" />
|
25
|
+
<s:element minOccurs="0" maxOccurs="1" name="version" type="s:string" />
|
26
|
+
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" />
|
27
|
+
<s:element minOccurs="0" maxOccurs="1" name="preferences" type="s:string" />
|
28
|
+
</s:sequence>
|
29
|
+
</s:complexType>
|
30
|
+
</s:element>
|
31
|
+
<s:element name="MobileLoginResponse">
|
32
|
+
<s:complexType>
|
33
|
+
<s:sequence>
|
34
|
+
<s:element minOccurs="0" maxOccurs="1" name="MobileLoginResult" type="s:string" />
|
35
|
+
</s:sequence>
|
36
|
+
</s:complexType>
|
37
|
+
</s:element>
|
38
|
+
<s:element name="LoginWithProductCode">
|
39
|
+
<s:complexType>
|
40
|
+
<s:sequence>
|
41
|
+
<s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
|
42
|
+
<s:element minOccurs="0" maxOccurs="1" name="password" type="s:string" />
|
43
|
+
<s:element minOccurs="0" maxOccurs="1" name="productCode" type="s:string" />
|
44
|
+
<s:element minOccurs="0" maxOccurs="1" name="module" type="s:string" />
|
45
|
+
<s:element minOccurs="0" maxOccurs="1" name="sessionId" type="s:string" />
|
46
|
+
</s:sequence>
|
47
|
+
</s:complexType>
|
48
|
+
</s:element>
|
49
|
+
<s:element name="LoginWithProductCodeResponse">
|
50
|
+
<s:complexType>
|
51
|
+
<s:sequence>
|
52
|
+
<s:element minOccurs="1" maxOccurs="1" name="LoginWithProductCodeResult" type="s:boolean" />
|
53
|
+
</s:sequence>
|
54
|
+
</s:complexType>
|
55
|
+
</s:element>
|
56
|
+
<s:element name="Logout">
|
57
|
+
<s:complexType />
|
58
|
+
</s:element>
|
59
|
+
<s:element name="LogoutResponse">
|
60
|
+
<s:complexType>
|
61
|
+
<s:sequence>
|
62
|
+
<s:element minOccurs="1" maxOccurs="1" name="LogoutResult" type="s:boolean" />
|
63
|
+
</s:sequence>
|
64
|
+
</s:complexType>
|
65
|
+
</s:element>
|
66
|
+
<s:element name="MobileLogout">
|
67
|
+
<s:complexType />
|
68
|
+
</s:element>
|
69
|
+
<s:element name="MobileLogoutResponse">
|
70
|
+
<s:complexType>
|
71
|
+
<s:sequence>
|
72
|
+
<s:element minOccurs="1" maxOccurs="1" name="MobileLogoutResult" type="s:boolean" />
|
73
|
+
</s:sequence>
|
74
|
+
</s:complexType>
|
75
|
+
</s:element>
|
76
|
+
<s:element name="GetiCherwellCredentialsMode">
|
77
|
+
<s:complexType />
|
78
|
+
</s:element>
|
79
|
+
<s:element name="GetiCherwellCredentialsModeResponse">
|
80
|
+
<s:complexType>
|
81
|
+
<s:sequence>
|
82
|
+
<s:element minOccurs="1" maxOccurs="1" name="GetiCherwellCredentialsModeResult" type="s:int" />
|
83
|
+
</s:sequence>
|
84
|
+
</s:complexType>
|
85
|
+
</s:element>
|
86
|
+
<s:element name="GetLastError">
|
87
|
+
<s:complexType />
|
88
|
+
</s:element>
|
89
|
+
<s:element name="GetLastErrorResponse">
|
90
|
+
<s:complexType>
|
91
|
+
<s:sequence>
|
92
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetLastErrorResult" type="s:string" />
|
93
|
+
</s:sequence>
|
94
|
+
</s:complexType>
|
95
|
+
</s:element>
|
96
|
+
<s:element name="GetLastError2">
|
97
|
+
<s:complexType />
|
98
|
+
</s:element>
|
99
|
+
<s:element name="GetLastError2Response">
|
100
|
+
<s:complexType>
|
101
|
+
<s:sequence>
|
102
|
+
<s:element minOccurs="0" maxOccurs="1" name="errMsg1" type="s:string" />
|
103
|
+
<s:element minOccurs="0" maxOccurs="1" name="errMsg2" type="s:string" />
|
104
|
+
</s:sequence>
|
105
|
+
</s:complexType>
|
106
|
+
</s:element>
|
107
|
+
<s:element name="GetBusinessObjectDefinition">
|
108
|
+
<s:complexType>
|
109
|
+
<s:sequence>
|
110
|
+
<s:element minOccurs="0" maxOccurs="1" name="nameOrId" type="s:string" />
|
111
|
+
</s:sequence>
|
112
|
+
</s:complexType>
|
113
|
+
</s:element>
|
114
|
+
<s:element name="GetBusinessObjectDefinitionResponse">
|
115
|
+
<s:complexType>
|
116
|
+
<s:sequence>
|
117
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetBusinessObjectDefinitionResult" type="s:string" />
|
118
|
+
</s:sequence>
|
119
|
+
</s:complexType>
|
120
|
+
</s:element>
|
121
|
+
<s:element name="QueryByFieldValue">
|
122
|
+
<s:complexType>
|
123
|
+
<s:sequence>
|
124
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
125
|
+
<s:element minOccurs="0" maxOccurs="1" name="fieldNameOrId" type="s:string" />
|
126
|
+
<s:element minOccurs="0" maxOccurs="1" name="value" type="s:string" />
|
127
|
+
</s:sequence>
|
128
|
+
</s:complexType>
|
129
|
+
</s:element>
|
130
|
+
<s:element name="QueryByFieldValueResponse">
|
131
|
+
<s:complexType>
|
132
|
+
<s:sequence>
|
133
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryByFieldValueResult" type="s:string" />
|
134
|
+
</s:sequence>
|
135
|
+
</s:complexType>
|
136
|
+
</s:element>
|
137
|
+
<s:element name="QueryByStoredQuery">
|
138
|
+
<s:complexType>
|
139
|
+
<s:sequence>
|
140
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
141
|
+
<s:element minOccurs="0" maxOccurs="1" name="queryNameOrId" type="s:string" />
|
142
|
+
</s:sequence>
|
143
|
+
</s:complexType>
|
144
|
+
</s:element>
|
145
|
+
<s:element name="QueryByStoredQueryResponse">
|
146
|
+
<s:complexType>
|
147
|
+
<s:sequence>
|
148
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryByStoredQueryResult" type="s:string" />
|
149
|
+
</s:sequence>
|
150
|
+
</s:complexType>
|
151
|
+
</s:element>
|
152
|
+
<s:element name="QueryByStoredQueryWithScope">
|
153
|
+
<s:complexType>
|
154
|
+
<s:sequence>
|
155
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
156
|
+
<s:element minOccurs="0" maxOccurs="1" name="queryNameOrId" type="s:string" />
|
157
|
+
<s:element minOccurs="0" maxOccurs="1" name="scope" type="s:string" />
|
158
|
+
<s:element minOccurs="0" maxOccurs="1" name="scopeOwner" type="s:string" />
|
159
|
+
</s:sequence>
|
160
|
+
</s:complexType>
|
161
|
+
</s:element>
|
162
|
+
<s:element name="QueryByStoredQueryWithScopeResponse">
|
163
|
+
<s:complexType>
|
164
|
+
<s:sequence>
|
165
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryByStoredQueryWithScopeResult" type="s:string" />
|
166
|
+
</s:sequence>
|
167
|
+
</s:complexType>
|
168
|
+
</s:element>
|
169
|
+
<s:element name="GetBusinessObject">
|
170
|
+
<s:complexType>
|
171
|
+
<s:sequence>
|
172
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
173
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObRecId" type="s:string" />
|
174
|
+
</s:sequence>
|
175
|
+
</s:complexType>
|
176
|
+
</s:element>
|
177
|
+
<s:element name="GetBusinessObjectResponse">
|
178
|
+
<s:complexType>
|
179
|
+
<s:sequence>
|
180
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetBusinessObjectResult" type="s:string" />
|
181
|
+
</s:sequence>
|
182
|
+
</s:complexType>
|
183
|
+
</s:element>
|
184
|
+
<s:element name="GetBusinessObjectByPublicId">
|
185
|
+
<s:complexType>
|
186
|
+
<s:sequence>
|
187
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
188
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObPublicId" type="s:string" />
|
189
|
+
</s:sequence>
|
190
|
+
</s:complexType>
|
191
|
+
</s:element>
|
192
|
+
<s:element name="GetBusinessObjectByPublicIdResponse">
|
193
|
+
<s:complexType>
|
194
|
+
<s:sequence>
|
195
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetBusinessObjectByPublicIdResult" type="s:string" />
|
196
|
+
</s:sequence>
|
197
|
+
</s:complexType>
|
198
|
+
</s:element>
|
199
|
+
<s:element name="CreateBusinessObject">
|
200
|
+
<s:complexType>
|
201
|
+
<s:sequence>
|
202
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
203
|
+
<s:element minOccurs="0" maxOccurs="1" name="creationXml" type="s:string" />
|
204
|
+
</s:sequence>
|
205
|
+
</s:complexType>
|
206
|
+
</s:element>
|
207
|
+
<s:element name="CreateBusinessObjectResponse">
|
208
|
+
<s:complexType>
|
209
|
+
<s:sequence>
|
210
|
+
<s:element minOccurs="0" maxOccurs="1" name="CreateBusinessObjectResult" type="s:string" />
|
211
|
+
</s:sequence>
|
212
|
+
</s:complexType>
|
213
|
+
</s:element>
|
214
|
+
<s:element name="UpdateBusinessObject">
|
215
|
+
<s:complexType>
|
216
|
+
<s:sequence>
|
217
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
218
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObRecId" type="s:string" />
|
219
|
+
<s:element minOccurs="0" maxOccurs="1" name="updateXml" type="s:string" />
|
220
|
+
</s:sequence>
|
221
|
+
</s:complexType>
|
222
|
+
</s:element>
|
223
|
+
<s:element name="UpdateBusinessObjectResponse">
|
224
|
+
<s:complexType>
|
225
|
+
<s:sequence>
|
226
|
+
<s:element minOccurs="1" maxOccurs="1" name="UpdateBusinessObjectResult" type="s:boolean" />
|
227
|
+
</s:sequence>
|
228
|
+
</s:complexType>
|
229
|
+
</s:element>
|
230
|
+
<s:element name="UpdateBusinessObjectByPublicId">
|
231
|
+
<s:complexType>
|
232
|
+
<s:sequence>
|
233
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObNameOrId" type="s:string" />
|
234
|
+
<s:element minOccurs="0" maxOccurs="1" name="busObPublicId" type="s:string" />
|
235
|
+
<s:element minOccurs="0" maxOccurs="1" name="updateXml" type="s:string" />
|
236
|
+
</s:sequence>
|
237
|
+
</s:complexType>
|
238
|
+
</s:element>
|
239
|
+
<s:element name="UpdateBusinessObjectByPublicIdResponse">
|
240
|
+
<s:complexType>
|
241
|
+
<s:sequence>
|
242
|
+
<s:element minOccurs="1" maxOccurs="1" name="UpdateBusinessObjectByPublicIdResult" type="s:boolean" />
|
243
|
+
</s:sequence>
|
244
|
+
</s:complexType>
|
245
|
+
</s:element>
|
246
|
+
<s:element name="GetApiVersion">
|
247
|
+
<s:complexType />
|
248
|
+
</s:element>
|
249
|
+
<s:element name="GetApiVersionResponse">
|
250
|
+
<s:complexType>
|
251
|
+
<s:sequence>
|
252
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetApiVersionResult" type="s:string" />
|
253
|
+
</s:sequence>
|
254
|
+
</s:complexType>
|
255
|
+
</s:element>
|
256
|
+
<s:element name="ConfirmLogin">
|
257
|
+
<s:complexType>
|
258
|
+
<s:sequence>
|
259
|
+
<s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
|
260
|
+
<s:element minOccurs="0" maxOccurs="1" name="password" type="s:string" />
|
261
|
+
</s:sequence>
|
262
|
+
</s:complexType>
|
263
|
+
</s:element>
|
264
|
+
<s:element name="ConfirmLoginResponse">
|
265
|
+
<s:complexType>
|
266
|
+
<s:sequence>
|
267
|
+
<s:element minOccurs="1" maxOccurs="1" name="ConfirmLoginResult" type="s:boolean" />
|
268
|
+
</s:sequence>
|
269
|
+
</s:complexType>
|
270
|
+
</s:element>
|
271
|
+
<s:element name="GetTabBarOptions">
|
272
|
+
<s:complexType>
|
273
|
+
<s:sequence>
|
274
|
+
<s:element minOccurs="1" maxOccurs="1" name="iPhoneImages" type="s:boolean" />
|
275
|
+
</s:sequence>
|
276
|
+
</s:complexType>
|
277
|
+
</s:element>
|
278
|
+
<s:element name="GetTabBarOptionsResponse">
|
279
|
+
<s:complexType>
|
280
|
+
<s:sequence>
|
281
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetTabBarOptionsResult" type="s:string" />
|
282
|
+
</s:sequence>
|
283
|
+
</s:complexType>
|
284
|
+
</s:element>
|
285
|
+
<s:element name="GetMruForObject">
|
286
|
+
<s:complexType>
|
287
|
+
<s:sequence>
|
288
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectType" type="s:string" />
|
289
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectNameOrId" type="s:string" />
|
290
|
+
<s:element minOccurs="1" maxOccurs="1" name="includeSystem" type="s:boolean" />
|
291
|
+
<s:element minOccurs="1" maxOccurs="1" name="forceRefresh" type="s:boolean" />
|
292
|
+
</s:sequence>
|
293
|
+
</s:complexType>
|
294
|
+
</s:element>
|
295
|
+
<s:element name="GetMruForObjectResponse">
|
296
|
+
<s:complexType>
|
297
|
+
<s:sequence>
|
298
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetMruForObjectResult" type="s:string" />
|
299
|
+
</s:sequence>
|
300
|
+
</s:complexType>
|
301
|
+
</s:element>
|
302
|
+
<s:element name="ClearMruForObject">
|
303
|
+
<s:complexType>
|
304
|
+
<s:sequence>
|
305
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectType" type="s:string" />
|
306
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectNameOrId" type="s:string" />
|
307
|
+
</s:sequence>
|
308
|
+
</s:complexType>
|
309
|
+
</s:element>
|
310
|
+
<s:element name="ClearMruForObjectResponse">
|
311
|
+
<s:complexType />
|
312
|
+
</s:element>
|
313
|
+
<s:element name="GetItemList">
|
314
|
+
<s:complexType>
|
315
|
+
<s:sequence>
|
316
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectType" type="s:string" />
|
317
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectNameOrId" type="s:string" />
|
318
|
+
<s:element minOccurs="0" maxOccurs="1" name="currentLocation" type="s:string" />
|
319
|
+
<s:element minOccurs="1" maxOccurs="1" name="forceRefresh" type="s:boolean" />
|
320
|
+
</s:sequence>
|
321
|
+
</s:complexType>
|
322
|
+
</s:element>
|
323
|
+
<s:element name="GetItemListResponse">
|
324
|
+
<s:complexType>
|
325
|
+
<s:sequence>
|
326
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetItemListResult" type="s:string" />
|
327
|
+
</s:sequence>
|
328
|
+
</s:complexType>
|
329
|
+
</s:element>
|
330
|
+
<s:element name="GetDashboard">
|
331
|
+
<s:complexType>
|
332
|
+
<s:sequence>
|
333
|
+
<s:element minOccurs="0" maxOccurs="1" name="dashboardId" type="s:string" />
|
334
|
+
<s:element minOccurs="1" maxOccurs="1" name="alertOnly" type="s:boolean" />
|
335
|
+
<s:element minOccurs="1" maxOccurs="1" name="updateMru" type="s:boolean" />
|
336
|
+
<s:element minOccurs="1" maxOccurs="1" name="recordLimit" type="s:int" />
|
337
|
+
</s:sequence>
|
338
|
+
</s:complexType>
|
339
|
+
</s:element>
|
340
|
+
<s:element name="GetDashboardResponse">
|
341
|
+
<s:complexType>
|
342
|
+
<s:sequence>
|
343
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetDashboardResult" type="s:string" />
|
344
|
+
</s:sequence>
|
345
|
+
</s:complexType>
|
346
|
+
</s:element>
|
347
|
+
<s:element name="GetDashboardWithSizes">
|
348
|
+
<s:complexType>
|
349
|
+
<s:sequence>
|
350
|
+
<s:element minOccurs="0" maxOccurs="1" name="dashboardId" type="s:string" />
|
351
|
+
<s:element minOccurs="1" maxOccurs="1" name="alertOnly" type="s:boolean" />
|
352
|
+
<s:element minOccurs="1" maxOccurs="1" name="updateMru" type="s:boolean" />
|
353
|
+
<s:element minOccurs="1" maxOccurs="1" name="widgetWidth" type="s:int" />
|
354
|
+
<s:element minOccurs="1" maxOccurs="1" name="widgetHeight" type="s:int" />
|
355
|
+
<s:element minOccurs="1" maxOccurs="1" name="recordLimit" type="s:int" />
|
356
|
+
</s:sequence>
|
357
|
+
</s:complexType>
|
358
|
+
</s:element>
|
359
|
+
<s:element name="GetDashboardWithSizesResponse">
|
360
|
+
<s:complexType>
|
361
|
+
<s:sequence>
|
362
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetDashboardWithSizesResult" type="s:string" />
|
363
|
+
</s:sequence>
|
364
|
+
</s:complexType>
|
365
|
+
</s:element>
|
366
|
+
<s:element name="GetQueryResults">
|
367
|
+
<s:complexType>
|
368
|
+
<s:sequence>
|
369
|
+
<s:element minOccurs="0" maxOccurs="1" name="queryId" type="s:string" />
|
370
|
+
<s:element minOccurs="1" maxOccurs="1" name="updateMru" type="s:boolean" />
|
371
|
+
<s:element minOccurs="1" maxOccurs="1" name="recordLimit" type="s:int" />
|
372
|
+
<s:element minOccurs="1" maxOccurs="1" name="allowPromptInfo" type="s:boolean" />
|
373
|
+
</s:sequence>
|
374
|
+
</s:complexType>
|
375
|
+
</s:element>
|
376
|
+
<s:element name="GetQueryResultsResponse">
|
377
|
+
<s:complexType>
|
378
|
+
<s:sequence>
|
379
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetQueryResultsResult" type="s:string" />
|
380
|
+
</s:sequence>
|
381
|
+
</s:complexType>
|
382
|
+
</s:element>
|
383
|
+
<s:element name="GetQueryResultsUsingPromptInfo">
|
384
|
+
<s:complexType>
|
385
|
+
<s:sequence>
|
386
|
+
<s:element minOccurs="0" maxOccurs="1" name="queryId" type="s:string" />
|
387
|
+
<s:element minOccurs="1" maxOccurs="1" name="updateMru" type="s:boolean" />
|
388
|
+
<s:element minOccurs="1" maxOccurs="1" name="recordLimit" type="s:int" />
|
389
|
+
<s:element minOccurs="0" maxOccurs="1" name="queryInputs" type="s:string" />
|
390
|
+
</s:sequence>
|
391
|
+
</s:complexType>
|
392
|
+
</s:element>
|
393
|
+
<s:element name="GetQueryResultsUsingPromptInfoResponse">
|
394
|
+
<s:complexType>
|
395
|
+
<s:sequence>
|
396
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetQueryResultsUsingPromptInfoResult" type="s:string" />
|
397
|
+
</s:sequence>
|
398
|
+
</s:complexType>
|
399
|
+
</s:element>
|
400
|
+
<s:element name="GetItemDisplayHtml">
|
401
|
+
<s:complexType>
|
402
|
+
<s:sequence>
|
403
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectType" type="s:string" />
|
404
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectNameOrId" type="s:string" />
|
405
|
+
<s:element minOccurs="0" maxOccurs="1" name="recId" type="s:string" />
|
406
|
+
<s:element minOccurs="1" maxOccurs="1" name="includeActions" type="s:boolean" />
|
407
|
+
</s:sequence>
|
408
|
+
</s:complexType>
|
409
|
+
</s:element>
|
410
|
+
<s:element name="GetItemDisplayHtmlResponse">
|
411
|
+
<s:complexType>
|
412
|
+
<s:sequence>
|
413
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetItemDisplayHtmlResult" type="s:string" />
|
414
|
+
</s:sequence>
|
415
|
+
</s:complexType>
|
416
|
+
</s:element>
|
417
|
+
<s:element name="GetParametersForAction">
|
418
|
+
<s:complexType>
|
419
|
+
<s:sequence>
|
420
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectNameOrId" type="s:string" />
|
421
|
+
<s:element minOccurs="0" maxOccurs="1" name="recId" type="s:string" />
|
422
|
+
<s:element minOccurs="0" maxOccurs="1" name="actionId" type="s:string" />
|
423
|
+
</s:sequence>
|
424
|
+
</s:complexType>
|
425
|
+
</s:element>
|
426
|
+
<s:element name="GetParametersForActionResponse">
|
427
|
+
<s:complexType>
|
428
|
+
<s:sequence>
|
429
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetParametersForActionResult" type="s:string" />
|
430
|
+
</s:sequence>
|
431
|
+
</s:complexType>
|
432
|
+
</s:element>
|
433
|
+
<s:element name="ExecuteAction">
|
434
|
+
<s:complexType>
|
435
|
+
<s:sequence>
|
436
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectType" type="s:string" />
|
437
|
+
<s:element minOccurs="0" maxOccurs="1" name="objectNameOrId" type="s:string" />
|
438
|
+
<s:element minOccurs="0" maxOccurs="1" name="recId" type="s:string" />
|
439
|
+
<s:element minOccurs="0" maxOccurs="1" name="actionId" type="s:string" />
|
440
|
+
<s:element minOccurs="0" maxOccurs="1" name="actionInputs" type="s:string" />
|
441
|
+
<s:element minOccurs="1" maxOccurs="1" name="returnNewHtmlOnSuccess" type="s:boolean" />
|
442
|
+
<s:element minOccurs="1" maxOccurs="1" name="returnAvailableActionsOnSuccess" type="s:boolean" />
|
443
|
+
</s:sequence>
|
444
|
+
</s:complexType>
|
445
|
+
</s:element>
|
446
|
+
<s:element name="ExecuteActionResponse">
|
447
|
+
<s:complexType>
|
448
|
+
<s:sequence>
|
449
|
+
<s:element minOccurs="0" maxOccurs="1" name="ExecuteActionResult" type="s:string" />
|
450
|
+
</s:sequence>
|
451
|
+
</s:complexType>
|
452
|
+
</s:element>
|
453
|
+
<s:element name="GetImages">
|
454
|
+
<s:complexType>
|
455
|
+
<s:sequence>
|
456
|
+
<s:element minOccurs="0" maxOccurs="1" name="imageIds" type="s:string" />
|
457
|
+
<s:element minOccurs="1" maxOccurs="1" name="width" type="s:int" />
|
458
|
+
<s:element minOccurs="1" maxOccurs="1" name="height" type="s:int" />
|
459
|
+
</s:sequence>
|
460
|
+
</s:complexType>
|
461
|
+
</s:element>
|
462
|
+
<s:element name="GetImagesResponse">
|
463
|
+
<s:complexType>
|
464
|
+
<s:sequence>
|
465
|
+
<s:element minOccurs="0" maxOccurs="1" name="GetImagesResult" type="s:string" />
|
466
|
+
</s:sequence>
|
467
|
+
</s:complexType>
|
468
|
+
</s:element>
|
469
|
+
<s:element name="QueryForWidgetDataAtPos">
|
470
|
+
<s:complexType>
|
471
|
+
<s:sequence>
|
472
|
+
<s:element minOccurs="0" maxOccurs="1" name="widgetId" type="s:string" />
|
473
|
+
<s:element minOccurs="1" maxOccurs="1" name="x" type="s:int" />
|
474
|
+
<s:element minOccurs="1" maxOccurs="1" name="y" type="s:int" />
|
475
|
+
<s:element minOccurs="1" maxOccurs="1" name="recordLimit" type="s:int" />
|
476
|
+
</s:sequence>
|
477
|
+
</s:complexType>
|
478
|
+
</s:element>
|
479
|
+
<s:element name="QueryForWidgetDataAtPosResponse">
|
480
|
+
<s:complexType>
|
481
|
+
<s:sequence>
|
482
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryForWidgetDataAtPosResult" type="s:string" />
|
483
|
+
</s:sequence>
|
484
|
+
</s:complexType>
|
485
|
+
</s:element>
|
486
|
+
<s:element name="QueryForWidgetDataAtPosWithSizes">
|
487
|
+
<s:complexType>
|
488
|
+
<s:sequence>
|
489
|
+
<s:element minOccurs="0" maxOccurs="1" name="widgetId" type="s:string" />
|
490
|
+
<s:element minOccurs="1" maxOccurs="1" name="x" type="s:int" />
|
491
|
+
<s:element minOccurs="1" maxOccurs="1" name="y" type="s:int" />
|
492
|
+
<s:element minOccurs="1" maxOccurs="1" name="widgetWidth" type="s:int" />
|
493
|
+
<s:element minOccurs="1" maxOccurs="1" name="widgetHeight" type="s:int" />
|
494
|
+
<s:element minOccurs="1" maxOccurs="1" name="recordLimit" type="s:int" />
|
495
|
+
</s:sequence>
|
496
|
+
</s:complexType>
|
497
|
+
</s:element>
|
498
|
+
<s:element name="QueryForWidgetDataAtPosWithSizesResponse">
|
499
|
+
<s:complexType>
|
500
|
+
<s:sequence>
|
501
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryForWidgetDataAtPosWithSizesResult" type="s:string" />
|
502
|
+
</s:sequence>
|
503
|
+
</s:complexType>
|
504
|
+
</s:element>
|
505
|
+
<s:element name="QueryForWidgetImage">
|
506
|
+
<s:complexType>
|
507
|
+
<s:sequence>
|
508
|
+
<s:element minOccurs="0" maxOccurs="1" name="widgetId" type="s:string" />
|
509
|
+
</s:sequence>
|
510
|
+
</s:complexType>
|
511
|
+
</s:element>
|
512
|
+
<s:element name="QueryForWidgetImageResponse">
|
513
|
+
<s:complexType>
|
514
|
+
<s:sequence>
|
515
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryForWidgetImageResult" type="s:string" />
|
516
|
+
</s:sequence>
|
517
|
+
</s:complexType>
|
518
|
+
</s:element>
|
519
|
+
<s:element name="QueryForWidgetImageWithSizes">
|
520
|
+
<s:complexType>
|
521
|
+
<s:sequence>
|
522
|
+
<s:element minOccurs="0" maxOccurs="1" name="widgetId" type="s:string" />
|
523
|
+
<s:element minOccurs="1" maxOccurs="1" name="widgetWidth" type="s:int" />
|
524
|
+
<s:element minOccurs="1" maxOccurs="1" name="widgetHeight" type="s:int" />
|
525
|
+
</s:sequence>
|
526
|
+
</s:complexType>
|
527
|
+
</s:element>
|
528
|
+
<s:element name="QueryForWidgetImageWithSizesResponse">
|
529
|
+
<s:complexType>
|
530
|
+
<s:sequence>
|
531
|
+
<s:element minOccurs="0" maxOccurs="1" name="QueryForWidgetImageWithSizesResult" type="s:string" />
|
532
|
+
</s:sequence>
|
533
|
+
</s:complexType>
|
534
|
+
</s:element>
|
535
|
+
</s:schema>
|
536
|
+
</wsdl:types>
|
537
|
+
<wsdl:message name="LoginSoapIn">
|
538
|
+
<wsdl:part name="parameters" element="tns:Login" />
|
539
|
+
</wsdl:message>
|
540
|
+
<wsdl:message name="LoginSoapOut">
|
541
|
+
<wsdl:part name="parameters" element="tns:LoginResponse" />
|
542
|
+
</wsdl:message>
|
543
|
+
<wsdl:message name="MobileLoginSoapIn">
|
544
|
+
<wsdl:part name="parameters" element="tns:MobileLogin" />
|
545
|
+
</wsdl:message>
|
546
|
+
<wsdl:message name="MobileLoginSoapOut">
|
547
|
+
<wsdl:part name="parameters" element="tns:MobileLoginResponse" />
|
548
|
+
</wsdl:message>
|
549
|
+
<wsdl:message name="LoginWithProductCodeSoapIn">
|
550
|
+
<wsdl:part name="parameters" element="tns:LoginWithProductCode" />
|
551
|
+
</wsdl:message>
|
552
|
+
<wsdl:message name="LoginWithProductCodeSoapOut">
|
553
|
+
<wsdl:part name="parameters" element="tns:LoginWithProductCodeResponse" />
|
554
|
+
</wsdl:message>
|
555
|
+
<wsdl:message name="LogoutSoapIn">
|
556
|
+
<wsdl:part name="parameters" element="tns:Logout" />
|
557
|
+
</wsdl:message>
|
558
|
+
<wsdl:message name="LogoutSoapOut">
|
559
|
+
<wsdl:part name="parameters" element="tns:LogoutResponse" />
|
560
|
+
</wsdl:message>
|
561
|
+
<wsdl:message name="MobileLogoutSoapIn">
|
562
|
+
<wsdl:part name="parameters" element="tns:MobileLogout" />
|
563
|
+
</wsdl:message>
|
564
|
+
<wsdl:message name="MobileLogoutSoapOut">
|
565
|
+
<wsdl:part name="parameters" element="tns:MobileLogoutResponse" />
|
566
|
+
</wsdl:message>
|
567
|
+
<wsdl:message name="GetiCherwellCredentialsModeSoapIn">
|
568
|
+
<wsdl:part name="parameters" element="tns:GetiCherwellCredentialsMode" />
|
569
|
+
</wsdl:message>
|
570
|
+
<wsdl:message name="GetiCherwellCredentialsModeSoapOut">
|
571
|
+
<wsdl:part name="parameters" element="tns:GetiCherwellCredentialsModeResponse" />
|
572
|
+
</wsdl:message>
|
573
|
+
<wsdl:message name="GetLastErrorSoapIn">
|
574
|
+
<wsdl:part name="parameters" element="tns:GetLastError" />
|
575
|
+
</wsdl:message>
|
576
|
+
<wsdl:message name="GetLastErrorSoapOut">
|
577
|
+
<wsdl:part name="parameters" element="tns:GetLastErrorResponse" />
|
578
|
+
</wsdl:message>
|
579
|
+
<wsdl:message name="GetLastError2SoapIn">
|
580
|
+
<wsdl:part name="parameters" element="tns:GetLastError2" />
|
581
|
+
</wsdl:message>
|
582
|
+
<wsdl:message name="GetLastError2SoapOut">
|
583
|
+
<wsdl:part name="parameters" element="tns:GetLastError2Response" />
|
584
|
+
</wsdl:message>
|
585
|
+
<wsdl:message name="GetBusinessObjectDefinitionSoapIn">
|
586
|
+
<wsdl:part name="parameters" element="tns:GetBusinessObjectDefinition" />
|
587
|
+
</wsdl:message>
|
588
|
+
<wsdl:message name="GetBusinessObjectDefinitionSoapOut">
|
589
|
+
<wsdl:part name="parameters" element="tns:GetBusinessObjectDefinitionResponse" />
|
590
|
+
</wsdl:message>
|
591
|
+
<wsdl:message name="QueryByFieldValueSoapIn">
|
592
|
+
<wsdl:part name="parameters" element="tns:QueryByFieldValue" />
|
593
|
+
</wsdl:message>
|
594
|
+
<wsdl:message name="QueryByFieldValueSoapOut">
|
595
|
+
<wsdl:part name="parameters" element="tns:QueryByFieldValueResponse" />
|
596
|
+
</wsdl:message>
|
597
|
+
<wsdl:message name="QueryByStoredQuerySoapIn">
|
598
|
+
<wsdl:part name="parameters" element="tns:QueryByStoredQuery" />
|
599
|
+
</wsdl:message>
|
600
|
+
<wsdl:message name="QueryByStoredQuerySoapOut">
|
601
|
+
<wsdl:part name="parameters" element="tns:QueryByStoredQueryResponse" />
|
602
|
+
</wsdl:message>
|
603
|
+
<wsdl:message name="QueryByStoredQueryWithScopeSoapIn">
|
604
|
+
<wsdl:part name="parameters" element="tns:QueryByStoredQueryWithScope" />
|
605
|
+
</wsdl:message>
|
606
|
+
<wsdl:message name="QueryByStoredQueryWithScopeSoapOut">
|
607
|
+
<wsdl:part name="parameters" element="tns:QueryByStoredQueryWithScopeResponse" />
|
608
|
+
</wsdl:message>
|
609
|
+
<wsdl:message name="GetBusinessObjectSoapIn">
|
610
|
+
<wsdl:part name="parameters" element="tns:GetBusinessObject" />
|
611
|
+
</wsdl:message>
|
612
|
+
<wsdl:message name="GetBusinessObjectSoapOut">
|
613
|
+
<wsdl:part name="parameters" element="tns:GetBusinessObjectResponse" />
|
614
|
+
</wsdl:message>
|
615
|
+
<wsdl:message name="GetBusinessObjectByPublicIdSoapIn">
|
616
|
+
<wsdl:part name="parameters" element="tns:GetBusinessObjectByPublicId" />
|
617
|
+
</wsdl:message>
|
618
|
+
<wsdl:message name="GetBusinessObjectByPublicIdSoapOut">
|
619
|
+
<wsdl:part name="parameters" element="tns:GetBusinessObjectByPublicIdResponse" />
|
620
|
+
</wsdl:message>
|
621
|
+
<wsdl:message name="CreateBusinessObjectSoapIn">
|
622
|
+
<wsdl:part name="parameters" element="tns:CreateBusinessObject" />
|
623
|
+
</wsdl:message>
|
624
|
+
<wsdl:message name="CreateBusinessObjectSoapOut">
|
625
|
+
<wsdl:part name="parameters" element="tns:CreateBusinessObjectResponse" />
|
626
|
+
</wsdl:message>
|
627
|
+
<wsdl:message name="UpdateBusinessObjectSoapIn">
|
628
|
+
<wsdl:part name="parameters" element="tns:UpdateBusinessObject" />
|
629
|
+
</wsdl:message>
|
630
|
+
<wsdl:message name="UpdateBusinessObjectSoapOut">
|
631
|
+
<wsdl:part name="parameters" element="tns:UpdateBusinessObjectResponse" />
|
632
|
+
</wsdl:message>
|
633
|
+
<wsdl:message name="UpdateBusinessObjectByPublicIdSoapIn">
|
634
|
+
<wsdl:part name="parameters" element="tns:UpdateBusinessObjectByPublicId" />
|
635
|
+
</wsdl:message>
|
636
|
+
<wsdl:message name="UpdateBusinessObjectByPublicIdSoapOut">
|
637
|
+
<wsdl:part name="parameters" element="tns:UpdateBusinessObjectByPublicIdResponse" />
|
638
|
+
</wsdl:message>
|
639
|
+
<wsdl:message name="GetApiVersionSoapIn">
|
640
|
+
<wsdl:part name="parameters" element="tns:GetApiVersion" />
|
641
|
+
</wsdl:message>
|
642
|
+
<wsdl:message name="GetApiVersionSoapOut">
|
643
|
+
<wsdl:part name="parameters" element="tns:GetApiVersionResponse" />
|
644
|
+
</wsdl:message>
|
645
|
+
<wsdl:message name="ConfirmLoginSoapIn">
|
646
|
+
<wsdl:part name="parameters" element="tns:ConfirmLogin" />
|
647
|
+
</wsdl:message>
|
648
|
+
<wsdl:message name="ConfirmLoginSoapOut">
|
649
|
+
<wsdl:part name="parameters" element="tns:ConfirmLoginResponse" />
|
650
|
+
</wsdl:message>
|
651
|
+
<wsdl:message name="GetTabBarOptionsSoapIn">
|
652
|
+
<wsdl:part name="parameters" element="tns:GetTabBarOptions" />
|
653
|
+
</wsdl:message>
|
654
|
+
<wsdl:message name="GetTabBarOptionsSoapOut">
|
655
|
+
<wsdl:part name="parameters" element="tns:GetTabBarOptionsResponse" />
|
656
|
+
</wsdl:message>
|
657
|
+
<wsdl:message name="GetMruForObjectSoapIn">
|
658
|
+
<wsdl:part name="parameters" element="tns:GetMruForObject" />
|
659
|
+
</wsdl:message>
|
660
|
+
<wsdl:message name="GetMruForObjectSoapOut">
|
661
|
+
<wsdl:part name="parameters" element="tns:GetMruForObjectResponse" />
|
662
|
+
</wsdl:message>
|
663
|
+
<wsdl:message name="ClearMruForObjectSoapIn">
|
664
|
+
<wsdl:part name="parameters" element="tns:ClearMruForObject" />
|
665
|
+
</wsdl:message>
|
666
|
+
<wsdl:message name="ClearMruForObjectSoapOut">
|
667
|
+
<wsdl:part name="parameters" element="tns:ClearMruForObjectResponse" />
|
668
|
+
</wsdl:message>
|
669
|
+
<wsdl:message name="GetItemListSoapIn">
|
670
|
+
<wsdl:part name="parameters" element="tns:GetItemList" />
|
671
|
+
</wsdl:message>
|
672
|
+
<wsdl:message name="GetItemListSoapOut">
|
673
|
+
<wsdl:part name="parameters" element="tns:GetItemListResponse" />
|
674
|
+
</wsdl:message>
|
675
|
+
<wsdl:message name="GetDashboardSoapIn">
|
676
|
+
<wsdl:part name="parameters" element="tns:GetDashboard" />
|
677
|
+
</wsdl:message>
|
678
|
+
<wsdl:message name="GetDashboardSoapOut">
|
679
|
+
<wsdl:part name="parameters" element="tns:GetDashboardResponse" />
|
680
|
+
</wsdl:message>
|
681
|
+
<wsdl:message name="GetDashboardWithSizesSoapIn">
|
682
|
+
<wsdl:part name="parameters" element="tns:GetDashboardWithSizes" />
|
683
|
+
</wsdl:message>
|
684
|
+
<wsdl:message name="GetDashboardWithSizesSoapOut">
|
685
|
+
<wsdl:part name="parameters" element="tns:GetDashboardWithSizesResponse" />
|
686
|
+
</wsdl:message>
|
687
|
+
<wsdl:message name="GetQueryResultsSoapIn">
|
688
|
+
<wsdl:part name="parameters" element="tns:GetQueryResults" />
|
689
|
+
</wsdl:message>
|
690
|
+
<wsdl:message name="GetQueryResultsSoapOut">
|
691
|
+
<wsdl:part name="parameters" element="tns:GetQueryResultsResponse" />
|
692
|
+
</wsdl:message>
|
693
|
+
<wsdl:message name="GetQueryResultsUsingPromptInfoSoapIn">
|
694
|
+
<wsdl:part name="parameters" element="tns:GetQueryResultsUsingPromptInfo" />
|
695
|
+
</wsdl:message>
|
696
|
+
<wsdl:message name="GetQueryResultsUsingPromptInfoSoapOut">
|
697
|
+
<wsdl:part name="parameters" element="tns:GetQueryResultsUsingPromptInfoResponse" />
|
698
|
+
</wsdl:message>
|
699
|
+
<wsdl:message name="GetItemDisplayHtmlSoapIn">
|
700
|
+
<wsdl:part name="parameters" element="tns:GetItemDisplayHtml" />
|
701
|
+
</wsdl:message>
|
702
|
+
<wsdl:message name="GetItemDisplayHtmlSoapOut">
|
703
|
+
<wsdl:part name="parameters" element="tns:GetItemDisplayHtmlResponse" />
|
704
|
+
</wsdl:message>
|
705
|
+
<wsdl:message name="GetParametersForActionSoapIn">
|
706
|
+
<wsdl:part name="parameters" element="tns:GetParametersForAction" />
|
707
|
+
</wsdl:message>
|
708
|
+
<wsdl:message name="GetParametersForActionSoapOut">
|
709
|
+
<wsdl:part name="parameters" element="tns:GetParametersForActionResponse" />
|
710
|
+
</wsdl:message>
|
711
|
+
<wsdl:message name="ExecuteActionSoapIn">
|
712
|
+
<wsdl:part name="parameters" element="tns:ExecuteAction" />
|
713
|
+
</wsdl:message>
|
714
|
+
<wsdl:message name="ExecuteActionSoapOut">
|
715
|
+
<wsdl:part name="parameters" element="tns:ExecuteActionResponse" />
|
716
|
+
</wsdl:message>
|
717
|
+
<wsdl:message name="GetImagesSoapIn">
|
718
|
+
<wsdl:part name="parameters" element="tns:GetImages" />
|
719
|
+
</wsdl:message>
|
720
|
+
<wsdl:message name="GetImagesSoapOut">
|
721
|
+
<wsdl:part name="parameters" element="tns:GetImagesResponse" />
|
722
|
+
</wsdl:message>
|
723
|
+
<wsdl:message name="QueryForWidgetDataAtPosSoapIn">
|
724
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetDataAtPos" />
|
725
|
+
</wsdl:message>
|
726
|
+
<wsdl:message name="QueryForWidgetDataAtPosSoapOut">
|
727
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetDataAtPosResponse" />
|
728
|
+
</wsdl:message>
|
729
|
+
<wsdl:message name="QueryForWidgetDataAtPosWithSizesSoapIn">
|
730
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetDataAtPosWithSizes" />
|
731
|
+
</wsdl:message>
|
732
|
+
<wsdl:message name="QueryForWidgetDataAtPosWithSizesSoapOut">
|
733
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetDataAtPosWithSizesResponse" />
|
734
|
+
</wsdl:message>
|
735
|
+
<wsdl:message name="QueryForWidgetImageSoapIn">
|
736
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetImage" />
|
737
|
+
</wsdl:message>
|
738
|
+
<wsdl:message name="QueryForWidgetImageSoapOut">
|
739
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetImageResponse" />
|
740
|
+
</wsdl:message>
|
741
|
+
<wsdl:message name="QueryForWidgetImageWithSizesSoapIn">
|
742
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetImageWithSizes" />
|
743
|
+
</wsdl:message>
|
744
|
+
<wsdl:message name="QueryForWidgetImageWithSizesSoapOut">
|
745
|
+
<wsdl:part name="parameters" element="tns:QueryForWidgetImageWithSizesResponse" />
|
746
|
+
</wsdl:message>
|
747
|
+
<wsdl:portType name="apiSoap">
|
748
|
+
<wsdl:operation name="Login">
|
749
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Establish a session and log in.</wsdl:documentation>
|
750
|
+
<wsdl:input message="tns:LoginSoapIn" />
|
751
|
+
<wsdl:output message="tns:LoginSoapOut" />
|
752
|
+
</wsdl:operation>
|
753
|
+
<wsdl:operation name="MobileLogin">
|
754
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Establish a session and log in for mobile devices.</wsdl:documentation>
|
755
|
+
<wsdl:input message="tns:MobileLoginSoapIn" />
|
756
|
+
<wsdl:output message="tns:MobileLoginSoapOut" />
|
757
|
+
</wsdl:operation>
|
758
|
+
<wsdl:operation name="LoginWithProductCode">
|
759
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Establish a session and log in, with a specified product code.</wsdl:documentation>
|
760
|
+
<wsdl:input message="tns:LoginWithProductCodeSoapIn" />
|
761
|
+
<wsdl:output message="tns:LoginWithProductCodeSoapOut" />
|
762
|
+
</wsdl:operation>
|
763
|
+
<wsdl:operation name="Logout">
|
764
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Close down a session and Logout</wsdl:documentation>
|
765
|
+
<wsdl:input message="tns:LogoutSoapIn" />
|
766
|
+
<wsdl:output message="tns:LogoutSoapOut" />
|
767
|
+
</wsdl:operation>
|
768
|
+
<wsdl:operation name="MobileLogout">
|
769
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Close down a mobile session and Logout</wsdl:documentation>
|
770
|
+
<wsdl:input message="tns:MobileLogoutSoapIn" />
|
771
|
+
<wsdl:output message="tns:MobileLogoutSoapOut" />
|
772
|
+
</wsdl:operation>
|
773
|
+
<wsdl:operation name="GetiCherwellCredentialsMode">
|
774
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Returns the required login mode for iCherwell - 0 means can store User ID and Password, 1 iCherwell can store the User ID, but must prompt for Password, 2 meansiCherwell must prompt for both the User ID and Password.</wsdl:documentation>
|
775
|
+
<wsdl:input message="tns:GetiCherwellCredentialsModeSoapIn" />
|
776
|
+
<wsdl:output message="tns:GetiCherwellCredentialsModeSoapOut" />
|
777
|
+
</wsdl:operation>
|
778
|
+
<wsdl:operation name="GetLastError">
|
779
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Get the last error that occurred in the session.</wsdl:documentation>
|
780
|
+
<wsdl:input message="tns:GetLastErrorSoapIn" />
|
781
|
+
<wsdl:output message="tns:GetLastErrorSoapOut" />
|
782
|
+
</wsdl:operation>
|
783
|
+
<wsdl:operation name="GetLastError2">
|
784
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Get the last error. Return header and sub-header messages.</wsdl:documentation>
|
785
|
+
<wsdl:input message="tns:GetLastError2SoapIn" />
|
786
|
+
<wsdl:output message="tns:GetLastError2SoapOut" />
|
787
|
+
</wsdl:operation>
|
788
|
+
<wsdl:operation name="GetBusinessObjectDefinition">
|
789
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Get a business object definition.</wsdl:documentation>
|
790
|
+
<wsdl:input message="tns:GetBusinessObjectDefinitionSoapIn" />
|
791
|
+
<wsdl:output message="tns:GetBusinessObjectDefinitionSoapOut" />
|
792
|
+
</wsdl:operation>
|
793
|
+
<wsdl:operation name="QueryByFieldValue">
|
794
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Query for a specific field value.</wsdl:documentation>
|
795
|
+
<wsdl:input message="tns:QueryByFieldValueSoapIn" />
|
796
|
+
<wsdl:output message="tns:QueryByFieldValueSoapOut" />
|
797
|
+
</wsdl:operation>
|
798
|
+
<wsdl:operation name="QueryByStoredQuery">
|
799
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Query using a specific stored query.</wsdl:documentation>
|
800
|
+
<wsdl:input message="tns:QueryByStoredQuerySoapIn" />
|
801
|
+
<wsdl:output message="tns:QueryByStoredQuerySoapOut" />
|
802
|
+
</wsdl:operation>
|
803
|
+
<wsdl:operation name="QueryByStoredQueryWithScope">
|
804
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Query using a specific stored query with scope.</wsdl:documentation>
|
805
|
+
<wsdl:input message="tns:QueryByStoredQueryWithScopeSoapIn" />
|
806
|
+
<wsdl:output message="tns:QueryByStoredQueryWithScopeSoapOut" />
|
807
|
+
</wsdl:operation>
|
808
|
+
<wsdl:operation name="GetBusinessObject">
|
809
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves a business object based on its record ID.</wsdl:documentation>
|
810
|
+
<wsdl:input message="tns:GetBusinessObjectSoapIn" />
|
811
|
+
<wsdl:output message="tns:GetBusinessObjectSoapOut" />
|
812
|
+
</wsdl:operation>
|
813
|
+
<wsdl:operation name="GetBusinessObjectByPublicId">
|
814
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves a business object based on its public ID.</wsdl:documentation>
|
815
|
+
<wsdl:input message="tns:GetBusinessObjectByPublicIdSoapIn" />
|
816
|
+
<wsdl:output message="tns:GetBusinessObjectByPublicIdSoapOut" />
|
817
|
+
</wsdl:operation>
|
818
|
+
<wsdl:operation name="CreateBusinessObject">
|
819
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Create a new business object and populate it based on the passed XML.</wsdl:documentation>
|
820
|
+
<wsdl:input message="tns:CreateBusinessObjectSoapIn" />
|
821
|
+
<wsdl:output message="tns:CreateBusinessObjectSoapOut" />
|
822
|
+
</wsdl:operation>
|
823
|
+
<wsdl:operation name="UpdateBusinessObject">
|
824
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Locates a business object by its RecID and updates it based on the passed XML.</wsdl:documentation>
|
825
|
+
<wsdl:input message="tns:UpdateBusinessObjectSoapIn" />
|
826
|
+
<wsdl:output message="tns:UpdateBusinessObjectSoapOut" />
|
827
|
+
</wsdl:operation>
|
828
|
+
<wsdl:operation name="UpdateBusinessObjectByPublicId">
|
829
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Locates a business object by its RecID and updates it based on the passed XML.</wsdl:documentation>
|
830
|
+
<wsdl:input message="tns:UpdateBusinessObjectByPublicIdSoapIn" />
|
831
|
+
<wsdl:output message="tns:UpdateBusinessObjectByPublicIdSoapOut" />
|
832
|
+
</wsdl:operation>
|
833
|
+
<wsdl:operation name="GetApiVersion">
|
834
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Returns official version number</wsdl:documentation>
|
835
|
+
<wsdl:input message="tns:GetApiVersionSoapIn" />
|
836
|
+
<wsdl:output message="tns:GetApiVersionSoapOut" />
|
837
|
+
</wsdl:operation>
|
838
|
+
<wsdl:operation name="ConfirmLogin">
|
839
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Confirm connectivity and login credentials.</wsdl:documentation>
|
840
|
+
<wsdl:input message="tns:ConfirmLoginSoapIn" />
|
841
|
+
<wsdl:output message="tns:ConfirmLoginSoapOut" />
|
842
|
+
</wsdl:operation>
|
843
|
+
<wsdl:operation name="GetTabBarOptions">
|
844
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Gets a list of all of the available items for the tab bar, in the default order.</wsdl:documentation>
|
845
|
+
<wsdl:input message="tns:GetTabBarOptionsSoapIn" />
|
846
|
+
<wsdl:output message="tns:GetTabBarOptionsSoapOut" />
|
847
|
+
</wsdl:operation>
|
848
|
+
<wsdl:operation name="GetMruForObject">
|
849
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This returns the items that should appear on a list of objects</wsdl:documentation>
|
850
|
+
<wsdl:input message="tns:GetMruForObjectSoapIn" />
|
851
|
+
<wsdl:output message="tns:GetMruForObjectSoapOut" />
|
852
|
+
</wsdl:operation>
|
853
|
+
<wsdl:operation name="ClearMruForObject">
|
854
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Removes all entries in the MRU for the specified object type and ID</wsdl:documentation>
|
855
|
+
<wsdl:input message="tns:ClearMruForObjectSoapIn" />
|
856
|
+
<wsdl:output message="tns:ClearMruForObjectSoapOut" />
|
857
|
+
</wsdl:operation>
|
858
|
+
<wsdl:operation name="GetItemList">
|
859
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This returns the items that should appear on a list of objects</wsdl:documentation>
|
860
|
+
<wsdl:input message="tns:GetItemListSoapIn" />
|
861
|
+
<wsdl:output message="tns:GetItemListSoapOut" />
|
862
|
+
</wsdl:operation>
|
863
|
+
<wsdl:operation name="GetDashboard">
|
864
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This returns the contents of the specified dashboard, including images for items.</wsdl:documentation>
|
865
|
+
<wsdl:input message="tns:GetDashboardSoapIn" />
|
866
|
+
<wsdl:output message="tns:GetDashboardSoapOut" />
|
867
|
+
</wsdl:operation>
|
868
|
+
<wsdl:operation name="GetDashboardWithSizes">
|
869
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This returns the contents of the specified dashboard, including images for items.</wsdl:documentation>
|
870
|
+
<wsdl:input message="tns:GetDashboardWithSizesSoapIn" />
|
871
|
+
<wsdl:output message="tns:GetDashboardWithSizesSoapOut" />
|
872
|
+
</wsdl:operation>
|
873
|
+
<wsdl:operation name="GetQueryResults">
|
874
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This returns the results of a specified query.</wsdl:documentation>
|
875
|
+
<wsdl:input message="tns:GetQueryResultsSoapIn" />
|
876
|
+
<wsdl:output message="tns:GetQueryResultsSoapOut" />
|
877
|
+
</wsdl:operation>
|
878
|
+
<wsdl:operation name="GetQueryResultsUsingPromptInfo">
|
879
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This returns the results of a specified query.</wsdl:documentation>
|
880
|
+
<wsdl:input message="tns:GetQueryResultsUsingPromptInfoSoapIn" />
|
881
|
+
<wsdl:output message="tns:GetQueryResultsUsingPromptInfoSoapOut" />
|
882
|
+
</wsdl:operation>
|
883
|
+
<wsdl:operation name="GetItemDisplayHtml">
|
884
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves the html to display a business object.</wsdl:documentation>
|
885
|
+
<wsdl:input message="tns:GetItemDisplayHtmlSoapIn" />
|
886
|
+
<wsdl:output message="tns:GetItemDisplayHtmlSoapOut" />
|
887
|
+
</wsdl:operation>
|
888
|
+
<wsdl:operation name="GetParametersForAction">
|
889
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Gets the list of parameters needed by the specified action.</wsdl:documentation>
|
890
|
+
<wsdl:input message="tns:GetParametersForActionSoapIn" />
|
891
|
+
<wsdl:output message="tns:GetParametersForActionSoapOut" />
|
892
|
+
</wsdl:operation>
|
893
|
+
<wsdl:operation name="ExecuteAction">
|
894
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Executes a specified action against a specified record.</wsdl:documentation>
|
895
|
+
<wsdl:input message="tns:ExecuteActionSoapIn" />
|
896
|
+
<wsdl:output message="tns:ExecuteActionSoapOut" />
|
897
|
+
</wsdl:operation>
|
898
|
+
<wsdl:operation name="GetImages">
|
899
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">This method returns encoded versions of the specified images.</wsdl:documentation>
|
900
|
+
<wsdl:input message="tns:GetImagesSoapIn" />
|
901
|
+
<wsdl:output message="tns:GetImagesSoapOut" />
|
902
|
+
</wsdl:operation>
|
903
|
+
<wsdl:operation name="QueryForWidgetDataAtPos">
|
904
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves widget data for specified x,y position in widget</wsdl:documentation>
|
905
|
+
<wsdl:input message="tns:QueryForWidgetDataAtPosSoapIn" />
|
906
|
+
<wsdl:output message="tns:QueryForWidgetDataAtPosSoapOut" />
|
907
|
+
</wsdl:operation>
|
908
|
+
<wsdl:operation name="QueryForWidgetDataAtPosWithSizes">
|
909
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves widget data for specified x,y position in widget</wsdl:documentation>
|
910
|
+
<wsdl:input message="tns:QueryForWidgetDataAtPosWithSizesSoapIn" />
|
911
|
+
<wsdl:output message="tns:QueryForWidgetDataAtPosWithSizesSoapOut" />
|
912
|
+
</wsdl:operation>
|
913
|
+
<wsdl:operation name="QueryForWidgetImage">
|
914
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves widget image</wsdl:documentation>
|
915
|
+
<wsdl:input message="tns:QueryForWidgetImageSoapIn" />
|
916
|
+
<wsdl:output message="tns:QueryForWidgetImageSoapOut" />
|
917
|
+
</wsdl:operation>
|
918
|
+
<wsdl:operation name="QueryForWidgetImageWithSizes">
|
919
|
+
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Retrieves widget image</wsdl:documentation>
|
920
|
+
<wsdl:input message="tns:QueryForWidgetImageWithSizesSoapIn" />
|
921
|
+
<wsdl:output message="tns:QueryForWidgetImageWithSizesSoapOut" />
|
922
|
+
</wsdl:operation>
|
923
|
+
</wsdl:portType>
|
924
|
+
<wsdl:binding name="apiSoap" type="tns:apiSoap">
|
925
|
+
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
926
|
+
<wsdl:operation name="Login">
|
927
|
+
<soap:operation soapAction="http://cherwellsoftware.com/Login" style="document" />
|
928
|
+
<wsdl:input>
|
929
|
+
<soap:body use="literal" />
|
930
|
+
</wsdl:input>
|
931
|
+
<wsdl:output>
|
932
|
+
<soap:body use="literal" />
|
933
|
+
</wsdl:output>
|
934
|
+
</wsdl:operation>
|
935
|
+
<wsdl:operation name="MobileLogin">
|
936
|
+
<soap:operation soapAction="http://cherwellsoftware.com/MobileLogin" style="document" />
|
937
|
+
<wsdl:input>
|
938
|
+
<soap:body use="literal" />
|
939
|
+
</wsdl:input>
|
940
|
+
<wsdl:output>
|
941
|
+
<soap:body use="literal" />
|
942
|
+
</wsdl:output>
|
943
|
+
</wsdl:operation>
|
944
|
+
<wsdl:operation name="LoginWithProductCode">
|
945
|
+
<soap:operation soapAction="http://cherwellsoftware.com/LoginWithProductCode" style="document" />
|
946
|
+
<wsdl:input>
|
947
|
+
<soap:body use="literal" />
|
948
|
+
</wsdl:input>
|
949
|
+
<wsdl:output>
|
950
|
+
<soap:body use="literal" />
|
951
|
+
</wsdl:output>
|
952
|
+
</wsdl:operation>
|
953
|
+
<wsdl:operation name="Logout">
|
954
|
+
<soap:operation soapAction="http://cherwellsoftware.com/Logout" style="document" />
|
955
|
+
<wsdl:input>
|
956
|
+
<soap:body use="literal" />
|
957
|
+
</wsdl:input>
|
958
|
+
<wsdl:output>
|
959
|
+
<soap:body use="literal" />
|
960
|
+
</wsdl:output>
|
961
|
+
</wsdl:operation>
|
962
|
+
<wsdl:operation name="MobileLogout">
|
963
|
+
<soap:operation soapAction="http://cherwellsoftware.com/MobileLogout" style="document" />
|
964
|
+
<wsdl:input>
|
965
|
+
<soap:body use="literal" />
|
966
|
+
</wsdl:input>
|
967
|
+
<wsdl:output>
|
968
|
+
<soap:body use="literal" />
|
969
|
+
</wsdl:output>
|
970
|
+
</wsdl:operation>
|
971
|
+
<wsdl:operation name="GetiCherwellCredentialsMode">
|
972
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetiCherwellCredentialsMode" style="document" />
|
973
|
+
<wsdl:input>
|
974
|
+
<soap:body use="literal" />
|
975
|
+
</wsdl:input>
|
976
|
+
<wsdl:output>
|
977
|
+
<soap:body use="literal" />
|
978
|
+
</wsdl:output>
|
979
|
+
</wsdl:operation>
|
980
|
+
<wsdl:operation name="GetLastError">
|
981
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetLastError" style="document" />
|
982
|
+
<wsdl:input>
|
983
|
+
<soap:body use="literal" />
|
984
|
+
</wsdl:input>
|
985
|
+
<wsdl:output>
|
986
|
+
<soap:body use="literal" />
|
987
|
+
</wsdl:output>
|
988
|
+
</wsdl:operation>
|
989
|
+
<wsdl:operation name="GetLastError2">
|
990
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetLastError2" style="document" />
|
991
|
+
<wsdl:input>
|
992
|
+
<soap:body use="literal" />
|
993
|
+
</wsdl:input>
|
994
|
+
<wsdl:output>
|
995
|
+
<soap:body use="literal" />
|
996
|
+
</wsdl:output>
|
997
|
+
</wsdl:operation>
|
998
|
+
<wsdl:operation name="GetBusinessObjectDefinition">
|
999
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetBusinessObjectDefinition" style="document" />
|
1000
|
+
<wsdl:input>
|
1001
|
+
<soap:body use="literal" />
|
1002
|
+
</wsdl:input>
|
1003
|
+
<wsdl:output>
|
1004
|
+
<soap:body use="literal" />
|
1005
|
+
</wsdl:output>
|
1006
|
+
</wsdl:operation>
|
1007
|
+
<wsdl:operation name="QueryByFieldValue">
|
1008
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryByFieldValue" style="document" />
|
1009
|
+
<wsdl:input>
|
1010
|
+
<soap:body use="literal" />
|
1011
|
+
</wsdl:input>
|
1012
|
+
<wsdl:output>
|
1013
|
+
<soap:body use="literal" />
|
1014
|
+
</wsdl:output>
|
1015
|
+
</wsdl:operation>
|
1016
|
+
<wsdl:operation name="QueryByStoredQuery">
|
1017
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryByStoredQuery" style="document" />
|
1018
|
+
<wsdl:input>
|
1019
|
+
<soap:body use="literal" />
|
1020
|
+
</wsdl:input>
|
1021
|
+
<wsdl:output>
|
1022
|
+
<soap:body use="literal" />
|
1023
|
+
</wsdl:output>
|
1024
|
+
</wsdl:operation>
|
1025
|
+
<wsdl:operation name="QueryByStoredQueryWithScope">
|
1026
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryByStoredQueryWithScope" style="document" />
|
1027
|
+
<wsdl:input>
|
1028
|
+
<soap:body use="literal" />
|
1029
|
+
</wsdl:input>
|
1030
|
+
<wsdl:output>
|
1031
|
+
<soap:body use="literal" />
|
1032
|
+
</wsdl:output>
|
1033
|
+
</wsdl:operation>
|
1034
|
+
<wsdl:operation name="GetBusinessObject">
|
1035
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetBusinessObject" style="document" />
|
1036
|
+
<wsdl:input>
|
1037
|
+
<soap:body use="literal" />
|
1038
|
+
</wsdl:input>
|
1039
|
+
<wsdl:output>
|
1040
|
+
<soap:body use="literal" />
|
1041
|
+
</wsdl:output>
|
1042
|
+
</wsdl:operation>
|
1043
|
+
<wsdl:operation name="GetBusinessObjectByPublicId">
|
1044
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetBusinessObjectByPublicId" style="document" />
|
1045
|
+
<wsdl:input>
|
1046
|
+
<soap:body use="literal" />
|
1047
|
+
</wsdl:input>
|
1048
|
+
<wsdl:output>
|
1049
|
+
<soap:body use="literal" />
|
1050
|
+
</wsdl:output>
|
1051
|
+
</wsdl:operation>
|
1052
|
+
<wsdl:operation name="CreateBusinessObject">
|
1053
|
+
<soap:operation soapAction="http://cherwellsoftware.com/CreateBusinessObject" style="document" />
|
1054
|
+
<wsdl:input>
|
1055
|
+
<soap:body use="literal" />
|
1056
|
+
</wsdl:input>
|
1057
|
+
<wsdl:output>
|
1058
|
+
<soap:body use="literal" />
|
1059
|
+
</wsdl:output>
|
1060
|
+
</wsdl:operation>
|
1061
|
+
<wsdl:operation name="UpdateBusinessObject">
|
1062
|
+
<soap:operation soapAction="http://cherwellsoftware.com/UpdateBusinessObject" style="document" />
|
1063
|
+
<wsdl:input>
|
1064
|
+
<soap:body use="literal" />
|
1065
|
+
</wsdl:input>
|
1066
|
+
<wsdl:output>
|
1067
|
+
<soap:body use="literal" />
|
1068
|
+
</wsdl:output>
|
1069
|
+
</wsdl:operation>
|
1070
|
+
<wsdl:operation name="UpdateBusinessObjectByPublicId">
|
1071
|
+
<soap:operation soapAction="http://cherwellsoftware.com/UpdateBusinessObjectByPublicId" style="document" />
|
1072
|
+
<wsdl:input>
|
1073
|
+
<soap:body use="literal" />
|
1074
|
+
</wsdl:input>
|
1075
|
+
<wsdl:output>
|
1076
|
+
<soap:body use="literal" />
|
1077
|
+
</wsdl:output>
|
1078
|
+
</wsdl:operation>
|
1079
|
+
<wsdl:operation name="GetApiVersion">
|
1080
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetApiVersion" style="document" />
|
1081
|
+
<wsdl:input>
|
1082
|
+
<soap:body use="literal" />
|
1083
|
+
</wsdl:input>
|
1084
|
+
<wsdl:output>
|
1085
|
+
<soap:body use="literal" />
|
1086
|
+
</wsdl:output>
|
1087
|
+
</wsdl:operation>
|
1088
|
+
<wsdl:operation name="ConfirmLogin">
|
1089
|
+
<soap:operation soapAction="http://cherwellsoftware.com/ConfirmLogin" style="document" />
|
1090
|
+
<wsdl:input>
|
1091
|
+
<soap:body use="literal" />
|
1092
|
+
</wsdl:input>
|
1093
|
+
<wsdl:output>
|
1094
|
+
<soap:body use="literal" />
|
1095
|
+
</wsdl:output>
|
1096
|
+
</wsdl:operation>
|
1097
|
+
<wsdl:operation name="GetTabBarOptions">
|
1098
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetTabBarOptions" style="document" />
|
1099
|
+
<wsdl:input>
|
1100
|
+
<soap:body use="literal" />
|
1101
|
+
</wsdl:input>
|
1102
|
+
<wsdl:output>
|
1103
|
+
<soap:body use="literal" />
|
1104
|
+
</wsdl:output>
|
1105
|
+
</wsdl:operation>
|
1106
|
+
<wsdl:operation name="GetMruForObject">
|
1107
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetMruForObject" style="document" />
|
1108
|
+
<wsdl:input>
|
1109
|
+
<soap:body use="literal" />
|
1110
|
+
</wsdl:input>
|
1111
|
+
<wsdl:output>
|
1112
|
+
<soap:body use="literal" />
|
1113
|
+
</wsdl:output>
|
1114
|
+
</wsdl:operation>
|
1115
|
+
<wsdl:operation name="ClearMruForObject">
|
1116
|
+
<soap:operation soapAction="http://cherwellsoftware.com/ClearMruForObject" style="document" />
|
1117
|
+
<wsdl:input>
|
1118
|
+
<soap:body use="literal" />
|
1119
|
+
</wsdl:input>
|
1120
|
+
<wsdl:output>
|
1121
|
+
<soap:body use="literal" />
|
1122
|
+
</wsdl:output>
|
1123
|
+
</wsdl:operation>
|
1124
|
+
<wsdl:operation name="GetItemList">
|
1125
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetItemList" style="document" />
|
1126
|
+
<wsdl:input>
|
1127
|
+
<soap:body use="literal" />
|
1128
|
+
</wsdl:input>
|
1129
|
+
<wsdl:output>
|
1130
|
+
<soap:body use="literal" />
|
1131
|
+
</wsdl:output>
|
1132
|
+
</wsdl:operation>
|
1133
|
+
<wsdl:operation name="GetDashboard">
|
1134
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetDashboard" style="document" />
|
1135
|
+
<wsdl:input>
|
1136
|
+
<soap:body use="literal" />
|
1137
|
+
</wsdl:input>
|
1138
|
+
<wsdl:output>
|
1139
|
+
<soap:body use="literal" />
|
1140
|
+
</wsdl:output>
|
1141
|
+
</wsdl:operation>
|
1142
|
+
<wsdl:operation name="GetDashboardWithSizes">
|
1143
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetDashboardWithSizes" style="document" />
|
1144
|
+
<wsdl:input>
|
1145
|
+
<soap:body use="literal" />
|
1146
|
+
</wsdl:input>
|
1147
|
+
<wsdl:output>
|
1148
|
+
<soap:body use="literal" />
|
1149
|
+
</wsdl:output>
|
1150
|
+
</wsdl:operation>
|
1151
|
+
<wsdl:operation name="GetQueryResults">
|
1152
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetQueryResults" style="document" />
|
1153
|
+
<wsdl:input>
|
1154
|
+
<soap:body use="literal" />
|
1155
|
+
</wsdl:input>
|
1156
|
+
<wsdl:output>
|
1157
|
+
<soap:body use="literal" />
|
1158
|
+
</wsdl:output>
|
1159
|
+
</wsdl:operation>
|
1160
|
+
<wsdl:operation name="GetQueryResultsUsingPromptInfo">
|
1161
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetQueryResultsUsingPromptInfo" style="document" />
|
1162
|
+
<wsdl:input>
|
1163
|
+
<soap:body use="literal" />
|
1164
|
+
</wsdl:input>
|
1165
|
+
<wsdl:output>
|
1166
|
+
<soap:body use="literal" />
|
1167
|
+
</wsdl:output>
|
1168
|
+
</wsdl:operation>
|
1169
|
+
<wsdl:operation name="GetItemDisplayHtml">
|
1170
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetItemDisplayHtml" style="document" />
|
1171
|
+
<wsdl:input>
|
1172
|
+
<soap:body use="literal" />
|
1173
|
+
</wsdl:input>
|
1174
|
+
<wsdl:output>
|
1175
|
+
<soap:body use="literal" />
|
1176
|
+
</wsdl:output>
|
1177
|
+
</wsdl:operation>
|
1178
|
+
<wsdl:operation name="GetParametersForAction">
|
1179
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetParametersForAction" style="document" />
|
1180
|
+
<wsdl:input>
|
1181
|
+
<soap:body use="literal" />
|
1182
|
+
</wsdl:input>
|
1183
|
+
<wsdl:output>
|
1184
|
+
<soap:body use="literal" />
|
1185
|
+
</wsdl:output>
|
1186
|
+
</wsdl:operation>
|
1187
|
+
<wsdl:operation name="ExecuteAction">
|
1188
|
+
<soap:operation soapAction="http://cherwellsoftware.com/ExecuteAction" style="document" />
|
1189
|
+
<wsdl:input>
|
1190
|
+
<soap:body use="literal" />
|
1191
|
+
</wsdl:input>
|
1192
|
+
<wsdl:output>
|
1193
|
+
<soap:body use="literal" />
|
1194
|
+
</wsdl:output>
|
1195
|
+
</wsdl:operation>
|
1196
|
+
<wsdl:operation name="GetImages">
|
1197
|
+
<soap:operation soapAction="http://cherwellsoftware.com/GetImages" style="document" />
|
1198
|
+
<wsdl:input>
|
1199
|
+
<soap:body use="literal" />
|
1200
|
+
</wsdl:input>
|
1201
|
+
<wsdl:output>
|
1202
|
+
<soap:body use="literal" />
|
1203
|
+
</wsdl:output>
|
1204
|
+
</wsdl:operation>
|
1205
|
+
<wsdl:operation name="QueryForWidgetDataAtPos">
|
1206
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryForWidgetDataAtPos" style="document" />
|
1207
|
+
<wsdl:input>
|
1208
|
+
<soap:body use="literal" />
|
1209
|
+
</wsdl:input>
|
1210
|
+
<wsdl:output>
|
1211
|
+
<soap:body use="literal" />
|
1212
|
+
</wsdl:output>
|
1213
|
+
</wsdl:operation>
|
1214
|
+
<wsdl:operation name="QueryForWidgetDataAtPosWithSizes">
|
1215
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryForWidgetDataAtPosWithSizes" style="document" />
|
1216
|
+
<wsdl:input>
|
1217
|
+
<soap:body use="literal" />
|
1218
|
+
</wsdl:input>
|
1219
|
+
<wsdl:output>
|
1220
|
+
<soap:body use="literal" />
|
1221
|
+
</wsdl:output>
|
1222
|
+
</wsdl:operation>
|
1223
|
+
<wsdl:operation name="QueryForWidgetImage">
|
1224
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryForWidgetImage" style="document" />
|
1225
|
+
<wsdl:input>
|
1226
|
+
<soap:body use="literal" />
|
1227
|
+
</wsdl:input>
|
1228
|
+
<wsdl:output>
|
1229
|
+
<soap:body use="literal" />
|
1230
|
+
</wsdl:output>
|
1231
|
+
</wsdl:operation>
|
1232
|
+
<wsdl:operation name="QueryForWidgetImageWithSizes">
|
1233
|
+
<soap:operation soapAction="http://cherwellsoftware.com/QueryForWidgetImageWithSizes" style="document" />
|
1234
|
+
<wsdl:input>
|
1235
|
+
<soap:body use="literal" />
|
1236
|
+
</wsdl:input>
|
1237
|
+
<wsdl:output>
|
1238
|
+
<soap:body use="literal" />
|
1239
|
+
</wsdl:output>
|
1240
|
+
</wsdl:operation>
|
1241
|
+
</wsdl:binding>
|
1242
|
+
<wsdl:binding name="apiSoap12" type="tns:apiSoap">
|
1243
|
+
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
|
1244
|
+
<wsdl:operation name="Login">
|
1245
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/Login" style="document" />
|
1246
|
+
<wsdl:input>
|
1247
|
+
<soap12:body use="literal" />
|
1248
|
+
</wsdl:input>
|
1249
|
+
<wsdl:output>
|
1250
|
+
<soap12:body use="literal" />
|
1251
|
+
</wsdl:output>
|
1252
|
+
</wsdl:operation>
|
1253
|
+
<wsdl:operation name="MobileLogin">
|
1254
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/MobileLogin" style="document" />
|
1255
|
+
<wsdl:input>
|
1256
|
+
<soap12:body use="literal" />
|
1257
|
+
</wsdl:input>
|
1258
|
+
<wsdl:output>
|
1259
|
+
<soap12:body use="literal" />
|
1260
|
+
</wsdl:output>
|
1261
|
+
</wsdl:operation>
|
1262
|
+
<wsdl:operation name="LoginWithProductCode">
|
1263
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/LoginWithProductCode" style="document" />
|
1264
|
+
<wsdl:input>
|
1265
|
+
<soap12:body use="literal" />
|
1266
|
+
</wsdl:input>
|
1267
|
+
<wsdl:output>
|
1268
|
+
<soap12:body use="literal" />
|
1269
|
+
</wsdl:output>
|
1270
|
+
</wsdl:operation>
|
1271
|
+
<wsdl:operation name="Logout">
|
1272
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/Logout" style="document" />
|
1273
|
+
<wsdl:input>
|
1274
|
+
<soap12:body use="literal" />
|
1275
|
+
</wsdl:input>
|
1276
|
+
<wsdl:output>
|
1277
|
+
<soap12:body use="literal" />
|
1278
|
+
</wsdl:output>
|
1279
|
+
</wsdl:operation>
|
1280
|
+
<wsdl:operation name="MobileLogout">
|
1281
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/MobileLogout" style="document" />
|
1282
|
+
<wsdl:input>
|
1283
|
+
<soap12:body use="literal" />
|
1284
|
+
</wsdl:input>
|
1285
|
+
<wsdl:output>
|
1286
|
+
<soap12:body use="literal" />
|
1287
|
+
</wsdl:output>
|
1288
|
+
</wsdl:operation>
|
1289
|
+
<wsdl:operation name="GetiCherwellCredentialsMode">
|
1290
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetiCherwellCredentialsMode" style="document" />
|
1291
|
+
<wsdl:input>
|
1292
|
+
<soap12:body use="literal" />
|
1293
|
+
</wsdl:input>
|
1294
|
+
<wsdl:output>
|
1295
|
+
<soap12:body use="literal" />
|
1296
|
+
</wsdl:output>
|
1297
|
+
</wsdl:operation>
|
1298
|
+
<wsdl:operation name="GetLastError">
|
1299
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetLastError" style="document" />
|
1300
|
+
<wsdl:input>
|
1301
|
+
<soap12:body use="literal" />
|
1302
|
+
</wsdl:input>
|
1303
|
+
<wsdl:output>
|
1304
|
+
<soap12:body use="literal" />
|
1305
|
+
</wsdl:output>
|
1306
|
+
</wsdl:operation>
|
1307
|
+
<wsdl:operation name="GetLastError2">
|
1308
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetLastError2" style="document" />
|
1309
|
+
<wsdl:input>
|
1310
|
+
<soap12:body use="literal" />
|
1311
|
+
</wsdl:input>
|
1312
|
+
<wsdl:output>
|
1313
|
+
<soap12:body use="literal" />
|
1314
|
+
</wsdl:output>
|
1315
|
+
</wsdl:operation>
|
1316
|
+
<wsdl:operation name="GetBusinessObjectDefinition">
|
1317
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetBusinessObjectDefinition" style="document" />
|
1318
|
+
<wsdl:input>
|
1319
|
+
<soap12:body use="literal" />
|
1320
|
+
</wsdl:input>
|
1321
|
+
<wsdl:output>
|
1322
|
+
<soap12:body use="literal" />
|
1323
|
+
</wsdl:output>
|
1324
|
+
</wsdl:operation>
|
1325
|
+
<wsdl:operation name="QueryByFieldValue">
|
1326
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryByFieldValue" style="document" />
|
1327
|
+
<wsdl:input>
|
1328
|
+
<soap12:body use="literal" />
|
1329
|
+
</wsdl:input>
|
1330
|
+
<wsdl:output>
|
1331
|
+
<soap12:body use="literal" />
|
1332
|
+
</wsdl:output>
|
1333
|
+
</wsdl:operation>
|
1334
|
+
<wsdl:operation name="QueryByStoredQuery">
|
1335
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryByStoredQuery" style="document" />
|
1336
|
+
<wsdl:input>
|
1337
|
+
<soap12:body use="literal" />
|
1338
|
+
</wsdl:input>
|
1339
|
+
<wsdl:output>
|
1340
|
+
<soap12:body use="literal" />
|
1341
|
+
</wsdl:output>
|
1342
|
+
</wsdl:operation>
|
1343
|
+
<wsdl:operation name="QueryByStoredQueryWithScope">
|
1344
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryByStoredQueryWithScope" style="document" />
|
1345
|
+
<wsdl:input>
|
1346
|
+
<soap12:body use="literal" />
|
1347
|
+
</wsdl:input>
|
1348
|
+
<wsdl:output>
|
1349
|
+
<soap12:body use="literal" />
|
1350
|
+
</wsdl:output>
|
1351
|
+
</wsdl:operation>
|
1352
|
+
<wsdl:operation name="GetBusinessObject">
|
1353
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetBusinessObject" style="document" />
|
1354
|
+
<wsdl:input>
|
1355
|
+
<soap12:body use="literal" />
|
1356
|
+
</wsdl:input>
|
1357
|
+
<wsdl:output>
|
1358
|
+
<soap12:body use="literal" />
|
1359
|
+
</wsdl:output>
|
1360
|
+
</wsdl:operation>
|
1361
|
+
<wsdl:operation name="GetBusinessObjectByPublicId">
|
1362
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetBusinessObjectByPublicId" style="document" />
|
1363
|
+
<wsdl:input>
|
1364
|
+
<soap12:body use="literal" />
|
1365
|
+
</wsdl:input>
|
1366
|
+
<wsdl:output>
|
1367
|
+
<soap12:body use="literal" />
|
1368
|
+
</wsdl:output>
|
1369
|
+
</wsdl:operation>
|
1370
|
+
<wsdl:operation name="CreateBusinessObject">
|
1371
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/CreateBusinessObject" style="document" />
|
1372
|
+
<wsdl:input>
|
1373
|
+
<soap12:body use="literal" />
|
1374
|
+
</wsdl:input>
|
1375
|
+
<wsdl:output>
|
1376
|
+
<soap12:body use="literal" />
|
1377
|
+
</wsdl:output>
|
1378
|
+
</wsdl:operation>
|
1379
|
+
<wsdl:operation name="UpdateBusinessObject">
|
1380
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/UpdateBusinessObject" style="document" />
|
1381
|
+
<wsdl:input>
|
1382
|
+
<soap12:body use="literal" />
|
1383
|
+
</wsdl:input>
|
1384
|
+
<wsdl:output>
|
1385
|
+
<soap12:body use="literal" />
|
1386
|
+
</wsdl:output>
|
1387
|
+
</wsdl:operation>
|
1388
|
+
<wsdl:operation name="UpdateBusinessObjectByPublicId">
|
1389
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/UpdateBusinessObjectByPublicId" style="document" />
|
1390
|
+
<wsdl:input>
|
1391
|
+
<soap12:body use="literal" />
|
1392
|
+
</wsdl:input>
|
1393
|
+
<wsdl:output>
|
1394
|
+
<soap12:body use="literal" />
|
1395
|
+
</wsdl:output>
|
1396
|
+
</wsdl:operation>
|
1397
|
+
<wsdl:operation name="GetApiVersion">
|
1398
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetApiVersion" style="document" />
|
1399
|
+
<wsdl:input>
|
1400
|
+
<soap12:body use="literal" />
|
1401
|
+
</wsdl:input>
|
1402
|
+
<wsdl:output>
|
1403
|
+
<soap12:body use="literal" />
|
1404
|
+
</wsdl:output>
|
1405
|
+
</wsdl:operation>
|
1406
|
+
<wsdl:operation name="ConfirmLogin">
|
1407
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/ConfirmLogin" style="document" />
|
1408
|
+
<wsdl:input>
|
1409
|
+
<soap12:body use="literal" />
|
1410
|
+
</wsdl:input>
|
1411
|
+
<wsdl:output>
|
1412
|
+
<soap12:body use="literal" />
|
1413
|
+
</wsdl:output>
|
1414
|
+
</wsdl:operation>
|
1415
|
+
<wsdl:operation name="GetTabBarOptions">
|
1416
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetTabBarOptions" style="document" />
|
1417
|
+
<wsdl:input>
|
1418
|
+
<soap12:body use="literal" />
|
1419
|
+
</wsdl:input>
|
1420
|
+
<wsdl:output>
|
1421
|
+
<soap12:body use="literal" />
|
1422
|
+
</wsdl:output>
|
1423
|
+
</wsdl:operation>
|
1424
|
+
<wsdl:operation name="GetMruForObject">
|
1425
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetMruForObject" style="document" />
|
1426
|
+
<wsdl:input>
|
1427
|
+
<soap12:body use="literal" />
|
1428
|
+
</wsdl:input>
|
1429
|
+
<wsdl:output>
|
1430
|
+
<soap12:body use="literal" />
|
1431
|
+
</wsdl:output>
|
1432
|
+
</wsdl:operation>
|
1433
|
+
<wsdl:operation name="ClearMruForObject">
|
1434
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/ClearMruForObject" style="document" />
|
1435
|
+
<wsdl:input>
|
1436
|
+
<soap12:body use="literal" />
|
1437
|
+
</wsdl:input>
|
1438
|
+
<wsdl:output>
|
1439
|
+
<soap12:body use="literal" />
|
1440
|
+
</wsdl:output>
|
1441
|
+
</wsdl:operation>
|
1442
|
+
<wsdl:operation name="GetItemList">
|
1443
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetItemList" style="document" />
|
1444
|
+
<wsdl:input>
|
1445
|
+
<soap12:body use="literal" />
|
1446
|
+
</wsdl:input>
|
1447
|
+
<wsdl:output>
|
1448
|
+
<soap12:body use="literal" />
|
1449
|
+
</wsdl:output>
|
1450
|
+
</wsdl:operation>
|
1451
|
+
<wsdl:operation name="GetDashboard">
|
1452
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetDashboard" style="document" />
|
1453
|
+
<wsdl:input>
|
1454
|
+
<soap12:body use="literal" />
|
1455
|
+
</wsdl:input>
|
1456
|
+
<wsdl:output>
|
1457
|
+
<soap12:body use="literal" />
|
1458
|
+
</wsdl:output>
|
1459
|
+
</wsdl:operation>
|
1460
|
+
<wsdl:operation name="GetDashboardWithSizes">
|
1461
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetDashboardWithSizes" style="document" />
|
1462
|
+
<wsdl:input>
|
1463
|
+
<soap12:body use="literal" />
|
1464
|
+
</wsdl:input>
|
1465
|
+
<wsdl:output>
|
1466
|
+
<soap12:body use="literal" />
|
1467
|
+
</wsdl:output>
|
1468
|
+
</wsdl:operation>
|
1469
|
+
<wsdl:operation name="GetQueryResults">
|
1470
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetQueryResults" style="document" />
|
1471
|
+
<wsdl:input>
|
1472
|
+
<soap12:body use="literal" />
|
1473
|
+
</wsdl:input>
|
1474
|
+
<wsdl:output>
|
1475
|
+
<soap12:body use="literal" />
|
1476
|
+
</wsdl:output>
|
1477
|
+
</wsdl:operation>
|
1478
|
+
<wsdl:operation name="GetQueryResultsUsingPromptInfo">
|
1479
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetQueryResultsUsingPromptInfo" style="document" />
|
1480
|
+
<wsdl:input>
|
1481
|
+
<soap12:body use="literal" />
|
1482
|
+
</wsdl:input>
|
1483
|
+
<wsdl:output>
|
1484
|
+
<soap12:body use="literal" />
|
1485
|
+
</wsdl:output>
|
1486
|
+
</wsdl:operation>
|
1487
|
+
<wsdl:operation name="GetItemDisplayHtml">
|
1488
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetItemDisplayHtml" style="document" />
|
1489
|
+
<wsdl:input>
|
1490
|
+
<soap12:body use="literal" />
|
1491
|
+
</wsdl:input>
|
1492
|
+
<wsdl:output>
|
1493
|
+
<soap12:body use="literal" />
|
1494
|
+
</wsdl:output>
|
1495
|
+
</wsdl:operation>
|
1496
|
+
<wsdl:operation name="GetParametersForAction">
|
1497
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetParametersForAction" style="document" />
|
1498
|
+
<wsdl:input>
|
1499
|
+
<soap12:body use="literal" />
|
1500
|
+
</wsdl:input>
|
1501
|
+
<wsdl:output>
|
1502
|
+
<soap12:body use="literal" />
|
1503
|
+
</wsdl:output>
|
1504
|
+
</wsdl:operation>
|
1505
|
+
<wsdl:operation name="ExecuteAction">
|
1506
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/ExecuteAction" style="document" />
|
1507
|
+
<wsdl:input>
|
1508
|
+
<soap12:body use="literal" />
|
1509
|
+
</wsdl:input>
|
1510
|
+
<wsdl:output>
|
1511
|
+
<soap12:body use="literal" />
|
1512
|
+
</wsdl:output>
|
1513
|
+
</wsdl:operation>
|
1514
|
+
<wsdl:operation name="GetImages">
|
1515
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/GetImages" style="document" />
|
1516
|
+
<wsdl:input>
|
1517
|
+
<soap12:body use="literal" />
|
1518
|
+
</wsdl:input>
|
1519
|
+
<wsdl:output>
|
1520
|
+
<soap12:body use="literal" />
|
1521
|
+
</wsdl:output>
|
1522
|
+
</wsdl:operation>
|
1523
|
+
<wsdl:operation name="QueryForWidgetDataAtPos">
|
1524
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryForWidgetDataAtPos" style="document" />
|
1525
|
+
<wsdl:input>
|
1526
|
+
<soap12:body use="literal" />
|
1527
|
+
</wsdl:input>
|
1528
|
+
<wsdl:output>
|
1529
|
+
<soap12:body use="literal" />
|
1530
|
+
</wsdl:output>
|
1531
|
+
</wsdl:operation>
|
1532
|
+
<wsdl:operation name="QueryForWidgetDataAtPosWithSizes">
|
1533
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryForWidgetDataAtPosWithSizes" style="document" />
|
1534
|
+
<wsdl:input>
|
1535
|
+
<soap12:body use="literal" />
|
1536
|
+
</wsdl:input>
|
1537
|
+
<wsdl:output>
|
1538
|
+
<soap12:body use="literal" />
|
1539
|
+
</wsdl:output>
|
1540
|
+
</wsdl:operation>
|
1541
|
+
<wsdl:operation name="QueryForWidgetImage">
|
1542
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryForWidgetImage" style="document" />
|
1543
|
+
<wsdl:input>
|
1544
|
+
<soap12:body use="literal" />
|
1545
|
+
</wsdl:input>
|
1546
|
+
<wsdl:output>
|
1547
|
+
<soap12:body use="literal" />
|
1548
|
+
</wsdl:output>
|
1549
|
+
</wsdl:operation>
|
1550
|
+
<wsdl:operation name="QueryForWidgetImageWithSizes">
|
1551
|
+
<soap12:operation soapAction="http://cherwellsoftware.com/QueryForWidgetImageWithSizes" style="document" />
|
1552
|
+
<wsdl:input>
|
1553
|
+
<soap12:body use="literal" />
|
1554
|
+
</wsdl:input>
|
1555
|
+
<wsdl:output>
|
1556
|
+
<soap12:body use="literal" />
|
1557
|
+
</wsdl:output>
|
1558
|
+
</wsdl:operation>
|
1559
|
+
</wsdl:binding>
|
1560
|
+
<wsdl:service name="api">
|
1561
|
+
<wsdl:port name="apiSoap" binding="tns:apiSoap">
|
1562
|
+
<soap:address location="http://csd-prod.shrm.org/CherwellService/api.asmx" />
|
1563
|
+
</wsdl:port>
|
1564
|
+
<wsdl:port name="apiSoap12" binding="tns:apiSoap12">
|
1565
|
+
<soap12:address location="http://csd-prod.shrm.org/CherwellService/api.asmx" />
|
1566
|
+
</wsdl:port>
|
1567
|
+
</wsdl:service>
|
1568
|
+
</wsdl:definitions>
|