granicus-platform-api 0.1.9 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/README.rdoc +2 -2
- data/lib/granicus-platform-api/client.rb +503 -466
- data/lib/granicus-platform-api/entities.rb +235 -207
- data/lib/granicus-platform-api/granicus-platform-api.xml +2073 -1824
- data/lib/granicus-platform-api/version.rb +1 -1
- data/spec/fixtures/About Stacks.pdf +0 -0
- data/spec/fixtures/fixtures.yml +64 -0
- data/spec/fixtures/requests.xml +52 -52
- data/spec/granicus-platform-api_spec.rb +392 -234
- metadata +18 -15
- data/Gemfile.lock +0 -53
@@ -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
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
property :
|
78
|
-
property :
|
79
|
-
property :
|
80
|
-
property :
|
81
|
-
property :
|
82
|
-
property :
|
83
|
-
property :
|
84
|
-
property :
|
85
|
-
property :
|
86
|
-
property :
|
87
|
-
property :
|
88
|
-
property :
|
89
|
-
property :
|
90
|
-
property :
|
91
|
-
property :
|
92
|
-
property :
|
93
|
-
property :
|
94
|
-
property :
|
95
|
-
property :
|
96
|
-
property :
|
97
|
-
property :
|
98
|
-
property :
|
99
|
-
property :
|
100
|
-
property :
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
property :
|
105
|
-
property :
|
106
|
-
property :
|
107
|
-
property :
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
property :
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
property :
|
116
|
-
property :
|
117
|
-
property :
|
118
|
-
property :
|
119
|
-
end
|
120
|
-
|
121
|
-
class
|
122
|
-
property :
|
123
|
-
property :
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
property :
|
130
|
-
property :
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
property :
|
135
|
-
property :
|
136
|
-
property :
|
137
|
-
property :
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
property :
|
142
|
-
property :
|
143
|
-
property :
|
144
|
-
property :
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
property :
|
150
|
-
property :
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
property :
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
property :
|
159
|
-
property :
|
160
|
-
property :
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
property :
|
165
|
-
property :
|
166
|
-
property :
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
property :
|
172
|
-
property :
|
173
|
-
property :
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
property :
|
178
|
-
end
|
179
|
-
|
180
|
-
class
|
181
|
-
property :ID
|
182
|
-
property :Name
|
183
|
-
property :
|
184
|
-
property :
|
185
|
-
property :
|
186
|
-
property :
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
property :
|
194
|
-
property :
|
195
|
-
property :
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
property :
|
200
|
-
property :
|
201
|
-
end
|
202
|
-
|
203
|
-
class
|
204
|
-
property :
|
205
|
-
property :
|
206
|
-
|
207
|
-
|
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="
|
13
|
-
<element name="
|
14
|
-
<element name="
|
15
|
-
<element name="
|
16
|
-
<element name="
|
17
|
-
<element name="
|
18
|
-
|
19
|
-
<element name="
|
20
|
-
<element name="
|
21
|
-
<element name="
|
22
|
-
<element name="
|
23
|
-
<element name="
|
24
|
-
<element name="
|
25
|
-
<element name="
|
26
|
-
<element name="
|
27
|
-
<element name="
|
28
|
-
<element name="
|
29
|
-
<element name="
|
30
|
-
<element name="
|
31
|
-
<element name="
|
32
|
-
|
33
|
-
|
34
|
-
<
|
35
|
-
<
|
36
|
-
|
37
|
-
<element name="
|
38
|
-
|
39
|
-
|
40
|
-
<
|
41
|
-
<
|
42
|
-
<element name="
|
43
|
-
<element name="
|
44
|
-
|
45
|
-
|
46
|
-
<
|
47
|
-
<
|
48
|
-
<element name="
|
49
|
-
<element name="
|
50
|
-
|
51
|
-
|
52
|
-
<
|
53
|
-
<
|
54
|
-
|
55
|
-
<element name="
|
56
|
-
<element name="
|
57
|
-
<element name="
|
58
|
-
<element name="
|
59
|
-
<element name="
|
60
|
-
<element name="
|
61
|
-
<element name="
|
62
|
-
<element name="
|
63
|
-
<element name="
|
64
|
-
<element name="
|
65
|
-
<element name="
|
66
|
-
<element name="
|
67
|
-
<element name="
|
68
|
-
<element name="
|
69
|
-
<element name="
|
70
|
-
<element name="
|
71
|
-
<element name="
|
72
|
-
|
73
|
-
<element name="
|
74
|
-
<element name="
|
75
|
-
<element name="
|
76
|
-
|
77
|
-
|
78
|
-
<
|
79
|
-
<
|
80
|
-
<element name="
|
81
|
-
<element name="
|
82
|
-
<element name="
|
83
|
-
<element name="
|
84
|
-
|
85
|
-
|
86
|
-
<
|
87
|
-
<
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
<
|
92
|
-
<element name="
|
93
|
-
<element name="
|
94
|
-
<element name="
|
95
|
-
<element name="
|
96
|
-
<element name="
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
<
|
102
|
-
<
|
103
|
-
<element name="
|
104
|
-
<element name="
|
105
|
-
<element name="
|
106
|
-
<element name="CreatedDate" type="xsd:dateTime" />
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
<
|
112
|
-
<
|
113
|
-
<element name="
|
114
|
-
<element name="
|
115
|
-
<element name="
|
116
|
-
<element name="CreatedDate" type="xsd:dateTime" />
|
117
|
-
</all>
|
118
|
-
</complexType>
|
119
|
-
<complexType name="
|
120
|
-
<all>
|
121
|
-
<element name="ID" type="xsd:int" />
|
122
|
-
<element name="Name" type="xsd:string" />
|
123
|
-
<element name="
|
124
|
-
<element name="
|
125
|
-
<element name="
|
126
|
-
|
127
|
-
<element name="
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
<
|
133
|
-
<
|
134
|
-
<element name="
|
135
|
-
<element name="
|
136
|
-
<element name="
|
137
|
-
<element name="
|
138
|
-
<element name="
|
139
|
-
<element name="
|
140
|
-
<element name="
|
141
|
-
|
142
|
-
</
|
143
|
-
|
144
|
-
|
145
|
-
<all>
|
146
|
-
<element name="ID" type="xsd:int" />
|
147
|
-
<element name="
|
148
|
-
<element name="
|
149
|
-
<element name="
|
150
|
-
<element name="
|
151
|
-
<element name="
|
152
|
-
<element name="
|
153
|
-
<element name="
|
154
|
-
|
155
|
-
|
156
|
-
<
|
157
|
-
|
158
|
-
|
159
|
-
<
|
160
|
-
<
|
161
|
-
<element name="
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
<
|
166
|
-
<
|
167
|
-
<element name="
|
168
|
-
<element name="
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
<
|
174
|
-
<
|
175
|
-
|
176
|
-
|
177
|
-
</
|
178
|
-
|
179
|
-
<
|
180
|
-
|
181
|
-
<
|
182
|
-
<element name="
|
183
|
-
<element name="
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
<
|
189
|
-
<
|
190
|
-
|
191
|
-
|
192
|
-
</
|
193
|
-
|
194
|
-
<
|
195
|
-
<
|
196
|
-
<element name="
|
197
|
-
|
198
|
-
|
199
|
-
<
|
200
|
-
<
|
201
|
-
<element name="
|
202
|
-
</all>
|
203
|
-
</complexType>
|
204
|
-
<complexType name="
|
205
|
-
<all>
|
206
|
-
<element name="
|
207
|
-
<element name="
|
208
|
-
</all>
|
209
|
-
</complexType>
|
210
|
-
<complexType name="
|
211
|
-
<all>
|
212
|
-
<element name="
|
213
|
-
<element name="
|
214
|
-
<element name="
|
215
|
-
|
216
|
-
|
217
|
-
<
|
218
|
-
<
|
219
|
-
<element name="
|
220
|
-
<element name="
|
221
|
-
|
222
|
-
|
223
|
-
<
|
224
|
-
<
|
225
|
-
|
226
|
-
|
227
|
-
<
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
<
|
233
|
-
|
234
|
-
|
235
|
-
<
|
236
|
-
|
237
|
-
|
238
|
-
<
|
239
|
-
|
240
|
-
|
241
|
-
<
|
242
|
-
<
|
243
|
-
<element name="
|
244
|
-
|
245
|
-
|
246
|
-
<
|
247
|
-
|
248
|
-
|
249
|
-
<
|
250
|
-
<
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
<
|
255
|
-
<
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
<
|
261
|
-
<
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
<
|
268
|
-
<
|
269
|
-
|
270
|
-
|
271
|
-
</
|
272
|
-
|
273
|
-
<
|
274
|
-
<
|
275
|
-
<
|
276
|
-
|
277
|
-
</
|
278
|
-
</complexType>
|
279
|
-
<complexType name="
|
280
|
-
<
|
281
|
-
<
|
282
|
-
<
|
283
|
-
|
284
|
-
|
285
|
-
</
|
286
|
-
|
287
|
-
<
|
288
|
-
|
289
|
-
<
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
<
|
294
|
-
<
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
<
|
301
|
-
|
302
|
-
|
303
|
-
<
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
<
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
<
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
<
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
</
|
326
|
-
|
327
|
-
|
328
|
-
<
|
329
|
-
<
|
330
|
-
|
331
|
-
|
332
|
-
</
|
333
|
-
|
334
|
-
|
335
|
-
<
|
336
|
-
<
|
337
|
-
|
338
|
-
|
339
|
-
</
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
<
|
344
|
-
<
|
345
|
-
|
346
|
-
</
|
347
|
-
</
|
348
|
-
|
349
|
-
<
|
350
|
-
<
|
351
|
-
<
|
352
|
-
|
353
|
-
</
|
354
|
-
</
|
355
|
-
|
356
|
-
<
|
357
|
-
<
|
358
|
-
<
|
359
|
-
|
360
|
-
|
361
|
-
</complexContent>
|
362
|
-
</complexType>
|
363
|
-
<complexType name="
|
364
|
-
<complexContent>
|
365
|
-
<restriction base="SOAP-ENC:Array">
|
366
|
-
<attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns5:
|
367
|
-
</restriction>
|
368
|
-
</complexContent>
|
369
|
-
</complexType>
|
370
|
-
|
371
|
-
|
372
|
-
<
|
373
|
-
<
|
374
|
-
|
375
|
-
|
376
|
-
</
|
377
|
-
<
|
378
|
-
|
379
|
-
<
|
380
|
-
|
381
|
-
<
|
382
|
-
|
383
|
-
|
384
|
-
</
|
385
|
-
<
|
386
|
-
<
|
387
|
-
<
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
<
|
394
|
-
<
|
395
|
-
<
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
<
|
402
|
-
<
|
403
|
-
<
|
404
|
-
</
|
405
|
-
|
406
|
-
|
407
|
-
<
|
408
|
-
|
409
|
-
<
|
410
|
-
<
|
411
|
-
|
412
|
-
</
|
413
|
-
|
414
|
-
|
415
|
-
<
|
416
|
-
|
417
|
-
<
|
418
|
-
<
|
419
|
-
|
420
|
-
</
|
421
|
-
|
422
|
-
<
|
423
|
-
<
|
424
|
-
|
425
|
-
<
|
426
|
-
|
427
|
-
|
428
|
-
</
|
429
|
-
<
|
430
|
-
<
|
431
|
-
<
|
432
|
-
|
433
|
-
<
|
434
|
-
|
435
|
-
|
436
|
-
</
|
437
|
-
|
438
|
-
|
439
|
-
<
|
440
|
-
|
441
|
-
<
|
442
|
-
<
|
443
|
-
|
444
|
-
|
445
|
-
<
|
446
|
-
<
|
447
|
-
|
448
|
-
|
449
|
-
<
|
450
|
-
|
451
|
-
<output message="tns:
|
452
|
-
</operation>
|
453
|
-
<operation name="
|
454
|
-
<input message="tns:
|
455
|
-
<output message="tns:
|
456
|
-
</operation>
|
457
|
-
<operation name="
|
458
|
-
<input message="tns:
|
459
|
-
<output message="tns:
|
460
|
-
</operation>
|
461
|
-
<operation name="
|
462
|
-
<input message="tns:
|
463
|
-
<output message="tns:
|
464
|
-
</operation>
|
465
|
-
<operation name="
|
466
|
-
<input message="tns:
|
467
|
-
<output message="tns:
|
468
|
-
|
469
|
-
|
470
|
-
<
|
471
|
-
<
|
472
|
-
|
473
|
-
|
474
|
-
<
|
475
|
-
<
|
476
|
-
|
477
|
-
|
478
|
-
<
|
479
|
-
<
|
480
|
-
|
481
|
-
|
482
|
-
<
|
483
|
-
<
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
<
|
488
|
-
|
489
|
-
<
|
490
|
-
|
491
|
-
<
|
492
|
-
|
493
|
-
<
|
494
|
-
|
495
|
-
<
|
496
|
-
|
497
|
-
<
|
498
|
-
|
499
|
-
<
|
500
|
-
|
501
|
-
<
|
502
|
-
|
503
|
-
<
|
504
|
-
|
505
|
-
<
|
506
|
-
<
|
507
|
-
|
508
|
-
|
509
|
-
<
|
510
|
-
<
|
511
|
-
|
512
|
-
|
513
|
-
<
|
514
|
-
<
|
515
|
-
|
516
|
-
|
517
|
-
<
|
518
|
-
<
|
519
|
-
|
520
|
-
|
521
|
-
<
|
522
|
-
|
523
|
-
<output message="tns:
|
524
|
-
</operation>
|
525
|
-
<operation name="
|
526
|
-
<input message="tns:
|
527
|
-
<output message="tns:
|
528
|
-
</operation>
|
529
|
-
<operation name="
|
530
|
-
<input message="tns:
|
531
|
-
<output message="tns:
|
532
|
-
</operation>
|
533
|
-
<operation name="
|
534
|
-
<input message="tns:
|
535
|
-
<output message="tns:
|
536
|
-
</operation>
|
537
|
-
<operation name="
|
538
|
-
<input message="tns:
|
539
|
-
<output message="tns:
|
540
|
-
|
541
|
-
|
542
|
-
<
|
543
|
-
<
|
544
|
-
|
545
|
-
|
546
|
-
<
|
547
|
-
<
|
548
|
-
|
549
|
-
|
550
|
-
<
|
551
|
-
<
|
552
|
-
|
553
|
-
|
554
|
-
<
|
555
|
-
<
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
<
|
560
|
-
|
561
|
-
<
|
562
|
-
|
563
|
-
<
|
564
|
-
|
565
|
-
<
|
566
|
-
|
567
|
-
<
|
568
|
-
|
569
|
-
<
|
570
|
-
|
571
|
-
<
|
572
|
-
|
573
|
-
<
|
574
|
-
|
575
|
-
<
|
576
|
-
|
577
|
-
<
|
578
|
-
<
|
579
|
-
|
580
|
-
|
581
|
-
<
|
582
|
-
<
|
583
|
-
|
584
|
-
|
585
|
-
<
|
586
|
-
<
|
587
|
-
|
588
|
-
|
589
|
-
<
|
590
|
-
<
|
591
|
-
|
592
|
-
|
593
|
-
<
|
594
|
-
|
595
|
-
<output message="tns:
|
596
|
-
</operation>
|
597
|
-
<operation name="
|
598
|
-
<input message="tns:
|
599
|
-
<output message="tns:
|
600
|
-
</operation>
|
601
|
-
<operation name="
|
602
|
-
<input message="tns:
|
603
|
-
<output message="tns:
|
604
|
-
</operation>
|
605
|
-
<operation name="
|
606
|
-
<input message="tns:
|
607
|
-
<output message="tns:
|
608
|
-
</operation>
|
609
|
-
<operation name="
|
610
|
-
<input message="tns:
|
611
|
-
<output message="tns:
|
612
|
-
|
613
|
-
|
614
|
-
<
|
615
|
-
<
|
616
|
-
|
617
|
-
|
618
|
-
<
|
619
|
-
<
|
620
|
-
|
621
|
-
|
622
|
-
<
|
623
|
-
<
|
624
|
-
|
625
|
-
|
626
|
-
<
|
627
|
-
<
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
<
|
632
|
-
|
633
|
-
<
|
634
|
-
|
635
|
-
<
|
636
|
-
|
637
|
-
<
|
638
|
-
|
639
|
-
<
|
640
|
-
|
641
|
-
<
|
642
|
-
|
643
|
-
<
|
644
|
-
|
645
|
-
<
|
646
|
-
|
647
|
-
<
|
648
|
-
|
649
|
-
<
|
650
|
-
<
|
651
|
-
|
652
|
-
|
653
|
-
<
|
654
|
-
<
|
655
|
-
|
656
|
-
|
657
|
-
<
|
658
|
-
<
|
659
|
-
|
660
|
-
|
661
|
-
<
|
662
|
-
<
|
663
|
-
|
664
|
-
|
665
|
-
<
|
666
|
-
|
667
|
-
<output message="tns:
|
668
|
-
</operation>
|
669
|
-
<operation name="
|
670
|
-
<input message="tns:
|
671
|
-
<output message="tns:
|
672
|
-
</operation>
|
673
|
-
<operation name="
|
674
|
-
<input message="tns:
|
675
|
-
<output message="tns:
|
676
|
-
</operation>
|
677
|
-
<operation name="
|
678
|
-
<input message="tns:
|
679
|
-
<output message="tns:
|
680
|
-
</operation>
|
681
|
-
<operation name="
|
682
|
-
<input message="tns:
|
683
|
-
<output message="tns:
|
684
|
-
|
685
|
-
</
|
686
|
-
<
|
687
|
-
<
|
688
|
-
<
|
689
|
-
|
690
|
-
<
|
691
|
-
<
|
692
|
-
|
693
|
-
|
694
|
-
<
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
<
|
699
|
-
<input
|
700
|
-
<
|
701
|
-
</
|
702
|
-
|
703
|
-
<
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
<
|
708
|
-
<input
|
709
|
-
<
|
710
|
-
</
|
711
|
-
<
|
712
|
-
<
|
713
|
-
|
714
|
-
</operation>
|
715
|
-
<operation name="
|
716
|
-
<
|
717
|
-
<
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
<
|
722
|
-
|
723
|
-
</operation>
|
724
|
-
<operation name="
|
725
|
-
<
|
726
|
-
<
|
727
|
-
|
728
|
-
|
729
|
-
<
|
730
|
-
<
|
731
|
-
</
|
732
|
-
|
733
|
-
<
|
734
|
-
<
|
735
|
-
|
736
|
-
<
|
737
|
-
|
738
|
-
|
739
|
-
<
|
740
|
-
</
|
741
|
-
|
742
|
-
<
|
743
|
-
<
|
744
|
-
|
745
|
-
<
|
746
|
-
|
747
|
-
<output
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
<
|
752
|
-
|
753
|
-
<
|
754
|
-
<
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
<
|
761
|
-
|
762
|
-
<
|
763
|
-
<
|
764
|
-
|
765
|
-
|
766
|
-
<
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
<
|
771
|
-
<input
|
772
|
-
<
|
773
|
-
</
|
774
|
-
|
775
|
-
<
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
<
|
780
|
-
<input
|
781
|
-
<
|
782
|
-
</
|
783
|
-
<
|
784
|
-
<
|
785
|
-
|
786
|
-
</operation>
|
787
|
-
<operation name="
|
788
|
-
<
|
789
|
-
<
|
790
|
-
|
791
|
-
</
|
792
|
-
|
793
|
-
<
|
794
|
-
|
795
|
-
|
796
|
-
<operation
|
797
|
-
<
|
798
|
-
<
|
799
|
-
|
800
|
-
|
801
|
-
<
|
802
|
-
|
803
|
-
</
|
804
|
-
|
805
|
-
<operation
|
806
|
-
<
|
807
|
-
<
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
812
|
-
</output>
|
813
|
-
</operation>
|
814
|
-
<operation name="
|
815
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
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="
|
824
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
825
|
-
<input>
|
826
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
827
|
-
</input>
|
828
|
-
|
829
|
-
<
|
830
|
-
|
831
|
-
</
|
832
|
-
|
833
|
-
<
|
834
|
-
<
|
835
|
-
<
|
836
|
-
|
837
|
-
|
838
|
-
<
|
839
|
-
|
840
|
-
</
|
841
|
-
|
842
|
-
<
|
843
|
-
<
|
844
|
-
<
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
<
|
853
|
-
<soap:
|
854
|
-
|
855
|
-
<
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
<
|
862
|
-
<soap:
|
863
|
-
|
864
|
-
|
865
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
866
|
-
</
|
867
|
-
|
868
|
-
<
|
869
|
-
|
870
|
-
|
871
|
-
<
|
872
|
-
|
873
|
-
<
|
874
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
875
|
-
</
|
876
|
-
|
877
|
-
<
|
878
|
-
|
879
|
-
|
880
|
-
<
|
881
|
-
|
882
|
-
|
883
|
-
<
|
884
|
-
|
885
|
-
</
|
886
|
-
<
|
887
|
-
<soap:
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
<
|
892
|
-
<
|
893
|
-
|
894
|
-
</
|
895
|
-
<
|
896
|
-
<soap:
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
<soap:
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
<
|
906
|
-
<
|
907
|
-
|
908
|
-
</
|
909
|
-
<
|
910
|
-
<soap:
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
<
|
915
|
-
<
|
916
|
-
|
917
|
-
</
|
918
|
-
|
919
|
-
<
|
920
|
-
|
921
|
-
|
922
|
-
<
|
923
|
-
|
924
|
-
<
|
925
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
926
|
-
</
|
927
|
-
|
928
|
-
<
|
929
|
-
|
930
|
-
|
931
|
-
<
|
932
|
-
|
933
|
-
<
|
934
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
935
|
-
</
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
<
|
941
|
-
<soap:
|
942
|
-
|
943
|
-
<
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
<
|
950
|
-
<soap:
|
951
|
-
|
952
|
-
<
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
</
|
957
|
-
|
958
|
-
<operation
|
959
|
-
<
|
960
|
-
<
|
961
|
-
|
962
|
-
|
963
|
-
<
|
964
|
-
|
965
|
-
</
|
966
|
-
|
967
|
-
<operation
|
968
|
-
<
|
969
|
-
<
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
974
|
-
</output>
|
975
|
-
</operation>
|
976
|
-
<operation name="
|
977
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
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="
|
986
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
987
|
-
<input>
|
988
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
989
|
-
</input>
|
990
|
-
|
991
|
-
<
|
992
|
-
|
993
|
-
</
|
994
|
-
|
995
|
-
<
|
996
|
-
<
|
997
|
-
<
|
998
|
-
|
999
|
-
|
1000
|
-
<
|
1001
|
-
|
1002
|
-
</
|
1003
|
-
|
1004
|
-
<
|
1005
|
-
<
|
1006
|
-
<
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
<
|
1015
|
-
<soap:
|
1016
|
-
|
1017
|
-
<
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
<
|
1024
|
-
<soap:
|
1025
|
-
|
1026
|
-
|
1027
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1028
|
-
</
|
1029
|
-
|
1030
|
-
<
|
1031
|
-
|
1032
|
-
|
1033
|
-
<
|
1034
|
-
|
1035
|
-
<
|
1036
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1037
|
-
</
|
1038
|
-
|
1039
|
-
<
|
1040
|
-
|
1041
|
-
|
1042
|
-
<
|
1043
|
-
|
1044
|
-
|
1045
|
-
<
|
1046
|
-
|
1047
|
-
</
|
1048
|
-
<
|
1049
|
-
<soap:
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
<
|
1054
|
-
<
|
1055
|
-
|
1056
|
-
</
|
1057
|
-
<
|
1058
|
-
<soap:
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
<soap:
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
<
|
1068
|
-
<
|
1069
|
-
|
1070
|
-
</
|
1071
|
-
<
|
1072
|
-
<soap:
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
<
|
1077
|
-
<
|
1078
|
-
|
1079
|
-
</
|
1080
|
-
|
1081
|
-
<
|
1082
|
-
|
1083
|
-
|
1084
|
-
<
|
1085
|
-
|
1086
|
-
<
|
1087
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1088
|
-
</
|
1089
|
-
|
1090
|
-
<
|
1091
|
-
|
1092
|
-
|
1093
|
-
<
|
1094
|
-
|
1095
|
-
<
|
1096
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1097
|
-
</
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
<
|
1103
|
-
<soap:
|
1104
|
-
|
1105
|
-
<
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
|
1111
|
-
<
|
1112
|
-
<soap:
|
1113
|
-
|
1114
|
-
<
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
</
|
1119
|
-
|
1120
|
-
<operation
|
1121
|
-
<
|
1122
|
-
<
|
1123
|
-
|
1124
|
-
|
1125
|
-
<
|
1126
|
-
|
1127
|
-
</
|
1128
|
-
|
1129
|
-
<operation
|
1130
|
-
<
|
1131
|
-
<
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1136
|
-
</output>
|
1137
|
-
</operation>
|
1138
|
-
<operation name="
|
1139
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
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="
|
1148
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
1149
|
-
<input>
|
1150
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1151
|
-
</input>
|
1152
|
-
|
1153
|
-
<
|
1154
|
-
|
1155
|
-
</
|
1156
|
-
|
1157
|
-
<
|
1158
|
-
<
|
1159
|
-
<
|
1160
|
-
|
1161
|
-
|
1162
|
-
<
|
1163
|
-
|
1164
|
-
</
|
1165
|
-
|
1166
|
-
<
|
1167
|
-
<
|
1168
|
-
<
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
<
|
1177
|
-
<soap:
|
1178
|
-
|
1179
|
-
<
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
<
|
1186
|
-
<soap:
|
1187
|
-
|
1188
|
-
|
1189
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1190
|
-
</
|
1191
|
-
|
1192
|
-
<
|
1193
|
-
|
1194
|
-
|
1195
|
-
<
|
1196
|
-
|
1197
|
-
<
|
1198
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1199
|
-
</
|
1200
|
-
|
1201
|
-
<
|
1202
|
-
|
1203
|
-
|
1204
|
-
<
|
1205
|
-
|
1206
|
-
|
1207
|
-
<
|
1208
|
-
|
1209
|
-
</
|
1210
|
-
<
|
1211
|
-
<soap:
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
<
|
1216
|
-
<
|
1217
|
-
|
1218
|
-
</
|
1219
|
-
<
|
1220
|
-
<soap:
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
<soap:
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
<
|
1230
|
-
<
|
1231
|
-
|
1232
|
-
</
|
1233
|
-
<
|
1234
|
-
<soap:
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
<
|
1239
|
-
<
|
1240
|
-
|
1241
|
-
</
|
1242
|
-
|
1243
|
-
<
|
1244
|
-
|
1245
|
-
|
1246
|
-
<
|
1247
|
-
|
1248
|
-
<
|
1249
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1250
|
-
</
|
1251
|
-
|
1252
|
-
<
|
1253
|
-
|
1254
|
-
|
1255
|
-
<
|
1256
|
-
|
1257
|
-
<
|
1258
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1259
|
-
</
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
<
|
1265
|
-
<soap:
|
1266
|
-
|
1267
|
-
<
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
<
|
1274
|
-
<soap:
|
1275
|
-
|
1276
|
-
<
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
</
|
1281
|
-
|
1282
|
-
<operation
|
1283
|
-
<
|
1284
|
-
<
|
1285
|
-
|
1286
|
-
|
1287
|
-
<
|
1288
|
-
|
1289
|
-
</
|
1290
|
-
|
1291
|
-
<operation
|
1292
|
-
<
|
1293
|
-
<
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1298
|
-
</output>
|
1299
|
-
</operation>
|
1300
|
-
<operation name="
|
1301
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
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="
|
1310
|
-
<soap:operation soapAction="urn:UserSDK#userwebservice#
|
1311
|
-
<input>
|
1312
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1313
|
-
</input>
|
1314
|
-
|
1315
|
-
<
|
1316
|
-
|
1317
|
-
</
|
1318
|
-
|
1319
|
-
<
|
1320
|
-
<
|
1321
|
-
<
|
1322
|
-
|
1323
|
-
|
1324
|
-
<
|
1325
|
-
|
1326
|
-
</
|
1327
|
-
|
1328
|
-
<
|
1329
|
-
<
|
1330
|
-
<
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
<
|
1339
|
-
<soap:
|
1340
|
-
|
1341
|
-
<
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
<
|
1348
|
-
<soap:
|
1349
|
-
|
1350
|
-
|
1351
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1352
|
-
</
|
1353
|
-
|
1354
|
-
<
|
1355
|
-
|
1356
|
-
|
1357
|
-
<
|
1358
|
-
|
1359
|
-
<
|
1360
|
-
<soap:body use="encoded" namespace="urn:UserSDK" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
|
1361
|
-
</
|
1362
|
-
|
1363
|
-
<
|
1364
|
-
|
1365
|
-
|
1366
|
-
<
|
1367
|
-
|
1368
|
-
|
1369
|
-
<
|
1370
|
-
|
1371
|
-
</
|
1372
|
-
<
|
1373
|
-
<soap:
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
<
|
1378
|
-
<
|
1379
|
-
|
1380
|
-
</
|
1381
|
-
<
|
1382
|
-
<soap:
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
<soap:
|
1388
|
-
|
1389
|
-
|
1390
|
-
</
|
1391
|
-
<
|
1392
|
-
<
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
<
|
1398
|
-
<
|
1399
|
-
|
1400
|
-
<
|
1401
|
-
<
|
1402
|
-
</
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
<
|
1407
|
-
<
|
1408
|
-
<
|
1409
|
-
</
|
1410
|
-
<
|
1411
|
-
<
|
1412
|
-
|
1413
|
-
</
|
1414
|
-
<
|
1415
|
-
<
|
1416
|
-
|
1417
|
-
<
|
1418
|
-
|
1419
|
-
<
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
<
|
1425
|
-
<
|
1426
|
-
|
1427
|
-
<
|
1428
|
-
|
1429
|
-
|
1430
|
-
<
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
<
|
1435
|
-
<
|
1436
|
-
|
1437
|
-
|
1438
|
-
<
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
</
|
1443
|
-
<
|
1444
|
-
<
|
1445
|
-
|
1446
|
-
<
|
1447
|
-
|
1448
|
-
|
1449
|
-
<
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
<
|
1454
|
-
<
|
1455
|
-
<
|
1456
|
-
</
|
1457
|
-
<
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
<
|
1463
|
-
|
1464
|
-
<
|
1465
|
-
<
|
1466
|
-
</
|
1467
|
-
<
|
1468
|
-
<
|
1469
|
-
</
|
1470
|
-
|
1471
|
-
<
|
1472
|
-
|
1473
|
-
<
|
1474
|
-
<
|
1475
|
-
</
|
1476
|
-
|
1477
|
-
<
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
<
|
1483
|
-
<
|
1484
|
-
|
1485
|
-
|
1486
|
-
<
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
<
|
1492
|
-
<
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
<
|
1498
|
-
|
1499
|
-
</
|
1500
|
-
<
|
1501
|
-
<
|
1502
|
-
|
1503
|
-
<
|
1504
|
-
|
1505
|
-
|
1506
|
-
<
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
<
|
1511
|
-
<
|
1512
|
-
|
1513
|
-
<
|
1514
|
-
</
|
1515
|
-
<
|
1516
|
-
<
|
1517
|
-
|
1518
|
-
</
|
1519
|
-
<
|
1520
|
-
<
|
1521
|
-
<
|
1522
|
-
<
|
1523
|
-
</
|
1524
|
-
<
|
1525
|
-
<
|
1526
|
-
</
|
1527
|
-
|
1528
|
-
<
|
1529
|
-
<
|
1530
|
-
|
1531
|
-
<
|
1532
|
-
|
1533
|
-
|
1534
|
-
<
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
<
|
1540
|
-
<
|
1541
|
-
|
1542
|
-
|
1543
|
-
<
|
1544
|
-
<
|
1545
|
-
</
|
1546
|
-
|
1547
|
-
<
|
1548
|
-
|
1549
|
-
<
|
1550
|
-
<
|
1551
|
-
|
1552
|
-
|
1553
|
-
<
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
<
|
1559
|
-
<
|
1560
|
-
|
1561
|
-
|
1562
|
-
<
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
<
|
1568
|
-
<
|
1569
|
-
<
|
1570
|
-
<
|
1571
|
-
</
|
1572
|
-
<
|
1573
|
-
<
|
1574
|
-
</
|
1575
|
-
|
1576
|
-
<
|
1577
|
-
|
1578
|
-
<
|
1579
|
-
<
|
1580
|
-
</
|
1581
|
-
<
|
1582
|
-
<
|
1583
|
-
</
|
1584
|
-
|
1585
|
-
|
1586
|
-
</
|
1587
|
-
<
|
1588
|
-
<
|
1589
|
-
|
1590
|
-
<
|
1591
|
-
|
1592
|
-
</
|
1593
|
-
<message name="
|
1594
|
-
<part name="
|
1595
|
-
|
1596
|
-
<
|
1597
|
-
<part name="
|
1598
|
-
</message>
|
1599
|
-
<message name="
|
1600
|
-
<part name="
|
1601
|
-
</message>
|
1602
|
-
|
1603
|
-
<
|
1604
|
-
|
1605
|
-
<
|
1606
|
-
|
1607
|
-
|
1608
|
-
<message name="
|
1609
|
-
<part name="
|
1610
|
-
</message>
|
1611
|
-
<message name="
|
1612
|
-
<part name="
|
1613
|
-
</message>
|
1614
|
-
<message name="
|
1615
|
-
<part name="
|
1616
|
-
|
1617
|
-
|
1618
|
-
<
|
1619
|
-
|
1620
|
-
|
1621
|
-
<
|
1622
|
-
|
1623
|
-
<
|
1624
|
-
|
1625
|
-
|
1626
|
-
<
|
1627
|
-
|
1628
|
-
|
1629
|
-
<message name="
|
1630
|
-
<part name="
|
1631
|
-
</message>
|
1632
|
-
<message name="
|
1633
|
-
<part name="
|
1634
|
-
</message>
|
1635
|
-
<message name="
|
1636
|
-
<part name="
|
1637
|
-
</message>
|
1638
|
-
|
1639
|
-
<
|
1640
|
-
|
1641
|
-
|
1642
|
-
<
|
1643
|
-
<part name="
|
1644
|
-
</message>
|
1645
|
-
<message name="
|
1646
|
-
<
|
1647
|
-
|
1648
|
-
<
|
1649
|
-
|
1650
|
-
<
|
1651
|
-
|
1652
|
-
<
|
1653
|
-
|
1654
|
-
<
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
<
|
1659
|
-
|
1660
|
-
<
|
1661
|
-
<
|
1662
|
-
|
1663
|
-
|
1664
|
-
<
|
1665
|
-
|
1666
|
-
|
1667
|
-
<
|
1668
|
-
<part name="
|
1669
|
-
|
1670
|
-
<
|
1671
|
-
|
1672
|
-
|
1673
|
-
<
|
1674
|
-
|
1675
|
-
<
|
1676
|
-
|
1677
|
-
|
1678
|
-
<
|
1679
|
-
|
1680
|
-
|
1681
|
-
<
|
1682
|
-
|
1683
|
-
|
1684
|
-
<
|
1685
|
-
|
1686
|
-
|
1687
|
-
<
|
1688
|
-
|
1689
|
-
|
1690
|
-
<
|
1691
|
-
|
1692
|
-
|
1693
|
-
<message name="
|
1694
|
-
<part name="
|
1695
|
-
</message>
|
1696
|
-
<message name="
|
1697
|
-
<
|
1698
|
-
|
1699
|
-
|
1700
|
-
<
|
1701
|
-
|
1702
|
-
<
|
1703
|
-
|
1704
|
-
|
1705
|
-
<
|
1706
|
-
|
1707
|
-
|
1708
|
-
<message name="
|
1709
|
-
<part name="
|
1710
|
-
|
1711
|
-
<
|
1712
|
-
|
1713
|
-
|
1714
|
-
<message name="
|
1715
|
-
<part name="
|
1716
|
-
|
1717
|
-
|
1718
|
-
<
|
1719
|
-
|
1720
|
-
<
|
1721
|
-
|
1722
|
-
<
|
1723
|
-
|
1724
|
-
<
|
1725
|
-
|
1726
|
-
|
1727
|
-
<message name="
|
1728
|
-
|
1729
|
-
<part name="
|
1730
|
-
|
1731
|
-
|
1732
|
-
<message name="
|
1733
|
-
<part name="
|
1734
|
-
</message>
|
1735
|
-
<message name="
|
1736
|
-
<
|
1737
|
-
<part name="
|
1738
|
-
|
1739
|
-
<
|
1740
|
-
|
1741
|
-
|
1742
|
-
<
|
1743
|
-
|
1744
|
-
|
1745
|
-
<
|
1746
|
-
|
1747
|
-
</message>
|
1748
|
-
<message name="
|
1749
|
-
<
|
1750
|
-
|
1751
|
-
|
1752
|
-
<message name="
|
1753
|
-
<part name="
|
1754
|
-
</message>
|
1755
|
-
<message name="
|
1756
|
-
<
|
1757
|
-
|
1758
|
-
|
1759
|
-
<
|
1760
|
-
|
1761
|
-
|
1762
|
-
<
|
1763
|
-
|
1764
|
-
|
1765
|
-
<message name="
|
1766
|
-
<part name="
|
1767
|
-
</message>
|
1768
|
-
<message name="
|
1769
|
-
<
|
1770
|
-
|
1771
|
-
|
1772
|
-
<
|
1773
|
-
|
1774
|
-
|
1775
|
-
<
|
1776
|
-
|
1777
|
-
<
|
1778
|
-
|
1779
|
-
<
|
1780
|
-
<part name="
|
1781
|
-
</message>
|
1782
|
-
|
1783
|
-
<
|
1784
|
-
|
1785
|
-
|
1786
|
-
<
|
1787
|
-
|
1788
|
-
|
1789
|
-
<message name="
|
1790
|
-
<part name="
|
1791
|
-
</message>
|
1792
|
-
<message name="
|
1793
|
-
<part name="
|
1794
|
-
</message>
|
1795
|
-
<message name="
|
1796
|
-
<
|
1797
|
-
|
1798
|
-
|
1799
|
-
<
|
1800
|
-
|
1801
|
-
</message>
|
1802
|
-
<message name="
|
1803
|
-
<part name="
|
1804
|
-
</message>
|
1805
|
-
<message name="
|
1806
|
-
<part name="
|
1807
|
-
</message>
|
1808
|
-
<message name="
|
1809
|
-
<
|
1810
|
-
|
1811
|
-
<
|
1812
|
-
|
1813
|
-
|
1814
|
-
<
|
1815
|
-
|
1816
|
-
|
1817
|
-
<
|
1818
|
-
|
1819
|
-
<part name="
|
1820
|
-
|
1821
|
-
<
|
1822
|
-
|
1823
|
-
|
1824
|
-
|
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>
|