granicus-platform-api 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -2,4 +2,4 @@ coverage
2
2
  *.gem
3
3
  Gemfile.lock
4
4
  .idea
5
-
5
+ .rvmrc
@@ -9,21 +9,21 @@ Gem::Specification.new do |s|
9
9
  s.authors = ["Javier Muniz"]
10
10
  s.email = "javier@granicus.com"
11
11
  s.summary = "Granicus Open Platform API 1.x Wrapper"
12
- s.homepage = "http://github.com/gov20cto/granicus-platform-api"
12
+ s.homepage = "https://github.com/Granicus/platform-api-rb"
13
13
  s.description = "Wrapper for the Granicus Open Platform API v1.x"
14
-
14
+
15
15
  s.rubyforge_project = "granicus-platform-api"
16
-
16
+
17
17
  s.files = `git ls-files`.split("\n")
18
18
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ["lib"]
21
-
21
+
22
22
  s.add_development_dependency('rspec', '~> 2.6')
23
- s.add_development_dependency('simplecov', '~> 0.4.0')
24
- s.add_development_dependency('hashie', '~> 1.0.0')
23
+ s.add_development_dependency('simplecov', '~> 0.5.0')
24
+ s.add_development_dependency('hashie', '~> 1.2.0')
25
25
  s.add_development_dependency('savon', '~> 0.9.2')
26
-
26
+
27
27
  s.add_dependency('savon', '~> 0.9.2')
28
- s.add_dependency('hashie', '~> 1.0.0')
28
+ s.add_dependency('hashie', '~> 1.2.0')
29
29
  end
@@ -7,7 +7,7 @@ module GranicusPlatformAPI
7
7
 
8
8
  # mappings between soap types and our complex types
9
9
  # this area should be rewritten to auto-generate data sets properly
10
- # and refactored to separate standard xsd types from custom types in class
10
+ # and refactored to separate standard xsd types from custom types in class
11
11
  # map
12
12
  def self.typegenerators
13
13
  @@typegenerators
@@ -31,7 +31,7 @@ module GranicusPlatformAPI
31
31
  self.typegenerators["GroupData"] = lambda { GroupData.new }
32
32
  self.typegenerators["KeyMapping"] = lambda { KeyMapping.new }
33
33
  self.typegenerators["MetaDataData"] = lambda { MetaDataData.new }
34
- self.typegenerators["EComment"] = lambda { EComment.new }
34
+ self.typegenerators["Comment"] = lambda { Comment.new }
35
35
  self.typegenerators["Motion"] = lambda { Motion.new }
36
36
  self.typegenerators["Note"] = lambda { Note.new }
37
37
  self.typegenerators["Rollcall"] = lambda { Rollcall.new }
@@ -261,7 +261,7 @@ module GranicusPlatformAPI
261
261
  end
262
262
 
263
263
  # import metadata for a clip
264
- # ImportClipMetaData Method (ClipID, MetaData, ClearExisting, AsTree)
264
+ # ImportClipMetaData Method (ClipID, MetaData, ClearExisting, AsTree)
265
265
  def import_clip_meta_data(clip_id, meta_data, clear_existing=true, as_tree=true)
