granicus-platform-api 0.1.9 → 0.9.1

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