-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathintf.OpenConnectProzessListe.pas
341 lines (290 loc) · 13.2 KB
/
intf.OpenConnectProzessListe.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
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
279
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
{* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.}
// ************************************************************************ //
// Die in dieser Datei deklarierten Typen wurden aus Daten der unten
// beschriebenen WSDL-Datei generiert:
// WSDL : https://shkgh20.shk-connect.de/services/ProzessListe?wsdl
// >Import : https://shkgh20.shk-connect.de/services/ProzessListe?wsdl>0
// Codierung : UTF-8
// Version: 1.0
// (08.07.2022 15:45:37 - - $Rev: 108085 $)
// ************************************************************************ //
unit intf.OpenConnectProzessListe;
interface
uses Soap.InvokeRegistry, Soap.SOAPHTTPClient, System.Types, Soap.XSBuiltIns;
const
IS_OPTN = $0001;
IS_UNBD = $0002;
IS_UNQL = $0008;
type
// ************************************************************************ //
// Die folgenden Typen, auf die im WSDL-Dokument Bezug genommen wird, sind in dieser Datei
// nicht repräsentiert. Sie sind entweder Aliase[@] anderer repräsentierter Typen oder auf sie wurde Bezug genommen,
// aber sie sind in diesem Dokument nicht[!] deklariert. Die Typen aus letzterer Kategorie
// sind in der Regel vordefinierten/bekannten XML- oder Embarcadero-Typen zugeordnet; sie könnten aber auf
// ein inkorrektes WSDL-Dokument hinweisen, das einen Schematyp nicht deklariert oder importiert hat.
// ************************************************************************ //
// !:string - "http://www.w3.org/2001/XMLSchema"[Gbl]
GetProzessListe2 = class; { "http://service.shk-connect.de"[Lit][GblCplx] }
GetProzessListe = class; { "http://service.shk-connect.de"[Lit][GblElm] }
Teilprozess = class; { "http://service.shk-connect.de"[GblCplx] }
GetProzessListeResponse = class; { "http://service.shk-connect.de"[Lit][GblCplx] }
GetProzessListeAntwort = class; { "http://service.shk-connect.de"[Lit][GblElm] }
Status = class; { "http://service.shk-connect.de"[GblCplx] }
Prozess = class; { "http://service.shk-connect.de"[GblCplx] }
Array_Of_Prozess = array of Prozess; { "http://service.shk-connect.de"[GblUbnd] }
Array_Of_Teilprozess = array of Teilprozess; { "http://service.shk-connect.de"[GblUbnd] }
// ************************************************************************ //
// XML : GetProzessListe, global, <complexType>
// Namespace : http://service.shk-connect.de
// Serializtn: [xoLiteralParam]
// Info : Wrapper
// ************************************************************************ //
GetProzessListe2 = class(TRemotable)
private
FSchnittstellenversion: string;
FSoftwarename: string;
FSoftwarepasswort: string;
public
constructor Create; override;
published
property Schnittstellenversion: string Index (IS_UNQL) read FSchnittstellenversion write FSchnittstellenversion;
property Softwarename: string Index (IS_UNQL) read FSoftwarename write FSoftwarename;
property Softwarepasswort: string Index (IS_UNQL) read FSoftwarepasswort write FSoftwarepasswort;
end;
// ************************************************************************ //
// XML : GetProzessListe, global, <element>
// Namespace : http://service.shk-connect.de
// Info : Wrapper
// ************************************************************************ //
GetProzessListe = class(GetProzessListe2)
private
published
end;
// ************************************************************************ //
// XML : Teilprozess, global, <complexType>
// Namespace : http://service.shk-connect.de
// ************************************************************************ //
Teilprozess = class(TRemotable)
private
FTeilprozesscode: string;
FVersion: string;
FName_: string;
published
property Teilprozesscode: string Index (IS_UNQL) read FTeilprozesscode write FTeilprozesscode;
property Version: string Index (IS_UNQL) read FVersion write FVersion;
property Name_: string Index (IS_UNQL) read FName_ write FName_;
end;
// ************************************************************************ //
// XML : GetProzessListeResponse, global, <complexType>
// Namespace : http://service.shk-connect.de
// Serializtn: [xoLiteralParam]
// Info : Wrapper
// ************************************************************************ //
GetProzessListeResponse = class(TRemotable)
private
FSchnittstellenversion: string;
FServerkennung: string;
FStatus: Status;
FProzess: Array_Of_Prozess;
FProzess_Specified: boolean;
procedure SetProzess(Index: Integer; const AArray_Of_Prozess: Array_Of_Prozess);
function Prozess_Specified(Index: Integer): boolean;
public
constructor Create; override;
destructor Destroy; override;
published
property Schnittstellenversion: string Index (IS_UNQL) read FSchnittstellenversion write FSchnittstellenversion;
property Serverkennung: string Index (IS_UNQL) read FServerkennung write FServerkennung;
property Status: Status Index (IS_UNQL) read FStatus write FStatus;
property Prozess: Array_Of_Prozess Index (IS_OPTN or IS_UNBD or IS_UNQL) read FProzess write SetProzess stored Prozess_Specified;
end;
// ************************************************************************ //
// XML : GetProzessListeAntwort, global, <element>
// Namespace : http://service.shk-connect.de
// Info : Wrapper
// ************************************************************************ //
GetProzessListeAntwort = class(GetProzessListeResponse)
private
published
end;
// ************************************************************************ //
// XML : Status, global, <complexType>
// Namespace : http://service.shk-connect.de
// ************************************************************************ //
Status = class(TRemotable)
private
FCode: string;
FMeldung: string;
FMeldung_Specified: boolean;
procedure SetMeldung(Index: Integer; const Astring: string);
function Meldung_Specified(Index: Integer): boolean;
published
property Code: string Index (IS_UNQL) read FCode write FCode;
property Meldung: string Index (IS_OPTN or IS_UNQL) read FMeldung write SetMeldung stored Meldung_Specified;
end;
// ************************************************************************ //
// XML : Prozess, global, <complexType>
// Namespace : http://service.shk-connect.de
// ************************************************************************ //
Prozess = class(TRemotable)
private
FProzesscode: string;
FVersion: string;
FName_: string;
FTeilprozess: Array_Of_Teilprozess;
FTeilprozess_Specified: boolean;
procedure SetTeilprozess(Index: Integer; const AArray_Of_Teilprozess: Array_Of_Teilprozess);
function Teilprozess_Specified(Index: Integer): boolean;
public
destructor Destroy; override;
published
property Prozesscode: string Index (IS_UNQL) read FProzesscode write FProzesscode;
property Version: string Index (IS_UNQL) read FVersion write FVersion;
property Name_: string Index (IS_UNQL) read FName_ write FName_;
property Teilprozess: Array_Of_Teilprozess Index (IS_OPTN or IS_UNBD or IS_UNQL) read FTeilprozess write SetTeilprozess stored Teilprozess_Specified;
end;
// ************************************************************************ //
// Namespace : http://service.shk-connect.de
// Transport : http://schemas.xmlsoap.org/soap/http
// Stil : document
// Verwenden von : literal
// Bindung : ProzessListeBeanImplBinding
// Service : ProzessListeService
// Port : ProzessListeServicePort
// URL : https://shkgh20.shk-connect.de/services/ProzessListe
// ************************************************************************ //
ProzessListeBeanImpl = interface(IInvokable)
['{AAF152AB-CA65-FB96-817F-55666D242D44}']
// Entpacken nicht möglich:
// - Mehrere strenge out-Elemente gefunden
function GetProzessListe(const GetProzessListe: GetProzessListe): GetProzessListeAntwort; stdcall;
end;
function GetProzessListeBeanImpl(UseWSDL: Boolean=System.False; Addr: string=''; HTTPRIO: THTTPRIO = nil): ProzessListeBeanImpl;
implementation
uses System.SysUtils;
function GetProzessListeBeanImpl(UseWSDL: Boolean; Addr: string; HTTPRIO: THTTPRIO): ProzessListeBeanImpl;
const
defWSDL = 'https://shkgh20.shk-connect.de/services/ProzessListe?wsdl';
defURL = 'https://shkgh20.shk-connect.de/services/ProzessListe';
defSvc = 'ProzessListeService';
defPrt = 'ProzessListeServicePort';
var
RIO: THTTPRIO;
begin
Result := nil;
if (Addr = '') then
begin
if UseWSDL then
Addr := defWSDL
else
Addr := defURL;
end;
if HTTPRIO = nil then
RIO := THTTPRIO.Create(nil)
else
RIO := HTTPRIO;
try
Result := (RIO as ProzessListeBeanImpl);
if UseWSDL then
begin
RIO.WSDLLocation := Addr;
RIO.Service := defSvc;
RIO.Port := defPrt;
end else
RIO.URL := Addr;
finally
if (Result = nil) and (HTTPRIO = nil) then
RIO.Free;
end;
end;
constructor GetProzessListe2.Create;
begin
inherited Create;
FSerializationOptions := [xoLiteralParam];
end;
constructor GetProzessListeResponse.Create;
begin
inherited Create;
FSerializationOptions := [xoLiteralParam];
end;
destructor GetProzessListeResponse.Destroy;
var
I: Integer;
begin
for I := 0 to System.Length(FProzess)-1 do
System.SysUtils.FreeAndNil(FProzess[I]);
System.SetLength(FProzess, 0);
System.SysUtils.FreeAndNil(FStatus);
inherited Destroy;
end;
procedure GetProzessListeResponse.SetProzess(Index: Integer; const AArray_Of_Prozess: Array_Of_Prozess);
begin
FProzess := AArray_Of_Prozess;
FProzess_Specified := True;
end;
function GetProzessListeResponse.Prozess_Specified(Index: Integer): boolean;
begin
Result := FProzess_Specified;
end;
procedure Status.SetMeldung(Index: Integer; const Astring: string);
begin
FMeldung := Astring;
FMeldung_Specified := True;
end;
function Status.Meldung_Specified(Index: Integer): boolean;
begin
Result := FMeldung_Specified;
end;
destructor Prozess.Destroy;
var
I: Integer;
begin
for I := 0 to System.Length(FTeilprozess)-1 do
System.SysUtils.FreeAndNil(FTeilprozess[I]);
System.SetLength(FTeilprozess, 0);
inherited Destroy;
end;
procedure Prozess.SetTeilprozess(Index: Integer; const AArray_Of_Teilprozess: Array_Of_Teilprozess);
begin
FTeilprozess := AArray_Of_Teilprozess;
FTeilprozess_Specified := True;
end;
function Prozess.Teilprozess_Specified(Index: Integer): boolean;
begin
Result := FTeilprozess_Specified;
end;
initialization
{ ProzessListeBeanImpl }
InvRegistry.RegisterInterface(TypeInfo(ProzessListeBeanImpl), 'http://service.shk-connect.de', 'UTF-8');
InvRegistry.RegisterDefaultSOAPAction(TypeInfo(ProzessListeBeanImpl), '');
InvRegistry.RegisterInvokeOptions(TypeInfo(ProzessListeBeanImpl), ioDocument);
InvRegistry.RegisterInvokeOptions(TypeInfo(ProzessListeBeanImpl), ioLiteral);
RemClassRegistry.RegisterXSInfo(TypeInfo(Array_Of_Prozess), 'http://service.shk-connect.de', 'Array_Of_Prozess');
RemClassRegistry.RegisterXSInfo(TypeInfo(Array_Of_Teilprozess), 'http://service.shk-connect.de', 'Array_Of_Teilprozess');
RemClassRegistry.RegisterXSClass(GetProzessListe2, 'http://service.shk-connect.de', 'GetProzessListe2', 'GetProzessListe');
RemClassRegistry.RegisterSerializeOptions(GetProzessListe2, [xoLiteralParam]);
RemClassRegistry.RegisterXSClass(GetProzessListe, 'http://service.shk-connect.de', 'GetProzessListe');
RemClassRegistry.RegisterXSClass(Teilprozess, 'http://service.shk-connect.de', 'Teilprozess');
RemClassRegistry.RegisterExternalPropName(TypeInfo(Teilprozess), 'Name_', '[ExtName="Name"]');
RemClassRegistry.RegisterXSClass(GetProzessListeResponse, 'http://service.shk-connect.de', 'GetProzessListeResponse');
RemClassRegistry.RegisterSerializeOptions(GetProzessListeResponse, [xoLiteralParam]);
RemClassRegistry.RegisterXSClass(GetProzessListeAntwort, 'http://service.shk-connect.de', 'GetProzessListeAntwort');
RemClassRegistry.RegisterXSClass(Status, 'http://service.shk-connect.de', 'Status');
RemClassRegistry.RegisterXSClass(Prozess, 'http://service.shk-connect.de', 'Prozess');
RemClassRegistry.RegisterExternalPropName(TypeInfo(Prozess), 'Name_', '[ExtName="Name"]');
end.