266
266
  call_soap_method(:import_clip_meta_data, '//ns5:ImportClipMetaDataResponse/KeyTable', {
267
267
  'ClipID' => clip_id,
@@ -287,17 +287,21 @@ module GranicusPlatformAPI
287
287
  call_soap_method(:get_meta_data, '//ns5:GetMetaDataResponse/MetaData', {'MetaDataID' => meta_id})
288
288
  end
289
289
 
290
- # update metadata
290
+ # update metadata
291
291
  def update_meta_data(meta_data)
292
292
  call_soap_method(:update_meta_data, '//ns4:UpdateMetaDataResponse', {'MetaData' => meta_data})
293
293
  end
294
294
 
295
- def get_ecomments_by_event_id(event_id)
296
- call_soap_method(:get_ecomments_by_event_id, '//ns5:GetEcommentsByEventIDResponse/EComments', {'EventID' => event_id})
295
+ def get_comments_by_event_id(event_id)
296
+ call_soap_method(:get_comments_by_event_id, '//ns5:GetCommentsByEventIDResponse/Comments', {'EventID' => event_id})
297
+ end
298
+
299
+ def get_comments_by_event_uid(uid)
300
+ call_soap_method(:get_comments_by_event_uid, '//ns5:GetCommentsByEventUIDResponse/Comments', {'EventUID' => uid})
297
301
  end
298
302
 
299
- def get_ecomments_by_agenda_item_uid(uid)
300
- call_soap_method(:get_ecomments_by_agenda_item_uid, '//ns5:GetEcommentsByAgendaItemUIDResponse/EComments', {'AgendaItemUID' => uid})
303
+ def get_comments_by_agenda_item_uid(uid)
304
+ call_soap_method(:get_comments_by_agenda_item_uid, '//ns5:GetCommentsByAgendaItemUIDResponse/Comments', {'AgendaItemUID' => uid})
301
305
  end
302
306
 
303
307
  # return all of the folders
@@ -460,7 +464,11 @@ module GranicusPlatformAPI
460
464
  puts "Unknown custom type: #{type}"
461
465
  end
462
466
  node.children.each do |value_node|
463
- value[value_node.name] = handle_response value_node
467
+ begin
468
+ value[value_node.name] = handle_response value_node
469
+ rescue
470
+ # should log warning message here, but need to implement logging
471
+ end
464
472
  end
465
473
  value
466
474
  end
@@ -501,4 +509,4 @@ module GranicusPlatformAPI
501
509
  self.typecasts["yaml"] = lambda { |v| v.nil? ? nil : YAML.load(v) }
502
510
  self.typecasts["base64Binary"] = lambda { |v| v.unpack('m').first }
503
511
  end
504
- end
512
+ end
@@ -5,7 +5,7 @@ module GranicusPlatformAPI
5
5
  property :Department
6
6
  property :Actions
7
7
  end
8
-
8
+
9
9
  class Attendee < Hashie::Dash
10
10
  property :ID
11
11
  property :Name
@@ -13,12 +13,12 @@ module GranicusPlatformAPI
13
13
  property :Voting
14
14
  property :Chair
15
15
  end
16
-
16
+
17
17
  class AttendeeStatus < Hashie::Dash
18
18
  property :Name
19
19
  property :Status
20
20
  end
21
-
21
+
22
22
  class CameraData < Hashie::Dash
23
23
  property :ID
24
24
  property :Type
@@ -29,12 +29,12 @@ module GranicusPlatformAPI
29
29
  property :ControlPort
30
30
  property :Identifier
31
31
  end
32
-
32
+
33
33
  class CaptionData < Hashie::Dash
34
34
  property :Caption
35
35
  property :TimeStamp
36
36
  end
37
-
37
+
38
38
  class ClipData < Hashie::Dash
39
39
  property :ID
40
40
  property :UID
@@ -65,14 +65,14 @@ module GranicusPlatformAPI
65
65
  property :AgendaTitle
66
66
  property :AgendaPostedDate
67
67
  end
68
-
68
+
69
69
  class Document < Hashie::Dash
70
70
  property :Description
71
71
  property :Location
72
72
  property :FileContents
73
73
  property :FileExtension
74
74
  end
75
-
75
+
76
76
  class EventData < Hashie::Dash
77
77
  property :ID
78
78
  property :UID
@@ -103,10 +103,10 @@ module GranicusPlatformAPI
103
103
  property :AgendaPostedDate
104
104
  property :NextStartDate
105
105
  property :AgendaRolloverID
106
- property :ECommentEnabled
107
- property :ECommentCloseOffset
106
+ property :CommentEnabled
107
+ property :CommentCloseOffset
108
108
  end
109
-
109
+
110
110
  class FolderData < Hashie::Dash
111
111
  property :ID
112
112
  property :Name
@@ -124,12 +124,12 @@ module GranicusPlatformAPI
124
124
  property :Description
125
125
  property :CreatedDate
126
126
  end
127
-
127
+
128
128
  class KeyMapping < Hashie::Dash
129
129
  property :ForeignID
130
130
  property :GranicusID
131
131
  end
132
-
132
+
133
133
  class MetaDataData < Hashie::Dash
134
134
  property :ID
135
135
  property :UID
@@ -145,7 +145,7 @@ module GranicusPlatformAPI
145
145
  property :Children
146
146
  end
147
147
 
148
- class EComment < Hashie::Dash
148
+ class Comment < Hashie::Dash
149
149
  property :FirstName
150
150
  property :LastName
151
151
  property :CommentText
@@ -155,7 +155,7 @@ module GranicusPlatformAPI
155
155
  property :State
156
156
  property :Zip
157
157
  property :Area
158
- property :ECommentPositionID
158
+ property :Position
159
159
  property :HasVideoComment
160
160
  property :CreatedStamp
161
161
  end
@@ -166,17 +166,17 @@ module GranicusPlatformAPI
166
166
  property :Type
167
167
  property :MotionText
168
168
  end
169
-
169
+
170
170
  class Note < Hashie::Dash
171
171
  property :NoteText
172
172
  property :EditorsNotes
173
173
  property :Private
174
174
  end
175
-
175
+
176
176
  class Rollcall < Hashie::Dash
177
177
  property :Attendees
178
178
  end
179
-
179
+
180
180
  class ServerData < Hashie::Dash
181
181
  property :ID
182
182
  property :Name
@@ -188,7 +188,7 @@ module GranicusPlatformAPI
188
188
  property :ReplicationPW
189
189
  property :CreatedDate
190
190
  end
191
-
191
+
192
192
  class ServerInterfaceData < Hashie::Dash
193
193
  property :ID
194
194
  property :ServerID
@@ -204,7 +204,7 @@ module GranicusPlatformAPI
204
204
  property :Name
205
205
  property :Value
206
206
  end
207
-
207
+
208
208
  class TemplateData < Hashie::Dash
209
209
  property :ID
210
210
  property :Name
@@ -213,7 +213,7 @@ module GranicusPlatformAPI
213
213
  property :LastModified
214
214
  property :CreatedDate
215
215
  end
216
-
216
+
217
217
  class ViewData < Hashie::Dash
218
218
  property :ID
219
219
  property :ForeignID
@@ -222,15 +222,15 @@ module GranicusPlatformAPI
222
222
  property :Events
223
223
  property :Folders
224
224
  end
225
-
225
+
226
226
  class VoteEntry < Hashie::Dash
227
227
  property :Name
228
228
  property :Vote
229
229
  end
230
-
230
+
231
231
  class VoteRecord < Hashie::Dash
232
232
  property :MotionID
233
233
  property :Passed
234
234
  property :Votes
235
235
  end
236
- end
236
+ end
@@ -1,3 +1,4 @@
1
+
1
2
  <?xml version="1.0"?><definitions name="UserSDK" targetNamespace="urn:UserSDK" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:UserSDK" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:ns5="http://granicus.com/xsd">
2
3
  <types xmlns="http://schemas.xmlsoap.org/wsdl/">
3
4
  <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://granicus.com/xsd">
@@ -15,7 +16,6 @@
15
16
  <element name="PlayerTemplateID" type="xsd:int" />
16
17
  <element name="ArchiveStatus" type="xsd:string" />
17
18
  <element name="Duration" type="xsd:int" />
18
-
19
19
  <element name="Broadcast" type="xsd:boolean" />
20
20
  <element name="Record" type="xsd:boolean" />
21
21
  <element name="AutoStart" type="xsd:boolean" />
@@ -32,9 +32,9 @@
32
32
  <element name="MeetingTime" type="xsd:dateTime" />
33
33
  <element name="AgendaPostedDate" type="xsd:dateTime" />
34
34
  <element name="NextStartDate" type="xsd:dateTime" />
35
- <element name="ECommentEnabled" type="xsd:boolean" />
36
-
37
- <element name="ECommentCloseOffset" type="xsd:int" />
35
+ <element name="AgendaRolloverID" type="xsd:int" />
36
+ <element name="CommentEnabled" type="xsd:boolean" />
37
+ <element name="CommentCloseOffset" type="xsd:int" />
38
38
  </all>
39
39
  </complexType>
40
40
  <complexType name="FolderData">
@@ -51,7 +51,6 @@
51
51
  </complexType>
52
52
  <complexType name="ClipData">
53
53
  <all>
54
-
55
54
  <element name="ID" type="xsd:int" />
56
55
  <element name="UID" type="xsd:string" />
57
56
  <element name="ForeignID" type="xsd:int" />
@@ -69,7 +68,6 @@
69
68
  <element name="AgendaFile" type="xsd:string" />
70
69
  <element name="Duration" type="xsd:int" />
71
70
  <element name="Status" type="xsd:string" />
72
-
73
71
  <element name="StartTime" type="xsd:dateTime" />
74
72
  <element name="LastModified" type="xsd:dateTime" />
75
73
  <element name="Attendees" type="ns5:AttendeeCollection" />
@@ -87,7 +85,6 @@
87
85
  <all>
88
86
  <element name="ID" type="xsd:int" />
89
87
  <element name="Type" type="xsd:string" />
90
-
91
88
  <element name="Name" type="xsd:string" />
92
89
  <element name="InternalIP" type="xsd:string" />
93
90
  <element name="ExternalIP" type="xsd:string" />
@@ -105,7 +102,6 @@
105
102
  <element name="Email" type="xsd:string" />
106
103
  <element name="CreatedDate" type="xsd:dateTime" />
107
104
  <element name="LastModified" type="xsd:dateTime" />
108
-
109
105
  </all>
110
106
  </complexType>
111
107
  <complexType name="GroupData">
@@ -123,7 +119,6 @@
123
119
  <element name="Description" type="xsd:string" />
124
120
  <element name="Type" type="xsd:string" />
125
121
  <element name="LastModified" type="xsd:dateTime" />
126
-
127
122
  <element name="CreatedDate" type="xsd:dateTime" />
128
123
  </all>
129
124
  </complexType>
@@ -141,7 +136,6 @@
141
136
  </all>
142
137
  </complexType>
143
138
  <complexType name="ServerInterfaceData">
144
-
145
139
  <all>
146
140
  <element name="ID" type="xsd:int" />
147
141
  <element name="ServerID" type="xsd:int" />
@@ -159,13 +153,12 @@
159
153
  <element name="UID" type="xsd:string" />
160
154
  <element name="ParentID" type="xsd:int" />
161
155
  <element name="ParentUID" type="xsd:string" />
162
-
163
156
  <element name="ForeignID" type="xsd:int" />
164
157
  <element name="SourceID" type="xsd:int" />
165
158
  <element name="Name" type="xsd:string" />
166
159
  <element name="TimeStamp" type="xsd:int" />
167
160
  <element name="OrderID" type="xsd:int" />
168
- <element name="AllowComment" type="xsd:int" />
161
+ <element name="AllowComment" type="xsd:boolean" />
169
162
  <element name="Payload" type="xsd:anyType" />
170
163
  <element name="Children" type="ns5:MetaDataDataCollection" />
171
164
  </all>
@@ -177,7 +170,6 @@
177
170
  </all>
178
171
  </complexType>
179
172
  <complexType name="KeyMapping">
180
-
181
173
  <all>
182
174
  <element name="ForeignID" type="xsd:int" />
183
175
  <element name="GranicusID" type="xsd:int" />
@@ -195,7 +187,6 @@
195
187
  <element name="ID" type="xsd:int" />
196
188
  <element name="ForeignID" type="xsd:int" />
197
189
  <element name="Name" type="xsd:string" />
198
-
199
190
  <element name="IsActive" type="xsd:boolean" />
200
191
  <element name="Events" type="ns5:IntegerCollection" />
201
192
  <element name="Folders" type="ns5:IntegerCollection" />
@@ -207,21 +198,22 @@
207
198
  <element name="Actions" type="xsd:string" />
208
199
  </all>
209
200
  </complexType>
210
- <complexType name="EComment">
201
+ <complexType name="Comment">
211
202
  <all>
212
- <element name="CommentText" type="xsd:string" />
203
+ <element name="EventUID" type="xsd:string" />
204
+ <element name="MetaDataUID" type="xsd:string" />
213
205
  <element name="FirstName" type="xsd:string" />
214
206
  <element name="LastName" type="xsd:string" />
207
+ <element name="CommentText" type="xsd:string" />
208
+ <element name="Email" type="xsd:string" />
209
+ <element name="Address" type="xsd:string" />
215
210
  <element name="City" type="xsd:string" />
216
-
217
211
  <element name="State" type="xsd:string" />
218
212
  <element name="Zip" type="xsd:string" />
219
213
  <element name="Area" type="xsd:string" />
220
- <element name="Address" type="xsd:string" />
221
- <element name="Email" type="xsd:string" />
222
- <element name="ECommentPositionID" type="xsd:int" />
223
- <element name="HasVideoComment" type="xsd:boolean" />
224
- <element name="CreatedStamp" type="xsd:dateTime" />
214
+ <element name="Position" type="xsd:string" />
215
+ <element name="HasVideo" type="xsd:boolean" />
216
+ <element name="CreatedDate" type="xsd:dateTime" />
225
217
  </all>
226
218
  </complexType>
227
219
  <complexType name="PracticeQuestion">
@@ -231,7 +223,6 @@
231
223
  </complexType>
232
224
  <complexType name="TrainingChapter">
233
225
  <all>
234
-
235
226
  <element name="Subject" type="xsd:string" />
236
227
  </all>
237
228
  </complexType>
@@ -249,7 +240,6 @@
249
240
  <element name="EditorsNotes" type="xsd:string" />
250
241
  <element name="Private" type="xsd:boolean" />
251
242
  </all>
252
-
253
243
  </complexType>
254
244
  <complexType name="VoteEntry">
255
245
  <all>
@@ -267,7 +257,6 @@
267
257
  <complexType name="Rollcall">
268
258
  <all>
269
259
  <element name="Attendees" type="ns5:AttendeeStatusCollection" />
270
-
271
260
  </all>
272
261
  </complexType>
273
262
  <complexType name="AttendeeStatus">
@@ -285,7 +274,6 @@
285
274
  </all>
286
275
  </complexType>
287
276
  <complexType name="Attendee">
288
-
289
277
  <all>
290
278
  <element name="ID" type="xsd:int" />
291
279
  <element name="Name" type="xsd:string" />
@@ -303,7 +291,6 @@
303
291
  <complexType name="VoteCollection">
304
292
  <complexContent>
305
293
  <restriction base="SOAP-ENC:Array">
306
-
307
294
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:VoteEntry[]" />
308
295
  </restriction>
309
296
  </complexContent>
@@ -321,7 +308,6 @@
321
308
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:CameraData[]" />
322
309
  </restriction>
323
310
  </complexContent>
324
-
325
311
  </complexType>
326
312
  <complexType name="EventCollection">
327
313
  <complexContent>
@@ -339,7 +325,6 @@
339
325
  </complexType>
340
326
  <complexType name="ClipCollection">
341
327
  <complexContent>
342
-
343
328
  <restriction base="SOAP-ENC:Array">
344
329
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:ClipData[]" />
345
330
  </restriction>
@@ -357,7 +342,6 @@
357
342
  <restriction base="SOAP-ENC:Array">
358
343
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:GroupData[]" />
359
344
  </restriction>
360
-
361
345
  </complexContent>
362
346
  </complexType>
363
347
  <complexType name="TemplateCollection">
@@ -375,7 +359,6 @@
375
359
  </complexContent>
376
360
  </complexType>
377
361
  <complexType name="AttendeeCollection">
378
-
379
362
  <complexContent>
380
363
  <restriction base="SOAP-ENC:Array">
381
364
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:Attendee[]" />
@@ -393,7 +376,6 @@
393
376
  <complexContent>
394
377
  <restriction base="SOAP-ENC:Array">
395
378
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:CaptionData[]" />
396
-
397
379
  </restriction>
398
380
  </complexContent>
399
381
  </complexType>
@@ -411,7 +393,6 @@
411
393
  </restriction>
412
394
  </complexContent>
413
395
  </complexType>
414
-
415
396
  <complexType name="ViewCollection">
416
397
  <complexContent>
417
398
  <restriction base="SOAP-ENC:Array">
@@ -419,1177 +400,22 @@
419
400
  </restriction>
420
401
  </complexContent>
421
402
  </complexType>
422
- <complexType name="ECommentCollection">
403
+ <complexType name="CommentCollection">
423
404
  <complexContent>
424
405
  <restriction base="SOAP-ENC:Array">
425
- <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:EComment[]" />
406
+ <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:Comment[]" />
426
407
  </restriction>
427
408
  </complexContent>
428
409
  </complexType>
429
410
  <complexType name="SettingCollection">
430
411
  <complexContent>
431
412
  <restriction base="SOAP-ENC:Array">
432
-
433
413
  <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:Setting[]" />
434
414
  </restriction>
435
415
  </complexContent>
436
416
  </complexType>
437
417
  </schema>
438
418
  </types>
439
- <portType name="UserSDKPort">
440
- <operation name="LogMessage">
441
- <input message="tns:LogMessageRequest" />
442
- <output message="tns:LogMessageResponse" />
443
- </operation>
444
- <operation name="Login">
445
- <input message="tns:LoginRequest" />
446
- <output message="tns:LoginResponse" />
447
- </operation>
448
- <operation name="GetChallenge">
449
- <input message="tns:GetChallengeRequest" />
450
-
451
- <output message="tns:GetChallengeResponse" />
452
- </operation>
453
- <operation name="SendChallengeResponse">
454
- <input message="tns:SendChallengeResponseRequest" />
455
- <output message="tns:SendChallengeResponseResponse" />
456
- </operation>
457
- <operation name="Logout">
458
- <input message="tns:LogoutRequest" />
459
- <output message="tns:LogoutResponse" />
460
- </operation>
461
- <operation name="CreateCamera">
462
- <input message="tns:CreateCameraRequest" />
463
- <output message="tns:CreateCameraResponse" />
464
- </operation>
465
- <operation name="GetCameras">
466
- <input message="tns:GetCamerasRequest" />
467
- <output message="tns:GetCamerasResponse" />
468
-
469
- </operation>
470
- <operation name="GetCamera">
471
- <input message="tns:GetCameraRequest" />
472
- <output message="tns:GetCameraResponse" />
473
- </operation>
474
- <operation name="GetCameraVideoLocation">
475
- <input message="tns:GetCameraVideoLocationRequest" />
476
- <output message="tns:GetCameraVideoLocationResponse" />
477
- </operation>
478
- <operation name="UpdateCamera">
479
- <input message="tns:UpdateCameraRequest" />
480
- <output message="tns:UpdateCameraResponse" />
481
- </operation>
482
- <operation name="DeleteCamera">
483
- <input message="tns:DeleteCameraRequest" />
484
- <output message="tns:DeleteCameraResponse" />
485
- </operation>
486
-
487
- <operation name="CreateEvent">
488
- <input message="tns:CreateEventRequest" />
489
- <output message="tns:CreateEventResponse" />
490
- </operation>
491
- <operation name="GetEvents">
492
- <input message="tns:GetEventsRequest" />
493
- <output message="tns:GetEventsResponse" />
494
- </operation>
495
- <operation name="GetEventsByForeignID">
496
- <input message="tns:GetEventsByForeignIDRequest" />
497
- <output message="tns:GetEventsByForeignIDResponse" />
498
- </operation>
499
- <operation name="GetEvent">
500
- <input message="tns:GetEventRequest" />
501
- <output message="tns:GetEventResponse" />
502
- </operation>
503
- <operation name="GetEventByUID">
504
-
505
- <input message="tns:GetEventByUIDRequest" />
506
- <output message="tns:GetEventByUIDResponse" />
507
- </operation>
508
- <operation name="GetEventVideoLocation">
509
- <input message="tns:GetEventVideoLocationRequest" />
510
- <output message="tns:GetEventVideoLocationResponse" />
511
- </operation>
512
- <operation name="GetEventVideoLocationByUID">
513
- <input message="tns:GetEventVideoLocationByUIDRequest" />
514
- <output message="tns:GetEventVideoLocationByUIDResponse" />
515
- </operation>
516
- <operation name="GetEventMetaData">
517
- <input message="tns:GetEventMetaDataRequest" />
518
- <output message="tns:GetEventMetaDataResponse" />
519
- </operation>
520
- <operation name="GetEventMetaDataByUID">
521
- <input message="tns:GetEventMetaDataByUIDRequest" />
522
-
523
- <output message="tns:GetEventMetaDataByUIDResponse" />
524
- </operation>
525
- <operation name="SetEventAgendaURL">
526
- <input message="tns:SetEventAgendaURLRequest" />
527
- <output message="tns:SetEventAgendaURLResponse" />
528
- </operation>
529
- <operation name="SetEventAgendaURLByUID">
530
- <input message="tns:SetEventAgendaURLByUIDRequest" />
531
- <output message="tns:SetEventAgendaURLByUIDResponse" />
532
- </operation>
533
- <operation name="UpdateEvent">
534
- <input message="tns:UpdateEventRequest" />
535
- <output message="tns:UpdateEventResponse" />
536
- </operation>
537
- <operation name="DeleteEvent">
538
- <input message="tns:DeleteEventRequest" />
539
- <output message="tns:DeleteEventResponse" />
540
-
541
- </operation>
542
- <operation name="AddEventMetaData">
543
- <input message="tns:AddEventMetaDataRequest" />
544
- <output message="tns:AddEventMetaDataResponse" />
545
- </operation>
546
- <operation name="ImportEventMetaData">
547
- <input message="tns:ImportEventMetaDataRequest" />
548
- <output message="tns:ImportEventMetaDataResponse" />
549
- </operation>
550
- <operation name="CreateFolder">
551
- <input message="tns:CreateFolderRequest" />
552
- <output message="tns:CreateFolderResponse" />
553
- </operation>
554
- <operation name="GetFolders">
555
- <input message="tns:GetFoldersRequest" />
556
- <output message="tns:GetFoldersResponse" />
557
- </operation>
558
-
559
- <operation name="GetFoldersByType">
560
- <input message="tns:GetFoldersByTypeRequest" />
561
- <output message="tns:GetFoldersByTypeResponse" />
562
- </operation>
563
- <operation name="GetFolder">
564
- <input message="tns:GetFolderRequest" />
565
- <output message="tns:GetFolderResponse" />
566
- </operation>
567
- <operation name="GetFolderUploadInterface">
568
- <input message="tns:GetFolderUploadInterfaceRequest" />
569
- <output message="tns:GetFolderUploadInterfaceResponse" />
570
- </operation>
571
- <operation name="UpdateFolder">
572
- <input message="tns:UpdateFolderRequest" />
573
- <output message="tns:UpdateFolderResponse" />
574
- </operation>
575
- <operation name="RegisterClipUpload">
576
-
577
- <input message="tns:RegisterClipUploadRequest" />
578
- <output message="tns:RegisterClipUploadResponse" />
579
- </operation>
580
- <operation name="GetClips">
581
- <input message="tns:GetClipsRequest" />
582
- <output message="tns:GetClipsResponse" />
583
- </operation>
584
- <operation name="GetClipsByForeignID">
585
- <input message="tns:GetClipsByForeignIDRequest" />
586
- <output message="tns:GetClipsByForeignIDResponse" />
587
- </operation>
588
- <operation name="GetClip">
589
- <input message="tns:GetClipRequest" />
590
- <output message="tns:GetClipResponse" />
591
- </operation>
592
- <operation name="GetClipByUID">
593
- <input message="tns:GetClipByUIDRequest" />
594
-
595
- <output message="tns:GetClipByUIDResponse" />
596
- </operation>
597
- <operation name="GetClipVideoLocation">
598
- <input message="tns:GetClipVideoLocationRequest" />
599
- <output message="tns:GetClipVideoLocationResponse" />
600
- </operation>
601
- <operation name="GetClipMetaData">
602
- <input message="tns:GetClipMetaDataRequest" />
603
- <output message="tns:GetClipMetaDataResponse" />
604
- </operation>
605
- <operation name="GetClipMetaDataByUID">
606
- <input message="tns:GetClipMetaDataByUIDRequest" />
607
- <output message="tns:GetClipMetaDataByUIDResponse" />
608
- </operation>
609
- <operation name="GetClipIndices">
610
- <input message="tns:GetClipIndicesRequest" />
611
- <output message="tns:GetClipIndicesResponse" />
612
-
613
- </operation>
614
- <operation name="GetClipIndicesByUID">
615
- <input message="tns:GetClipIndicesByUIDRequest" />
616
- <output message="tns:GetClipIndicesByUIDResponse" />
617
- </operation>
618
- <operation name="GetClipCaptions">
619
- <input message="tns:GetClipCaptionsRequest" />
620
- <output message="tns:GetClipCaptionsResponse" />
621
- </operation>
622
- <operation name="GetClipCaptionsByUID">
623
- <input message="tns:GetClipCaptionsByUIDRequest" />
624
- <output message="tns:GetClipCaptionsByUIDResponse" />
625
- </operation>
626
- <operation name="SetClipAgendaURL">
627
- <input message="tns:SetClipAgendaURLRequest" />
628
- <output message="tns:SetClipAgendaURLResponse" />
629
- </operation>
630
-
631
- <operation name="SetClipMinutesURL">
632
- <input message="tns:SetClipMinutesURLRequest" />
633
- <output message="tns:SetClipMinutesURLResponse" />
634
- </operation>
635
- <operation name="UpdateClip">
636
- <input message="tns:UpdateClipRequest" />
637
- <output message="tns:UpdateClipResponse" />
638
- </operation>
639
- <operation name="DeleteClip">
640
- <input message="tns:DeleteClipRequest" />
641
- <output message="tns:DeleteClipResponse" />
642
- </operation>
643
- <operation name="AddClipMetaData">
644
- <input message="tns:AddClipMetaDataRequest" />
645
- <output message="tns:AddClipMetaDataResponse" />
646
- </operation>
647
- <operation name="ImportClipMetaData">
648
-
649
- <input message="tns:ImportClipMetaDataRequest" />
650
- <output message="tns:ImportClipMetaDataResponse" />
651
- </operation>
652
- <operation name="GetMetaData">
653
- <input message="tns:GetMetaDataRequest" />
654
- <output message="tns:GetMetaDataResponse" />
655
- </operation>
656
- <operation name="GetMetaDataByUID">
657
- <input message="tns:GetMetaDataByUIDRequest" />
658
- <output message="tns:GetMetaDataByUIDResponse" />
659
- </operation>
660
- <operation name="GetMetaDataVideoLocation">
661
- <input message="tns:GetMetaDataVideoLocationRequest" />
662
- <output message="tns:GetMetaDataVideoLocationResponse" />
663
- </operation>
664
- <operation name="UpdateMetaData">
665
- <input message="tns:UpdateMetaDataRequest" />
666
-
667
- <output message="tns:UpdateMetaDataResponse" />
668
- </operation>
669
- <operation name="DeleteMetaData">
670
- <input message="tns:DeleteMetaDataRequest" />
671
- <output message="tns:DeleteMetaDataResponse" />
672
- </operation>
673
- <operation name="FetchAttachment">
674
- <input message="tns:FetchAttachmentRequest" />
675
- <output message="tns:FetchAttachmentResponse" />
676
- </operation>
677
- <operation name="CreateView">
678
- <input message="tns:CreateViewRequest" />
679
- <output message="tns:CreateViewResponse" />
680
- </operation>
681
- <operation name="GetViews">
682
- <input message="tns:GetViewsRequest" />
683
- <output message="tns:GetViewsResponse" />
684
-
685
- </operation>
686
- <operation name="GetView">
687
- <input message="tns:GetViewRequest" />
688
- <output message="tns:GetViewResponse" />
689
- </operation>
690
- <operation name="UpdateView">
691
- <input message="tns:UpdateViewRequest" />
692
- <output message="tns:UpdateViewResponse" />
693
- </operation>
694
- <operation name="CreateUser">
695
- <input message="tns:CreateUserRequest" />
696
- <output message="tns:CreateUserResponse" />
697
- </operation>
698
- <operation name="GetCurrentUserID">
699
- <input message="tns:GetCurrentUserIDRequest" />
700
- <output message="tns:GetCurrentUserIDResponse" />
701
- </operation>
702
-
703
- <operation name="GetCurrentUserLogon">
704
- <input message="tns:GetCurrentUserLogonRequest" />
705
- <output message="tns:GetCurrentUserLogonResponse" />
706
- </operation>
707
- <operation name="GetUsers">
708
- <input message="tns:GetUsersRequest" />
709
- <output message="tns:GetUsersResponse" />
710
- </operation>
711
- <operation name="GetUser">
712
- <input message="tns:GetUserRequest" />
713
- <output message="tns:GetUserResponse" />
714
- </operation>
715
- <operation name="UpdateUser">
716
- <input message="tns:UpdateUserRequest" />
717
- <output message="tns:UpdateUserResponse" />
718
- </operation>
719
- <operation name="CreateGroup">
720
-
721
- <input message="tns:CreateGroupRequest" />
722
- <output message="tns:CreateGroupResponse" />
723
- </operation>
724
- <operation name="GetGroups">
725
- <input message="tns:GetGroupsRequest" />
726
- <output message="tns:GetGroupsResponse" />
727
- </operation>
728
- <operation name="GetGroup">
729
- <input message="tns:GetGroupRequest" />
730
- <output message="tns:GetGroupResponse" />
731
- </operation>
732
- <operation name="UpdateGroup">
733
- <input message="tns:UpdateGroupRequest" />
734
- <output message="tns:UpdateGroupResponse" />
735
- </operation>
736
- <operation name="CreateTemplate">
737
- <input message="tns:CreateTemplateRequest" />
738
-
739
- <output message="tns:CreateTemplateResponse" />
740
- </operation>
741
- <operation name="GetTemplates">
742
- <input message="tns:GetTemplatesRequest" />
743
- <output message="tns:GetTemplatesResponse" />
744
- </operation>
745
- <operation name="GetTemplate">
746
- <input message="tns:GetTemplateRequest" />
747
- <output message="tns:GetTemplateResponse" />
748
- </operation>
749
- <operation name="UpdateTemplate">
750
- <input message="tns:UpdateTemplateRequest" />
751
- <output message="tns:UpdateTemplateResponse" />
752
- </operation>
753
- <operation name="CreateServer">
754
- <input message="tns:CreateServerRequest" />
755
- <output message="tns:CreateServerResponse" />
756
-
757
- </operation>
758
- <operation name="GetServers">
759
- <input message="tns:GetServersRequest" />
760
- <output message="tns:GetServersResponse" />
761
- </operation>
762
- <operation name="GetServer">
763
- <input message="tns:GetServerRequest" />
764
- <output message="tns:GetServerResponse" />
765
- </operation>
766
- <operation name="UpdateServer">
767
- <input message="tns:UpdateServerRequest" />
768
- <output message="tns:UpdateServerResponse" />
769
- </operation>
770
- <operation name="GetPermissionLevel">
771
- <input message="tns:GetPermissionLevelRequest" />
772
- <output message="tns:GetPermissionLevelResponse" />
773
- </operation>
774
-
775
- <operation name="CreateClipGeneratedMinutesDocument">
776
- <input message="tns:CreateClipGeneratedMinutesDocumentRequest" />
777
- <output message="tns:CreateClipGeneratedMinutesDocumentResponse" />
778
- </operation>
779
- <operation name="GetEcommentsByEventID">
780
- <input message="tns:GetEcommentsByEventIDRequest" />
781
- <output message="tns:GetEcommentsByEventIDResponse" />
782
- </operation>
783
- <operation name="GetEcommentsByAgendaItemUID">
784
- <input message="tns:GetEcommentsByAgendaItemUIDRequest" />
785
- <output message="tns:GetEcommentsByAgendaItemUIDResponse" />
786
- </operation>
787
- <operation name="GetSettings">
788
- <input message="tns:GetSettingsRequest" />
789
- <output message="tns:GetSettingsResponse" />
790
- </operation>
791
- </portType>
792
-
793
- <binding name="UserSDKBinding" type="tns:UserSDKPort">
794
- <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
795
- <operation name="LogMessage">
796
- <soap:operation soapAction="urn:UserSDK#userwebservice#LogMessage" />
797
- <input>
798
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
799
- </input>
800
- <output>
801
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
802
- </output>
803
- </operation>
804
- <operation name="Login">
805
- <soap:operation soapAction="urn:UserSDK#userwebservice#Login" />
806
- <input>
807
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
808
- </input>
809
- <output>
810
-
811
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
812
- </output>
813
- </operation>
814
- <operation name="GetChallenge">
815
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetChallenge" />
816
- <input>
817
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
818
- </input>
819
- <output>
820
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
821
- </output>
822
- </operation>
823
- <operation name="SendChallengeResponse">
824
- <soap:operation soapAction="urn:UserSDK#userwebservice#SendChallengeResponse" />
825
- <input>
826
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
827
- </input>
828
-
829
- <output>
830
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
831
- </output>
832
- </operation>
833
- <operation name="Logout">
834
- <soap:operation soapAction="urn:UserSDK#userwebservice#Logout" />
835
- <input>
836
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
837
- </input>
838
- <output>
839
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
840
- </output>
841
- </operation>
842
- <operation name="CreateCamera">
843
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateCamera" />
844
- <input>
845
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
846
-
847
- </input>
848
- <output>
849
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
850
- </output>
851
- </operation>
852
- <operation name="GetCameras">
853
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetCameras" />
854
- <input>
855
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
856
- </input>
857
- <output>
858
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
859
- </output>
860
- </operation>
861
- <operation name="GetCamera">
862
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetCamera" />
863
- <input>
864
-
865
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
866
- </input>
867
- <output>
868
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
869
- </output>
870
- </operation>
871
- <operation name="GetCameraVideoLocation">
872
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetCameraVideoLocation" />
873
- <input>
874
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
875
- </input>
876
- <output>
877
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
878
- </output>
879
- </operation>
880
- <operation name="UpdateCamera">
881
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateCamera" />
882
-
883
- <input>
884
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
885
- </input>
886
- <output>
887
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
888
- </output>
889
- </operation>
890
- <operation name="DeleteCamera">
891
- <soap:operation soapAction="urn:UserSDK#userwebservice#DeleteCamera" />
892
- <input>
893
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
894
- </input>
895
- <output>
896
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
897
- </output>
898
- </operation>
899
- <operation name="CreateEvent">
900
-
901
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateEvent" />
902
- <input>
903
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
904
- </input>
905
- <output>
906
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
907
- </output>
908
- </operation>
909
- <operation name="GetEvents">
910
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEvents" />
911
- <input>
912
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
913
- </input>
914
- <output>
915
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
916
- </output>
917
- </operation>
918
-
919
- <operation name="GetEventsByForeignID">
920
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEventsByForeignID" />
921
- <input>
922
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
923
- </input>
924
- <output>
925
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
926
- </output>
927
- </operation>
928
- <operation name="GetEvent">
929
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEvent" />
930
- <input>
931
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
932
- </input>
933
- <output>
934
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
935
- </output>
936
-
937
- </operation>
938
- <operation name="GetEventByUID">
939
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEventByUID" />
940
- <input>
941
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
942
- </input>
943
- <output>
944
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
945
- </output>
946
- </operation>
947
- <operation name="GetEventVideoLocation">
948
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEventVideoLocation" />
949
- <input>
950
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
951
- </input>
952
- <output>
953
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
954
-
955
- </output>
956
- </operation>
957
- <operation name="GetEventVideoLocationByUID">
958
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEventVideoLocationByUID" />
959
- <input>
960
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
961
- </input>
962
- <output>
963
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
964
- </output>
965
- </operation>
966
- <operation name="GetEventMetaData">
967
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEventMetaData" />
968
- <input>
969
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
970
- </input>
971
- <output>
972
-
973
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
974
- </output>
975
- </operation>
976
- <operation name="GetEventMetaDataByUID">
977
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEventMetaDataByUID" />
978
- <input>
979
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
980
- </input>
981
- <output>
982
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
983
- </output>
984
- </operation>
985
- <operation name="SetEventAgendaURL">
986
- <soap:operation soapAction="urn:UserSDK#userwebservice#SetEventAgendaURL" />
987
- <input>
988
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
989
- </input>
990
-
991
- <output>
992
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
993
- </output>
994
- </operation>
995
- <operation name="SetEventAgendaURLByUID">
996
- <soap:operation soapAction="urn:UserSDK#userwebservice#SetEventAgendaURLByUID" />
997
- <input>
998
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
999
- </input>
1000
- <output>
1001
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1002
- </output>
1003
- </operation>
1004
- <operation name="UpdateEvent">
1005
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateEvent" />
1006
- <input>
1007
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1008
-
1009
- </input>
1010
- <output>
1011
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1012
- </output>
1013
- </operation>
1014
- <operation name="DeleteEvent">
1015
- <soap:operation soapAction="urn:UserSDK#userwebservice#DeleteEvent" />
1016
- <input>
1017
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1018
- </input>
1019
- <output>
1020
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1021
- </output>
1022
- </operation>
1023
- <operation name="AddEventMetaData">
1024
- <soap:operation soapAction="urn:UserSDK#userwebservice#AddEventMetaData" />
1025
- <input>
1026
-
1027
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1028
- </input>
1029
- <output>
1030
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1031
- </output>
1032
- </operation>
1033
- <operation name="ImportEventMetaData">
1034
- <soap:operation soapAction="urn:UserSDK#userwebservice#ImportEventMetaData" />
1035
- <input>
1036
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1037
- </input>
1038
- <output>
1039
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1040
- </output>
1041
- </operation>
1042
- <operation name="CreateFolder">
1043
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateFolder" />
1044
-
1045
- <input>
1046
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1047
- </input>
1048
- <output>
1049
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1050
- </output>
1051
- </operation>
1052
- <operation name="GetFolders">
1053
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetFolders" />
1054
- <input>
1055
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1056
- </input>
1057
- <output>
1058
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1059
- </output>
1060
- </operation>
1061
- <operation name="GetFoldersByType">
1062
-
1063
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetFoldersByType" />
1064
- <input>
1065
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1066
- </input>
1067
- <output>
1068
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1069
- </output>
1070
- </operation>
1071
- <operation name="GetFolder">
1072
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetFolder" />
1073
- <input>
1074
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1075
- </input>
1076
- <output>
1077
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1078
- </output>
1079
- </operation>
1080
-
1081
- <operation name="GetFolderUploadInterface">
1082
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetFolderUploadInterface" />
1083
- <input>
1084
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1085
- </input>
1086
- <output>
1087
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1088
- </output>
1089
- </operation>
1090
- <operation name="UpdateFolder">
1091
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateFolder" />
1092
- <input>
1093
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1094
- </input>
1095
- <output>
1096
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1097
- </output>
1098
-
1099
- </operation>
1100
- <operation name="RegisterClipUpload">
1101
- <soap:operation soapAction="urn:UserSDK#userwebservice#RegisterClipUpload" />
1102
- <input>
1103
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1104
- </input>
1105
- <output>
1106
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1107
- </output>
1108
- </operation>
1109
- <operation name="GetClips">
1110
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClips" />
1111
- <input>
1112
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1113
- </input>
1114
- <output>
1115
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1116
-
1117
- </output>
1118
- </operation>
1119
- <operation name="GetClipsByForeignID">
1120
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipsByForeignID" />
1121
- <input>
1122
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1123
- </input>
1124
- <output>
1125
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1126
- </output>
1127
- </operation>
1128
- <operation name="GetClip">
1129
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClip" />
1130
- <input>
1131
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1132
- </input>
1133
- <output>
1134
-
1135
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1136
- </output>
1137
- </operation>
1138
- <operation name="GetClipByUID">
1139
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipByUID" />
1140
- <input>
1141
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1142
- </input>
1143
- <output>
1144
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1145
- </output>
1146
- </operation>
1147
- <operation name="GetClipVideoLocation">
1148
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipVideoLocation" />
1149
- <input>
1150
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1151
- </input>
1152
-
1153
- <output>
1154
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1155
- </output>
1156
- </operation>
1157
- <operation name="GetClipMetaData">
1158
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipMetaData" />
1159
- <input>
1160
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1161
- </input>
1162
- <output>
1163
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1164
- </output>
1165
- </operation>
1166
- <operation name="GetClipMetaDataByUID">
1167
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipMetaDataByUID" />
1168
- <input>
1169
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1170
-
1171
- </input>
1172
- <output>
1173
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1174
- </output>
1175
- </operation>
1176
- <operation name="GetClipIndices">
1177
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipIndices" />
1178
- <input>
1179
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1180
- </input>
1181
- <output>
1182
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1183
- </output>
1184
- </operation>
1185
- <operation name="GetClipIndicesByUID">
1186
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipIndicesByUID" />
1187
- <input>
1188
-
1189
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1190
- </input>
1191
- <output>
1192
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1193
- </output>
1194
- </operation>
1195
- <operation name="GetClipCaptions">
1196
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipCaptions" />
1197
- <input>
1198
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1199
- </input>
1200
- <output>
1201
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1202
- </output>
1203
- </operation>
1204
- <operation name="GetClipCaptionsByUID">
1205
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetClipCaptionsByUID" />
1206
-
1207
- <input>
1208
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1209
- </input>
1210
- <output>
1211
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1212
- </output>
1213
- </operation>
1214
- <operation name="SetClipAgendaURL">
1215
- <soap:operation soapAction="urn:UserSDK#userwebservice#SetClipAgendaURL" />
1216
- <input>
1217
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1218
- </input>
1219
- <output>
1220
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1221
- </output>
1222
- </operation>
1223
- <operation name="SetClipMinutesURL">
1224
-
1225
- <soap:operation soapAction="urn:UserSDK#userwebservice#SetClipMinutesURL" />
1226
- <input>
1227
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1228
- </input>
1229
- <output>
1230
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1231
- </output>
1232
- </operation>
1233
- <operation name="UpdateClip">
1234
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateClip" />
1235
- <input>
1236
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1237
- </input>
1238
- <output>
1239
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1240
- </output>
1241
- </operation>
1242
-
1243
- <operation name="DeleteClip">
1244
- <soap:operation soapAction="urn:UserSDK#userwebservice#DeleteClip" />
1245
- <input>
1246
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1247
- </input>
1248
- <output>
1249
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1250
- </output>
1251
- </operation>
1252
- <operation name="AddClipMetaData">
1253
- <soap:operation soapAction="urn:UserSDK#userwebservice#AddClipMetaData" />
1254
- <input>
1255
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1256
- </input>
1257
- <output>
1258
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1259
- </output>
1260
-
1261
- </operation>
1262
- <operation name="ImportClipMetaData">
1263
- <soap:operation soapAction="urn:UserSDK#userwebservice#ImportClipMetaData" />
1264
- <input>
1265
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1266
- </input>
1267
- <output>
1268
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1269
- </output>
1270
- </operation>
1271
- <operation name="GetMetaData">
1272
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetMetaData" />
1273
- <input>
1274
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1275
- </input>
1276
- <output>
1277
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1278
-
1279
- </output>
1280
- </operation>
1281
- <operation name="GetMetaDataByUID">
1282
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetMetaDataByUID" />
1283
- <input>
1284
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1285
- </input>
1286
- <output>
1287
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1288
- </output>
1289
- </operation>
1290
- <operation name="GetMetaDataVideoLocation">
1291
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetMetaDataVideoLocation" />
1292
- <input>
1293
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1294
- </input>
1295
- <output>
1296
-
1297
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1298
- </output>
1299
- </operation>
1300
- <operation name="UpdateMetaData">
1301
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateMetaData" />
1302
- <input>
1303
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1304
- </input>
1305
- <output>
1306
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1307
- </output>
1308
- </operation>
1309
- <operation name="DeleteMetaData">
1310
- <soap:operation soapAction="urn:UserSDK#userwebservice#DeleteMetaData" />
1311
- <input>
1312
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1313
- </input>
1314
-
1315
- <output>
1316
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1317
- </output>
1318
- </operation>
1319
- <operation name="FetchAttachment">
1320
- <soap:operation soapAction="urn:UserSDK#userwebservice#FetchAttachment" />
1321
- <input>
1322
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1323
- </input>
1324
- <output>
1325
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1326
- </output>
1327
- </operation>
1328
- <operation name="CreateView">
1329
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateView" />
1330
- <input>
1331
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1332
-
1333
- </input>
1334
- <output>
1335
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1336
- </output>
1337
- </operation>
1338
- <operation name="GetViews">
1339
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetViews" />
1340
- <input>
1341
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1342
- </input>
1343
- <output>
1344
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1345
- </output>
1346
- </operation>
1347
- <operation name="GetView">
1348
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetView" />
1349
- <input>
1350
-
1351
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1352
- </input>
1353
- <output>
1354
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1355
- </output>
1356
- </operation>
1357
- <operation name="UpdateView">
1358
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateView" />
1359
- <input>
1360
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1361
- </input>
1362
- <output>
1363
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1364
- </output>
1365
- </operation>
1366
- <operation name="CreateUser">
1367
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateUser" />
1368
-
1369
- <input>
1370
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1371
- </input>
1372
- <output>
1373
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1374
- </output>
1375
- </operation>
1376
- <operation name="GetCurrentUserID">
1377
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetCurrentUserID" />
1378
- <input>
1379
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1380
- </input>
1381
- <output>
1382
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1383
- </output>
1384
- </operation>
1385
- <operation name="GetCurrentUserLogon">
1386
-
1387
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetCurrentUserLogon" />
1388
- <input>
1389
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1390
- </input>
1391
- <output>
1392
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1393
- </output>
1394
- </operation>
1395
- <operation name="GetUsers">
1396
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetUsers" />
1397
- <input>
1398
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1399
- </input>
1400
- <output>
1401
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1402
- </output>
1403
- </operation>
1404
-
1405
- <operation name="GetUser">
1406
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetUser" />
1407
- <input>
1408
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1409
- </input>
1410
- <output>
1411
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1412
- </output>
1413
- </operation>
1414
- <operation name="UpdateUser">
1415
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateUser" />
1416
- <input>
1417
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1418
- </input>
1419
- <output>
1420
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1421
- </output>
1422
-
1423
- </operation>
1424
- <operation name="CreateGroup">
1425
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateGroup" />
1426
- <input>
1427
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1428
- </input>
1429
- <output>
1430
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1431
- </output>
1432
- </operation>
1433
- <operation name="GetGroups">
1434
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetGroups" />
1435
- <input>
1436
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1437
- </input>
1438
- <output>
1439
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1440
-
1441
- </output>
1442
- </operation>
1443
- <operation name="GetGroup">
1444
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetGroup" />
1445
- <input>
1446
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1447
- </input>
1448
- <output>
1449
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1450
- </output>
1451
- </operation>
1452
- <operation name="UpdateGroup">
1453
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateGroup" />
1454
- <input>
1455
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1456
- </input>
1457
- <output>
1458
-
1459
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1460
- </output>
1461
- </operation>
1462
- <operation name="CreateTemplate">
1463
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateTemplate" />
1464
- <input>
1465
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1466
- </input>
1467
- <output>
1468
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1469
- </output>
1470
- </operation>
1471
- <operation name="GetTemplates">
1472
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetTemplates" />
1473
- <input>
1474
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1475
- </input>
1476
-
1477
- <output>
1478
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1479
- </output>
1480
- </operation>
1481
- <operation name="GetTemplate">
1482
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetTemplate" />
1483
- <input>
1484
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1485
- </input>
1486
- <output>
1487
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1488
- </output>
1489
- </operation>
1490
- <operation name="UpdateTemplate">
1491
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateTemplate" />
1492
- <input>
1493
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1494
-
1495
- </input>
1496
- <output>
1497
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1498
- </output>
1499
- </operation>
1500
- <operation name="CreateServer">
1501
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateServer" />
1502
- <input>
1503
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1504
- </input>
1505
- <output>
1506
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1507
- </output>
1508
- </operation>
1509
- <operation name="GetServers">
1510
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetServers" />
1511
- <input>
1512
-
1513
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1514
- </input>
1515
- <output>
1516
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1517
- </output>
1518
- </operation>
1519
- <operation name="GetServer">
1520
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetServer" />
1521
- <input>
1522
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1523
- </input>
1524
- <output>
1525
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1526
- </output>
1527
- </operation>
1528
- <operation name="UpdateServer">
1529
- <soap:operation soapAction="urn:UserSDK#userwebservice#UpdateServer" />
1530
-
1531
- <input>
1532
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1533
- </input>
1534
- <output>
1535
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1536
- </output>
1537
- </operation>
1538
- <operation name="GetPermissionLevel">
1539
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetPermissionLevel" />
1540
- <input>
1541
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1542
- </input>
1543
- <output>
1544
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1545
- </output>
1546
- </operation>
1547
- <operation name="CreateClipGeneratedMinutesDocument">
1548
-
1549
- <soap:operation soapAction="urn:UserSDK#userwebservice#CreateClipGeneratedMinutesDocument" />
1550
- <input>
1551
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1552
- </input>
1553
- <output>
1554
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1555
- </output>
1556
- </operation>
1557
- <operation name="GetEcommentsByEventID">
1558
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEcommentsByEventID" />
1559
- <input>
1560
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1561
- </input>
1562
- <output>
1563
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1564
- </output>
1565
- </operation>
1566
-
1567
- <operation name="GetEcommentsByAgendaItemUID">
1568
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetEcommentsByAgendaItemUID" />
1569
- <input>
1570
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1571
- </input>
1572
- <output>
1573
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1574
- </output>
1575
- </operation>
1576
- <operation name="GetSettings">
1577
- <soap:operation soapAction="urn:UserSDK#userwebservice#GetSettings" />
1578
- <input>
1579
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1580
- </input>
1581
- <output>
1582
- <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1583
- </output>
1584
-
1585
- </operation>
1586
- </binding>
1587
- <service name="UserSDKService">
1588
- <documentation />
1589
- <port name="UserSDKPort" binding="tns:UserSDKBinding">
1590
- <soap:address location="http://localhost/SDK/User/index.php" />
1591
- </port>
1592
- </service>
1593
419
  <message name="LogMessageRequest">
1594
420
  <part name="Message" type="xsd:string" />
1595
421
  <part name="Application" type="xsd:string" />
@@ -1599,7 +425,6 @@
1599
425
  <message name="LogMessageResponse">
1600
426
  <part name="result" type="xsd:int" />
1601
427
  </message>
1602
-
1603
428
  <message name="LoginRequest">
1604
429
  <part name="Username" type="xsd:string" />
1605
430
  <part name="Password" type="xsd:string" />
@@ -1617,7 +442,6 @@
1617
442
  </message>
1618
443
  <message name="SendChallengeResponseResponse" />
1619
444
  <message name="LogoutRequest" />
1620
-
1621
445
  <message name="LogoutResponse" />
1622
446
  <message name="CreateCameraRequest">
1623
447
  <part name="CameraData" type="ns5:CameraData" />
@@ -1635,7 +459,6 @@
1635
459
  <message name="GetCameraResponse">
1636
460
  <part name="camera" type="ns5:CameraData" />
1637
461
  </message>
1638
-
1639
462
  <message name="GetCameraVideoLocationRequest">
1640
463
  <part name="CameraID" type="xsd:int" />
1641
464
  </message>
@@ -1653,7 +476,6 @@
1653
476
  <message name="CreateEventRequest">
1654
477
  <part name="EventData" type="ns5:EventData" />
1655
478
  </message>
1656
-
1657
479
  <message name="CreateEventResponse">
1658
480
  <part name="EventID" type="xsd:int" />
1659
481
  </message>
@@ -1671,7 +493,6 @@
1671
493
  <part name="EventID" type="xsd:int" />
1672
494
  </message>
1673
495
  <message name="GetEventResponse">
1674
-
1675
496
  <part name="event" type="ns5:EventData" />
1676
497
  </message>
1677
498
  <message name="GetEventByUIDRequest">
@@ -1689,7 +510,6 @@
1689
510
  <message name="GetEventVideoLocationByUIDRequest">
1690
511
  <part name="EventUID" type="xsd:string" />
1691
512
  </message>
1692
-
1693
513
  <message name="GetEventVideoLocationByUIDResponse">
1694
514
  <part name="url" type="xsd:string" />
1695
515
  </message>
@@ -1707,7 +527,6 @@
1707
527
  </message>
1708
528
  <message name="SetEventAgendaURLRequest">
1709
529
  <part name="EventID" type="xsd:int" />
1710
-
1711
530
  <part name="URL" type="xsd:string" />
1712
531
  </message>
1713
532
  <message name="SetEventAgendaURLResponse" />
@@ -1725,7 +544,6 @@
1725
544
  </message>
1726
545
  <message name="DeleteEventResponse" />
1727
546
  <message name="AddEventMetaDataRequest">
1728
-
1729
547
  <part name="EventID" type="xsd:int" />
1730
548
  <part name="MetaDataData" type="ns5:MetaDataData" />
1731
549
  </message>
@@ -1743,7 +561,6 @@
1743
561
  </message>
1744
562
  <message name="CreateFolderRequest">
1745
563
  <part name="FolderData" type="ns5:FolderData" />
1746
-
1747
564
  </message>
1748
565
  <message name="CreateFolderResponse">
1749
566
  <part name="FolderID" type="xsd:int" />
@@ -1752,6 +569,10 @@
1752
569
  <message name="GetFoldersResponse">
1753
570
  <part name="folders" type="ns5:FolderCollection" />
1754
571
  </message>
572
+ <message name="DeleteFolderRequest">
573
+ <part name="FolderID" type="xsd:int" />
574
+ </message>
575
+ <message name="DeleteFolderResponse" />
1755
576
  <message name="GetFoldersByTypeRequest">
1756
577
  <part name="Type" type="xsd:string" />
1757
578
  </message>
@@ -1761,7 +582,6 @@
1761
582
  <message name="GetFolderRequest">
1762
583
  <part name="FolderID" type="xsd:int" />
1763
584
  </message>
1764
-
1765
585
  <message name="GetFolderResponse">
1766
586
  <part name="folder" type="ns5:FolderData" />
1767
587
  </message>
@@ -1779,7 +599,6 @@
1779
599
  <part name="ClipData" type="ns5:ClipData" />
1780
600
  <part name="ServerID" type="xsd:int" />
1781
601
  </message>
1782
-
1783
602
  <message name="RegisterClipUploadResponse">
1784
603
  <part name="ClipID" type="xsd:int" />
1785
604
  </message>
@@ -1797,7 +616,6 @@
1797
616
  </message>
1798
617
  <message name="GetClipRequest">
1799
618
  <part name="ClipID" type="xsd:int" />
1800
-
1801
619
  </message>
1802
620
  <message name="GetClipResponse">
1803
621
  <part name="clip" type="ns5:ClipData" />
@@ -1815,7 +633,6 @@
1815
633
  <part name="url" type="xsd:string" />
1816
634
  </message>
1817
635
  <message name="GetClipMetaDataRequest">
1818
-
1819
636
  <part name="ClipID" type="xsd:int" />
1820
637
  </message>
1821
638
  <message name="GetClipMetaDataResponse">
@@ -1833,7 +650,6 @@
1833
650
  <message name="GetClipIndicesResponse">
1834
651
  <part name="metadata" type="ns5:MetaDataDataCollection" />
1835
652
  </message>
1836
-
1837
653
  <message name="GetClipIndicesByUIDRequest">
1838
654
  <part name="ClipUID" type="xsd:string" />
1839
655
  </message>
@@ -1851,7 +667,6 @@
1851
667
  </message>
1852
668
  <message name="GetClipCaptionsByUIDResponse">
1853
669
  <part name="captions" type="xsd:string" />
1854
-
1855
670
  </message>
1856
671
  <message name="SetClipAgendaURLRequest">
1857
672
  <part name="ClipID" type="xsd:int" />
@@ -1869,7 +684,6 @@
1869
684
  <message name="UpdateClipResponse" />
1870
685
  <message name="DeleteClipRequest">
1871
686
  <part name="ClipID" type="xsd:int" />
1872
-
1873
687
  </message>
1874
688
  <message name="DeleteClipResponse" />
1875
689
  <message name="AddClipMetaDataRequest">
@@ -1887,7 +701,6 @@
1887
701
  </message>
1888
702
  <message name="ImportClipMetaDataResponse">
1889
703
  <part name="KeyTable" type="ns5:KeyTable" />
1890
-
1891
704
  </message>
1892
705
  <message name="GetMetaDataRequest">
1893
706
  <part name="MetaDataID" type="xsd:int" />
@@ -1905,7 +718,6 @@
1905
718
  <part name="MetaDataID" type="xsd:int" />
1906
719
  </message>
1907
720
  <message name="GetMetaDataVideoLocationResponse">
1908
-
1909
721
  <part name="url" type="xsd:string" />
1910
722
  </message>
1911
723
  <message name="UpdateMetaDataRequest">
@@ -1923,7 +735,6 @@
1923
735
  <part name="Attachment" type="ns5:Document" />
1924
736
  </message>
1925
737
  <message name="CreateViewRequest">
1926
-
1927
738
  <part name="ViewData" type="ns5:ViewData" />
1928
739
  </message>
1929
740
  <message name="CreateViewResponse">
@@ -1941,7 +752,6 @@
1941
752
  </message>
1942
753
  <message name="UpdateViewRequest">
1943
754
  <part name="view" type="ns5:ViewData" />
1944
-
1945
755
  </message>
1946
756
  <message name="UpdateViewResponse" />
1947
757
  <message name="CreateUserRequest">
@@ -1959,7 +769,6 @@
1959
769
  <part name="Logon" type="xsd:string" />
1960
770
  </message>
1961
771
  <message name="GetUsersRequest" />
1962
-
1963
772
  <message name="GetUsersResponse">
1964
773
  <part name="users" type="ns5:UserCollection" />
1965
774
  </message>
@@ -1977,7 +786,6 @@
1977
786
  <part name="GroupData" type="ns5:GroupData" />
1978
787
  </message>
1979
788
  <message name="CreateGroupResponse">
1980
-
1981
789
  <part name="GroupID" type="xsd:int" />
1982
790
  </message>
1983
791
  <message name="GetGroupsRequest" />
@@ -1994,8 +802,11 @@
1994
802
  <part name="group" type="ns5:GroupData" />
1995
803
  </message>
1996
804
  <message name="UpdateGroupResponse" />
805
+ <message name="DeleteGroupRequest">
806
+ <part name="GroupID" type="xsd:int" />
807
+ </message>
808
+ <message name="DeleteGroupResponse" />
1997
809
  <message name="CreateTemplateRequest">
1998
-
1999
810
  <part name="TemplateData" type="ns5:TemplateData" />
2000
811
  </message>
2001
812
  <message name="CreateTemplateResponse">
@@ -2013,7 +824,6 @@
2013
824
  </message>
2014
825
  <message name="UpdateTemplateRequest">
2015
826
  <part name="template" type="ns5:TemplateData" />
2016
-
2017
827
  </message>
2018
828
  <message name="UpdateTemplateResponse" />
2019
829
  <message name="CreateServerRequest">
@@ -2031,12 +841,15 @@
2031
841
  </message>
2032
842
  <message name="GetServerResponse">
2033
843
  <part name="server" type="ns5:ServerData" />
2034
-
2035
844
  </message>
2036
845
  <message name="UpdateServerRequest">
2037
846
  <part name="server" type="ns5:ServerData" />
2038
847
  </message>
2039
848
  <message name="UpdateServerResponse" />
849
+ <message name="DeleteServerRequest">
850
+ <part name="ServerID" type="xsd:int" />
851
+ </message>
852
+ <message name="DeleteServerResponse" />
2040
853
  <message name="GetPermissionLevelRequest">
2041
854
  <part name="AssetType" type="xsd:string" />
2042
855
  <part name="AssetID" type="xsd:int" />
@@ -2049,25 +862,1171 @@
2049
862
  <part name="name" type="xsd:string" />
2050
863
  <part name="templateUid" type="xsd:string" />
2051
864
  <part name="isPublished" type="xsd:boolean" />
2052
-
2053
865
  <part name="isDefault" type="xsd:boolean" />
2054
866
  </message>
2055
867
  <message name="CreateClipGeneratedMinutesDocumentResponse" />
2056
- <message name="GetEcommentsByEventIDRequest">
868
+ <message name="GetCommentsByEventIDRequest">
2057
869
  <part name="EventID" type="xsd:int" />
2058
870
  </message>
2059
- <message name="GetEcommentsByEventIDResponse">
2060
- <part name="EComments" type="ns5:ECommentCollection" />
871
+ <message name="GetCommentsByEventIDResponse">
872
+ <part name="Comments" type="ns5:CommentCollection" />
873
+ </message>
874
+ <message name="GetCommentsByEventUIDRequest">
875
+ <part name="EventUID" type="xsd:string" />
876
+ </message>
877
+ <message name="GetCommentsByEventUIDResponse">
878
+ <part name="Comments" type="ns5:CommentCollection" />
2061
879
  </message>
2062
- <message name="GetEcommentsByAgendaItemUIDRequest">
880
+ <message name="GetCommentsByAgendaItemUIDRequest">
2063
881
  <part name="AgendaItemUID" type="xsd:string" />
2064
882
  </message>
2065
- <message name="GetEcommentsByAgendaItemUIDResponse">
2066
- <part name="EComments" type="ns5:ECommentCollection" />
883
+ <message name="GetCommentsByAgendaItemUIDResponse">
884
+ <part name="Comments" type="ns5:CommentCollection" />
2067
885
  </message>
2068
886
  <message name="GetSettingsRequest" />
2069
887
  <message name="GetSettingsResponse">
2070
-
2071
888
  <part name="settings" type="ns5:SettingCollection" />
2072
889
  </message>
890
+ <portType name="UserSDKPort">
891
+ <operation name="LogMessage">
892
+ <input message="tns:LogMessageRequest" />
893
+ <output message="tns:LogMessageResponse" />
894
+ </operation>
895
+ <operation name="Login">
896
+ <input message="tns:LoginRequest" />
897
+ <output message="tns:LoginResponse" />
898
+ </operation>
899
+ <operation name="GetChallenge">
900
+ <input message="tns:GetChallengeRequest" />
901
+ <output message="tns:GetChallengeResponse" />
902
+ </operation>
903
+ <operation name="SendChallengeResponse">
904
+ <input message="tns:SendChallengeResponseRequest" />
905
+ <output message="tns:SendChallengeResponseResponse" />
906
+ </operation>
907
+ <operation name="Logout">
908
+ <input message="tns:LogoutRequest" />
909
+ <output message="tns:LogoutResponse" />
910
+ </operation>
911
+ <operation name="CreateCamera">
912
+ <input message="tns:CreateCameraRequest" />
913
+ <output message="tns:CreateCameraResponse" />
914
+ </operation>
915
+ <operation name="GetCameras">
916
+ <input message="tns:GetCamerasRequest" />
917
+ <output message="tns:GetCamerasResponse" />
918
+ </operation>
919
+ <operation name="GetCamera">
920
+ <input message="tns:GetCameraRequest" />
921
+ <output message="tns:GetCameraResponse" />
922
+ </operation>
923
+ <operation name="GetCameraVideoLocation">
924
+ <input message="tns:GetCameraVideoLocationRequest" />
925
+ <output message="tns:GetCameraVideoLocationResponse" />
926
+ </operation>
927
+ <operation name="UpdateCamera">
928
+ <input message="tns:UpdateCameraRequest" />
929
+ <output message="tns:UpdateCameraResponse" />
930
+ </operation>
931
+ <operation name="DeleteCamera">
932
+ <input message="tns:DeleteCameraRequest" />
933
+ <output message="tns:DeleteCameraResponse" />
934
+ </operation>
935
+ <operation name="CreateEvent">
936
+ <input message="tns:CreateEventRequest" />
937
+ <output message="tns:CreateEventResponse" />
938
+ </operation>
939
+ <operation name="GetEvents">
940
+ <input message="tns:GetEventsRequest" />
941
+ <output message="tns:GetEventsResponse" />
942
+ </operation>
943
+ <operation name="GetEventsByForeignID">
944
+ <input message="tns:GetEventsByForeignIDRequest" />
945
+ <output message="tns:GetEventsByForeignIDResponse" />
946
+ </operation>
947
+ <operation name="GetEvent">
948
+ <input message="tns:GetEventRequest" />
949
+ <output message="tns:GetEventResponse" />
950
+ </operation>
951
+ <operation name="GetEventByUID">
952
+ <input message="tns:GetEventByUIDRequest" />
953
+ <output message="tns:GetEventByUIDResponse" />
954
+ </operation>
955
+ <operation name="GetEventVideoLocation">
956
+ <input message="tns:GetEventVideoLocationRequest" />
957
+ <output message="tns:GetEventVideoLocationResponse" />
958
+ </operation>
959
+ <operation name="GetEventVideoLocationByUID">
960
+ <input message="tns:GetEventVideoLocationByUIDRequest" />
961
+ <output message="tns:GetEventVideoLocationByUIDResponse" />
962
+ </operation>
963
+ <operation name="GetEventMetaData">
964
+ <input message="tns:GetEventMetaDataRequest" />
965
+ <output message="tns:GetEventMetaDataResponse" />
966
+ </operation>
967
+ <operation name="GetEventMetaDataByUID">
968
+ <input message="tns:GetEventMetaDataByUIDRequest" />
969
+ <output message="tns:GetEventMetaDataByUIDResponse" />
970
+ </operation>
971
+ <operation name="SetEventAgendaURL">
972
+ <input message="tns:SetEventAgendaURLRequest" />
973
+ <output message="tns:SetEventAgendaURLResponse" />
974
+ </operation>
975
+ <operation name="SetEventAgendaURLByUID">
976
+ <input message="tns:SetEventAgendaURLByUIDRequest" />
977
+ <output message="tns:SetEventAgendaURLByUIDResponse" />
978
+ </operation>
979
+ <operation name="UpdateEvent">
980
+ <input message="tns:UpdateEventRequest" />
981
+ <output message="tns:UpdateEventResponse" />
982
+ </operation>
983
+ <operation name="DeleteEvent">
984
+ <input message="tns:DeleteEventRequest" />
985
+ <output message="tns:DeleteEventResponse" />
986
+ </operation>
987
+ <operation name="AddEventMetaData">
988
+ <input message="tns:AddEventMetaDataRequest" />
989
+ <output message="tns:AddEventMetaDataResponse" />
990
+ </operation>
991
+ <operation name="ImportEventMetaData">
992
+ <input message="tns:ImportEventMetaDataRequest" />
993
+ <output message="tns:ImportEventMetaDataResponse" />
994
+ </operation>
995
+ <operation name="CreateFolder">
996
+ <input message="tns:CreateFolderRequest" />
997
+ <output message="tns:CreateFolderResponse" />
998
+ </operation>
999
+ <operation name="GetFolders">
1000
+ <input message="tns:GetFoldersRequest" />
1001
+ <output message="tns:GetFoldersResponse" />
1002
+ </operation>
1003
+ <operation name="DeleteFolder">
1004
+ <input message="tns:DeleteFolderRequest" />
1005
+ <output message="tns:DeleteFolderResponse" />
1006
+ </operation>
1007
+ <operation name="GetFoldersByType">
1008
+ <input message="tns:GetFoldersByTypeRequest" />
1009
+ <output message="tns:GetFoldersByTypeResponse" />
1010
+ </operation>
1011
+ <operation name="GetFolder">
1012
+ <input message="tns:GetFolderRequest" />
1013
+ <output message="tns:GetFolderResponse" />
1014
+ </operation>
1015
+ <operation name="GetFolderUploadInterface">
1016
+ <input message="tns:GetFolderUploadInterfaceRequest" />
1017
+ <output message="tns:GetFolderUploadInterfaceResponse" />
1018
+ </operation>
1019
+ <operation name="UpdateFolder">
1020
+ <input message="tns:UpdateFolderRequest" />
1021
+ <output message="tns:UpdateFolderResponse" />
1022
+ </operation>
1023
+ <operation name="RegisterClipUpload">
1024
+ <input message="tns:RegisterClipUploadRequest" />
1025
+ <output message="tns:RegisterClipUploadResponse" />
1026
+ </operation>
1027
+ <operation name="GetClips">
1028
+ <input message="tns:GetClipsRequest" />
1029
+ <output message="tns:GetClipsResponse" />
1030
+ </operation>
1031
+ <operation name="GetClipsByForeignID">
1032
+ <input message="tns:GetClipsByForeignIDRequest" />
1033
+ <output message="tns:GetClipsByForeignIDResponse" />
1034
+ </operation>
1035
+ <operation name="GetClip">
1036
+ <input message="tns:GetClipRequest" />
1037
+ <output message="tns:GetClipResponse" />
1038
+ </operation>
1039
+ <operation name="GetClipByUID">
1040
+ <input message="tns:GetClipByUIDRequest" />
1041
+ <output message="tns:GetClipByUIDResponse" />
1042
+ </operation>
1043
+ <operation name="GetClipVideoLocation">
1044
+ <input message="tns:GetClipVideoLocationRequest" />
1045
+ <output message="tns:GetClipVideoLocationResponse" />
1046
+ </operation>
1047
+ <operation name="GetClipMetaData">
1048
+ <input message="tns:GetClipMetaDataRequest" />
1049
+ <output message="tns:GetClipMetaDataResponse" />
1050
+ </operation>
1051
+ <operation name="GetClipMetaDataByUID">
1052
+ <input message="tns:GetClipMetaDataByUIDRequest" />
1053
+ <output message="tns:GetClipMetaDataByUIDResponse" />
1054
+ </operation>
1055
+ <operation name="GetClipIndices">
1056
+ <input message="tns:GetClipIndicesRequest" />
1057
+ <output message="tns:GetClipIndicesResponse" />
1058
+ </operation>
1059
+ <operation name="GetClipIndicesByUID">
1060
+ <input message="tns:GetClipIndicesByUIDRequest" />
1061
+ <output message="tns:GetClipIndicesByUIDResponse" />
1062
+ </operation>
1063
+ <operation name="GetClipCaptions">
1064
+ <input message="tns:GetClipCaptionsRequest" />
1065
+ <output message="tns:GetClipCaptionsResponse" />
1066
+ </operation>
1067
+ <operation name="GetClipCaptionsByUID">
1068
+ <input message="tns:GetClipCaptionsByUIDRequest" />
1069
+ <output message="tns:GetClipCaptionsByUIDResponse" />
1070
+ </operation>
1071
+ <operation name="SetClipAgendaURL">
1072
+ <input message="tns:SetClipAgendaURLRequest" />
1073
+ <output message="tns:SetClipAgendaURLResponse" />
1074
+ </operation>
1075
+ <operation name="SetClipMinutesURL">
1076
+ <input message="tns:SetClipMinutesURLRequest" />
1077
+ <output message="tns:SetClipMinutesURLResponse" />
1078
+ </operation>
1079
+ <operation name="UpdateClip">
1080
+ <input message="tns:UpdateClipRequest" />
1081
+ <output message="tns:UpdateClipResponse" />
1082
+ </operation>
1083
+ <operation name="DeleteClip">
1084
+ <input message="tns:DeleteClipRequest" />
1085
+ <output message="tns:DeleteClipResponse" />
1086
+ </operation>
1087
+ <operation name="AddClipMetaData">
1088
+ <input message="tns:AddClipMetaDataRequest" />
1089
+ <output message="tns:AddClipMetaDataResponse" />
1090
+ </operation>
1091
+ <operation name="ImportClipMetaData">
1092
+ <input message="tns:ImportClipMetaDataRequest" />
1093
+ <output message="tns:ImportClipMetaDataResponse" />
1094
+ </operation>
1095
+ <operation name="GetMetaData">
1096
+ <input message="tns:GetMetaDataRequest" />
1097
+ <output message="tns:GetMetaDataResponse" />
1098
+ </operation>
1099
+ <operation name="GetMetaDataByUID">
1100
+ <input message="tns:GetMetaDataByUIDRequest" />
1101
+ <output message="tns:GetMetaDataByUIDResponse" />
1102
+ </operation>
1103
+ <operation name="GetMetaDataVideoLocation">
1104
+ <input message="tns:GetMetaDataVideoLocationRequest" />
1105
+ <output message="tns:GetMetaDataVideoLocationResponse" />
1106
+ </operation>
1107
+ <operation name="UpdateMetaData">
1108
+ <input message="tns:UpdateMetaDataRequest" />
1109
+ <output message="tns:UpdateMetaDataResponse" />
1110
+ </operation>
1111
+ <operation name="DeleteMetaData">
1112
+ <input message="tns:DeleteMetaDataRequest" />
1113
+ <output message="tns:DeleteMetaDataResponse" />
1114
+ </operation>
1115
+ <operation name="FetchAttachment">
1116
+ <input message="tns:FetchAttachmentRequest" />
1117
+ <output message="tns:FetchAttachmentResponse" />
1118
+ </operation>
1119
+ <operation name="CreateView">
1120
+ <input message="tns:CreateViewRequest" />
1121
+ <output message="tns:CreateViewResponse" />
1122
+ </operation>
1123
+ <operation name="GetViews">
1124
+ <input message="tns:GetViewsRequest" />
1125
+ <output message="tns:GetViewsResponse" />
1126
+ </operation>
1127
+ <operation name="GetView">
1128
+ <input message="tns:GetViewRequest" />
1129
+ <output message="tns:GetViewResponse" />
1130
+ </operation>
1131
+ <operation name="UpdateView">
1132
+ <input message="tns:UpdateViewRequest" />
1133
+ <output message="tns:UpdateViewResponse" />
1134
+ </operation>
1135
+ <operation name="CreateUser">
1136
+ <input message="tns:CreateUserRequest" />
1137
+ <output message="tns:CreateUserResponse" />
1138
+ </operation>
1139
+ <operation name="GetCurrentUserID">
1140
+ <input message="tns:GetCurrentUserIDRequest" />
1141
+ <output message="tns:GetCurrentUserIDResponse" />
1142
+ </operation>
1143
+ <operation name="GetCurrentUserLogon">
1144
+ <input message="tns:GetCurrentUserLogonRequest" />
1145
+ <output message="tns:GetCurrentUserLogonResponse" />
1146
+ </operation>
1147
+ <operation name="GetUsers">
1148
+ <input message="tns:GetUsersRequest" />
1149
+ <output message="tns:GetUsersResponse" />
1150
+ </operation>
1151
+ <operation name="GetUser">
1152
+ <input message="tns:GetUserRequest" />
1153
+ <output message="tns:GetUserResponse" />
1154
+ </operation>
1155
+ <operation name="UpdateUser">
1156
+ <input message="tns:UpdateUserRequest" />
1157
+ <output message="tns:UpdateUserResponse" />
1158
+ </operation>
1159
+ <operation name="CreateGroup">
1160
+ <input message="tns:CreateGroupRequest" />
1161
+ <output message="tns:CreateGroupResponse" />
1162
+ </operation>
1163
+ <operation name="GetGroups">
1164
+ <input message="tns:GetGroupsRequest" />
1165
+ <output message="tns:GetGroupsResponse" />
1166
+ </operation>
1167
+ <operation name="GetGroup">
1168
+ <input message="tns:GetGroupRequest" />
1169
+ <output message="tns:GetGroupResponse" />
1170
+ </operation>
1171
+ <operation name="UpdateGroup">
1172
+ <input message="tns:UpdateGroupRequest" />
1173
+ <output message="tns:UpdateGroupResponse" />
1174
+ </operation>
1175
+ <operation name="DeleteGroup">
1176
+ <input message="tns:DeleteGroupRequest" />
1177
+ <output message="tns:DeleteGroupResponse" />
1178
+ </operation>
1179
+ <operation name="CreateTemplate">
1180
+ <input message="tns:CreateTemplateRequest" />
1181
+ <output message="tns:CreateTemplateResponse" />
1182
+ </operation>
1183
+ <operation name="GetTemplates">
1184
+ <input message="tns:GetTemplatesRequest" />
1185
+ <output message="tns:GetTemplatesResponse" />
1186
+ </operation>
1187
+ <operation name="GetTemplate">
1188
+ <input message="tns:GetTemplateRequest" />
1189
+ <output message="tns:GetTemplateResponse" />
1190
+ </operation>
1191
+ <operation name="UpdateTemplate">
1192
+ <input message="tns:UpdateTemplateRequest" />
1193
+ <output message="tns:UpdateTemplateResponse" />
1194
+ </operation>
1195
+ <operation name="CreateServer">
1196
+ <input message="tns:CreateServerRequest" />
1197
+ <output message="tns:CreateServerResponse" />
1198
+ </operation>
1199
+ <operation name="GetServers">
1200
+ <input message="tns:GetServersRequest" />
1201
+ <output message="tns:GetServersResponse" />
1202
+ </operation>
1203
+ <operation name="GetServer">
1204
+ <input message="tns:GetServerRequest" />
1205
+ <output message="tns:GetServerResponse" />
1206
+ </operation>
1207
+ <operation name="UpdateServer">
1208
+ <input message="tns:UpdateServerRequest" />
1209
+ <output message="tns:UpdateServerResponse" />
1210
+ </operation>
1211
+ <operation name="DeleteServer">
1212
+ <input message="tns:DeleteServerRequest" />
1213
+ <output message="tns:DeleteServerResponse" />
1214
+ </operation>
1215
+ <operation name="GetPermissionLevel">
1216
+ <input message="tns:GetPermissionLevelRequest" />
1217
+ <output message="tns:GetPermissionLevelResponse" />
1218
+ </operation>
1219
+ <operation name="CreateClipGeneratedMinutesDocument">
1220
+ <input message="tns:CreateClipGeneratedMinutesDocumentRequest" />
1221
+ <output message="tns:CreateClipGeneratedMinutesDocumentResponse" />
1222
+ </operation>
1223
+ <operation name="GetCommentsByEventID">
1224
+ <input message="tns:GetCommentsByEventIDRequest" />
1225
+ <output message="tns:GetCommentsByEventIDResponse" />
1226
+ </operation>
1227
+ <operation name="GetCommentsByEventUID">
1228
+ <input message="tns:GetCommentsByEventUIDRequest" />
1229
+ <output message="tns:GetCommentsByEventUIDResponse" />
1230
+ </operation>
1231
+ <operation name="GetCommentsByAgendaItemUID">
1232
+ <input message="tns:GetCommentsByAgendaItemUIDRequest" />
1233
+ <output message="tns:GetCommentsByAgendaItemUIDResponse" />
1234
+ </operation>
1235
+ <operation name="GetSettings">
1236
+ <input message="tns:GetSettingsRequest" />
1237
+ <output message="tns:GetSettingsResponse" />
1238
+ </operation>
1239
+ </portType>
1240
+ <binding name="UserSDKBinding" type="tns:UserSDKPort">
1241
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
1242
+ <operation name="LogMessage">
1243
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#LogMessage" />
1244
+ <input>
1245
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1246
+ </input>
1247
+ <output>
1248
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1249
+ </output>
1250
+ </operation>
1251
+ <operation name="Login">
1252
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#Login" />
1253
+ <input>
1254
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1255
+ </input>
1256
+ <output>
1257
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1258
+ </output>
1259
+ </operation>
1260
+ <operation name="GetChallenge">
1261
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetChallenge" />
1262
+ <input>
1263
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1264
+ </input>
1265
+ <output>
1266
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1267
+ </output>
1268
+ </operation>
1269
+ <operation name="SendChallengeResponse">
1270
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#SendChallengeResponse" />
1271
+ <input>
1272
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1273
+ </input>
1274
+ <output>
1275
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1276
+ </output>
1277
+ </operation>
1278
+ <operation name="Logout">
1279
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#Logout" />
1280
+ <input>
1281
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1282
+ </input>
1283
+ <output>
1284
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1285
+ </output>
1286
+ </operation>
1287
+ <operation name="CreateCamera">
1288
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateCamera" />
1289
+ <input>
1290
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1291
+ </input>
1292
+ <output>
1293
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1294
+ </output>
1295
+ </operation>
1296
+ <operation name="GetCameras">
1297
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCameras" />
1298
+ <input>
1299
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1300
+ </input>
1301
+ <output>
1302
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1303
+ </output>
1304
+ </operation>
1305
+ <operation name="GetCamera">
1306
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCamera" />
1307
+ <input>
1308
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1309
+ </input>
1310
+ <output>
1311
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1312
+ </output>
1313
+ </operation>
1314
+ <operation name="GetCameraVideoLocation">
1315
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCameraVideoLocation" />
1316
+ <input>
1317
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1318
+ </input>
1319
+ <output>
1320
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1321
+ </output>
1322
+ </operation>
1323
+ <operation name="UpdateCamera">
1324
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateCamera" />
1325
+ <input>
1326
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1327
+ </input>
1328
+ <output>
1329
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1330
+ </output>
1331
+ </operation>
1332
+ <operation name="DeleteCamera">
1333
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteCamera" />
1334
+ <input>
1335
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1336
+ </input>
1337
+ <output>
1338
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1339
+ </output>
1340
+ </operation>
1341
+ <operation name="CreateEvent">
1342
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateEvent" />
1343
+ <input>
1344
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1345
+ </input>
1346
+ <output>
1347
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1348
+ </output>
1349
+ </operation>
1350
+ <operation name="GetEvents">
1351
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEvents" />
1352
+ <input>
1353
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1354
+ </input>
1355
+ <output>
1356
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1357
+ </output>
1358
+ </operation>
1359
+ <operation name="GetEventsByForeignID">
1360
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEventsByForeignID" />
1361
+ <input>
1362
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1363
+ </input>
1364
+ <output>
1365
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1366
+ </output>
1367
+ </operation>
1368
+ <operation name="GetEvent">
1369
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEvent" />
1370
+ <input>
1371
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1372
+ </input>
1373
+ <output>
1374
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1375
+ </output>
1376
+ </operation>
1377
+ <operation name="GetEventByUID">
1378
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEventByUID" />
1379
+ <input>
1380
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1381
+ </input>
1382
+ <output>
1383
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1384
+ </output>
1385
+ </operation>
1386
+ <operation name="GetEventVideoLocation">
1387
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEventVideoLocation" />
1388
+ <input>
1389
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1390
+ </input>
1391
+ <output>
1392
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1393
+ </output>
1394
+ </operation>
1395
+ <operation name="GetEventVideoLocationByUID">
1396
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEventVideoLocationByUID" />
1397
+ <input>
1398
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1399
+ </input>
1400
+ <output>
1401
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1402
+ </output>
1403
+ </operation>
1404
+ <operation name="GetEventMetaData">
1405
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEventMetaData" />
1406
+ <input>
1407
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1408
+ </input>
1409
+ <output>
1410
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1411
+ </output>
1412
+ </operation>
1413
+ <operation name="GetEventMetaDataByUID">
1414
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetEventMetaDataByUID" />
1415
+ <input>
1416
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1417
+ </input>
1418
+ <output>
1419
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1420
+ </output>
1421
+ </operation>
1422
+ <operation name="SetEventAgendaURL">
1423
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#SetEventAgendaURL" />
1424
+ <input>
1425
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1426
+ </input>
1427
+ <output>
1428
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1429
+ </output>
1430
+ </operation>
1431
+ <operation name="SetEventAgendaURLByUID">
1432
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#SetEventAgendaURLByUID" />
1433
+ <input>
1434
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1435
+ </input>
1436
+ <output>
1437
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1438
+ </output>
1439
+ </operation>
1440
+ <operation name="UpdateEvent">
1441
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateEvent" />
1442
+ <input>
1443
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1444
+ </input>
1445
+ <output>
1446
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1447
+ </output>
1448
+ </operation>
1449
+ <operation name="DeleteEvent">
1450
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteEvent" />
1451
+ <input>
1452
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1453
+ </input>
1454
+ <output>
1455
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1456
+ </output>
1457
+ </operation>
1458
+ <operation name="AddEventMetaData">
1459
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#AddEventMetaData" />
1460
+ <input>
1461
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1462
+ </input>
1463
+ <output>
1464
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1465
+ </output>
1466
+ </operation>
1467
+ <operation name="ImportEventMetaData">
1468
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#ImportEventMetaData" />
1469
+ <input>
1470
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1471
+ </input>
1472
+ <output>
1473
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1474
+ </output>
1475
+ </operation>
1476
+ <operation name="CreateFolder">
1477
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateFolder" />
1478
+ <input>
1479
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1480
+ </input>
1481
+ <output>
1482
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1483
+ </output>
1484
+ </operation>
1485
+ <operation name="GetFolders">
1486
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetFolders" />
1487
+ <input>
1488
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1489
+ </input>
1490
+ <output>
1491
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1492
+ </output>
1493
+ </operation>
1494
+ <operation name="DeleteFolder">
1495
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteFolder" />
1496
+ <input>
1497
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1498
+ </input>
1499
+ <output>
1500
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1501
+ </output>
1502
+ </operation>
1503
+ <operation name="GetFoldersByType">
1504
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetFoldersByType" />
1505
+ <input>
1506
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1507
+ </input>
1508
+ <output>
1509
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1510
+ </output>
1511
+ </operation>
1512
+ <operation name="GetFolder">
1513
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetFolder" />
1514
+ <input>
1515
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1516
+ </input>
1517
+ <output>
1518
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1519
+ </output>
1520
+ </operation>
1521
+ <operation name="GetFolderUploadInterface">
1522
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetFolderUploadInterface" />
1523
+ <input>
1524
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1525
+ </input>
1526
+ <output>
1527
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1528
+ </output>
1529
+ </operation>
1530
+ <operation name="UpdateFolder">
1531
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateFolder" />
1532
+ <input>
1533
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1534
+ </input>
1535
+ <output>
1536
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1537
+ </output>
1538
+ </operation>
1539
+ <operation name="RegisterClipUpload">
1540
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#RegisterClipUpload" />
1541
+ <input>
1542
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1543
+ </input>
1544
+ <output>
1545
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1546
+ </output>
1547
+ </operation>
1548
+ <operation name="GetClips">
1549
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClips" />
1550
+ <input>
1551
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1552
+ </input>
1553
+ <output>
1554
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1555
+ </output>
1556
+ </operation>
1557
+ <operation name="GetClipsByForeignID">
1558
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipsByForeignID" />
1559
+ <input>
1560
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1561
+ </input>
1562
+ <output>
1563
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1564
+ </output>
1565
+ </operation>
1566
+ <operation name="GetClip">
1567
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClip" />
1568
+ <input>
1569
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1570
+ </input>
1571
+ <output>
1572
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1573
+ </output>
1574
+ </operation>
1575
+ <operation name="GetClipByUID">
1576
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipByUID" />
1577
+ <input>
1578
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1579
+ </input>
1580
+ <output>
1581
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1582
+ </output>
1583
+ </operation>
1584
+ <operation name="GetClipVideoLocation">
1585
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipVideoLocation" />
1586
+ <input>
1587
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1588
+ </input>
1589
+ <output>
1590
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1591
+ </output>
1592
+ </operation>
1593
+ <operation name="GetClipMetaData">
1594
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipMetaData" />
1595
+ <input>
1596
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1597
+ </input>
1598
+ <output>
1599
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1600
+ </output>
1601
+ </operation>
1602
+ <operation name="GetClipMetaDataByUID">
1603
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipMetaDataByUID" />
1604
+ <input>
1605
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1606
+ </input>
1607
+ <output>
1608
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1609
+ </output>
1610
+ </operation>
1611
+ <operation name="GetClipIndices">
1612
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipIndices" />
1613
+ <input>
1614
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1615
+ </input>
1616
+ <output>
1617
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1618
+ </output>
1619
+ </operation>
1620
+ <operation name="GetClipIndicesByUID">
1621
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipIndicesByUID" />
1622
+ <input>
1623
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1624
+ </input>
1625
+ <output>
1626
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1627
+ </output>
1628
+ </operation>
1629
+ <operation name="GetClipCaptions">
1630
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipCaptions" />
1631
+ <input>
1632
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1633
+ </input>
1634
+ <output>
1635
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1636
+ </output>
1637
+ </operation>
1638
+ <operation name="GetClipCaptionsByUID">
1639
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetClipCaptionsByUID" />
1640
+ <input>
1641
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1642
+ </input>
1643
+ <output>
1644
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1645
+ </output>
1646
+ </operation>
1647
+ <operation name="SetClipAgendaURL">
1648
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#SetClipAgendaURL" />
1649
+ <input>
1650
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1651
+ </input>
1652
+ <output>
1653
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1654
+ </output>
1655
+ </operation>
1656
+ <operation name="SetClipMinutesURL">
1657
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#SetClipMinutesURL" />
1658
+ <input>
1659
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1660
+ </input>
1661
+ <output>
1662
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1663
+ </output>
1664
+ </operation>
1665
+ <operation name="UpdateClip">
1666
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateClip" />
1667
+ <input>
1668
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1669
+ </input>
1670
+ <output>
1671
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1672
+ </output>
1673
+ </operation>
1674
+ <operation name="DeleteClip">
1675
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteClip" />
1676
+ <input>
1677
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1678
+ </input>
1679
+ <output>
1680
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1681
+ </output>
1682
+ </operation>
1683
+ <operation name="AddClipMetaData">
1684
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#AddClipMetaData" />
1685
+ <input>
1686
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1687
+ </input>
1688
+ <output>
1689
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1690
+ </output>
1691
+ </operation>
1692
+ <operation name="ImportClipMetaData">
1693
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#ImportClipMetaData" />
1694
+ <input>
1695
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1696
+ </input>
1697
+ <output>
1698
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1699
+ </output>
1700
+ </operation>
1701
+ <operation name="GetMetaData">
1702
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetMetaData" />
1703
+ <input>
1704
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1705
+ </input>
1706
+ <output>
1707
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1708
+ </output>
1709
+ </operation>
1710
+ <operation name="GetMetaDataByUID">
1711
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetMetaDataByUID" />
1712
+ <input>
1713
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1714
+ </input>
1715
+ <output>
1716
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1717
+ </output>
1718
+ </operation>
1719
+ <operation name="GetMetaDataVideoLocation">
1720
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetMetaDataVideoLocation" />
1721
+ <input>
1722
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1723
+ </input>
1724
+ <output>
1725
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1726
+ </output>
1727
+ </operation>
1728
+ <operation name="UpdateMetaData">
1729
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateMetaData" />
1730
+ <input>
1731
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1732
+ </input>
1733
+ <output>
1734
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1735
+ </output>
1736
+ </operation>
1737
+ <operation name="DeleteMetaData">
1738
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteMetaData" />
1739
+ <input>
1740
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1741
+ </input>
1742
+ <output>
1743
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1744
+ </output>
1745
+ </operation>
1746
+ <operation name="FetchAttachment">
1747
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#FetchAttachment" />
1748
+ <input>
1749
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1750
+ </input>
1751
+ <output>
1752
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1753
+ </output>
1754
+ </operation>
1755
+ <operation name="CreateView">
1756
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateView" />
1757
+ <input>
1758
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1759
+ </input>
1760
+ <output>
1761
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1762
+ </output>
1763
+ </operation>
1764
+ <operation name="GetViews">
1765
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetViews" />
1766
+ <input>
1767
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1768
+ </input>
1769
+ <output>
1770
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1771
+ </output>
1772
+ </operation>
1773
+ <operation name="GetView">
1774
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetView" />
1775
+ <input>
1776
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1777
+ </input>
1778
+ <output>
1779
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1780
+ </output>
1781
+ </operation>
1782
+ <operation name="UpdateView">
1783
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateView" />
1784
+ <input>
1785
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1786
+ </input>
1787
+ <output>
1788
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1789
+ </output>
1790
+ </operation>
1791
+ <operation name="CreateUser">
1792
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateUser" />
1793
+ <input>
1794
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1795
+ </input>
1796
+ <output>
1797
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1798
+ </output>
1799
+ </operation>
1800
+ <operation name="GetCurrentUserID">
1801
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCurrentUserID" />
1802
+ <input>
1803
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1804
+ </input>
1805
+ <output>
1806
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1807
+ </output>
1808
+ </operation>
1809
+ <operation name="GetCurrentUserLogon">
1810
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCurrentUserLogon" />
1811
+ <input>
1812
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1813
+ </input>
1814
+ <output>
1815
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1816
+ </output>
1817
+ </operation>
1818
+ <operation name="GetUsers">
1819
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetUsers" />
1820
+ <input>
1821
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1822
+ </input>
1823
+ <output>
1824
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1825
+ </output>
1826
+ </operation>
1827
+ <operation name="GetUser">
1828
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetUser" />
1829
+ <input>
1830
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1831
+ </input>
1832
+ <output>
1833
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1834
+ </output>
1835
+ </operation>
1836
+ <operation name="UpdateUser">
1837
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateUser" />
1838
+ <input>
1839
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1840
+ </input>
1841
+ <output>
1842
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1843
+ </output>
1844
+ </operation>
1845
+ <operation name="CreateGroup">
1846
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateGroup" />
1847
+ <input>
1848
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1849
+ </input>
1850
+ <output>
1851
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1852
+ </output>
1853
+ </operation>
1854
+ <operation name="GetGroups">
1855
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetGroups" />
1856
+ <input>
1857
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1858
+ </input>
1859
+ <output>
1860
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1861
+ </output>
1862
+ </operation>
1863
+ <operation name="GetGroup">
1864
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetGroup" />
1865
+ <input>
1866
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1867
+ </input>
1868
+ <output>
1869
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1870
+ </output>
1871
+ </operation>
1872
+ <operation name="UpdateGroup">
1873
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateGroup" />
1874
+ <input>
1875
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1876
+ </input>
1877
+ <output>
1878
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1879
+ </output>
1880
+ </operation>
1881
+ <operation name="DeleteGroup">
1882
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteGroup" />
1883
+ <input>
1884
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1885
+ </input>
1886
+ <output>
1887
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1888
+ </output>
1889
+ </operation>
1890
+ <operation name="CreateTemplate">
1891
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateTemplate" />
1892
+ <input>
1893
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1894
+ </input>
1895
+ <output>
1896
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1897
+ </output>
1898
+ </operation>
1899
+ <operation name="GetTemplates">
1900
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetTemplates" />
1901
+ <input>
1902
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1903
+ </input>
1904
+ <output>
1905
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1906
+ </output>
1907
+ </operation>
1908
+ <operation name="GetTemplate">
1909
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetTemplate" />
1910
+ <input>
1911
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1912
+ </input>
1913
+ <output>
1914
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1915
+ </output>
1916
+ </operation>
1917
+ <operation name="UpdateTemplate">
1918
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateTemplate" />
1919
+ <input>
1920
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1921
+ </input>
1922
+ <output>
1923
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1924
+ </output>
1925
+ </operation>
1926
+ <operation name="CreateServer">
1927
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateServer" />
1928
+ <input>
1929
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1930
+ </input>
1931
+ <output>
1932
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1933
+ </output>
1934
+ </operation>
1935
+ <operation name="GetServers">
1936
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetServers" />
1937
+ <input>
1938
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1939
+ </input>
1940
+ <output>
1941
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1942
+ </output>
1943
+ </operation>
1944
+ <operation name="GetServer">
1945
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetServer" />
1946
+ <input>
1947
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1948
+ </input>
1949
+ <output>
1950
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1951
+ </output>
1952
+ </operation>
1953
+ <operation name="UpdateServer">
1954
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#UpdateServer" />
1955
+ <input>
1956
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1957
+ </input>
1958
+ <output>
1959
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1960
+ </output>
1961
+ </operation>
1962
+ <operation name="DeleteServer">
1963
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#DeleteServer" />
1964
+ <input>
1965
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1966
+ </input>
1967
+ <output>
1968
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1969
+ </output>
1970
+ </operation>
1971
+ <operation name="GetPermissionLevel">
1972
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetPermissionLevel" />
1973
+ <input>
1974
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1975
+ </input>
1976
+ <output>
1977
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1978
+ </output>
1979
+ </operation>
1980
+ <operation name="CreateClipGeneratedMinutesDocument">
1981
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#CreateClipGeneratedMinutesDocument" />
1982
+ <input>
1983
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1984
+ </input>
1985
+ <output>
1986
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1987
+ </output>
1988
+ </operation>
1989
+ <operation name="GetCommentsByEventID">
1990
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCommentsByEventID" />
1991
+ <input>
1992
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1993
+ </input>
1994
+ <output>
1995
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
1996
+ </output>
1997
+ </operation>
1998
+ <operation name="GetCommentsByEventUID">
1999
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCommentsByEventUID" />
2000
+ <input>
2001
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
2002
+ </input>
2003
+ <output>
2004
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
2005
+ </output>
2006
+ </operation>
2007
+ <operation name="GetCommentsByAgendaItemUID">
2008
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetCommentsByAgendaItemUID" />
2009
+ <input>
2010
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
2011
+ </input>
2012
+ <output>
2013
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
2014
+ </output>
2015
+ </operation>
2016
+ <operation name="GetSettings">
2017
+ <soap:operation soapAction="urn:UserSDK#UserWebservice#GetSettings" />
2018
+ <input>
2019
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
2020
+ </input>
2021
+ <output>
2022
+ <soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
2023
+ </output>
2024
+ </operation>
2025
+ </binding>
2026
+ <service name="UserSDKService">
2027
+ <documentation />
2028
+ <port name="UserSDKPort" binding="tns:UserSDKBinding">
2029
+ <soap:address location="http://video.sanfoocisco.org/sdk/user/index.php" />
2030
+ </port>
2031
+ </service>
2073
2032
  </definitions>