-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
intf.OpenConnectAnwenderIndividuelleAuskuenfte.pas
650 lines (559 loc) · 25.7 KB
/
intf.OpenConnectAnwenderIndividuelleAuskuenfte.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
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
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
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
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
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
{* 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/AnwenderIndividuelleAuskuenfte?wsdl
// >Import : https://shkgh20.shk-connect.de/services/AnwenderIndividuelleAuskuenfte?wsdl>0
// Codierung : UTF-8
// Version: 1.0
// (08.07.2022 15:45:37 - - $Rev: 108085 $)
// ************************************************************************ //
unit intf.OpenConnectAnwenderIndividuelleAuskuenfte;
interface
uses Soap.InvokeRegistry, Soap.SOAPHTTPClient, System.Types, Soap.XSBuiltIns;
const
IS_OPTN = $0001;
IS_UNBD = $0002;
IS_NLBL = $0004;
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.
// ************************************************************************ //
// !:long - "http://www.w3.org/2001/XMLSchema"[Gbl]
// !:int - "http://www.w3.org/2001/XMLSchema"[Gbl]
// !:string - "http://www.w3.org/2001/XMLSchema"[Gbl]
Link = class; { "http://service.shk-connect.de"[GblCplx] }
GetIndividuelleAuskunft2 = class; { "http://service.shk-connect.de"[Lit][GblCplx] }
GetIndividuelleAuskunft = class; { "http://service.shk-connect.de"[Lit][GblElm] }
Prozess = class; { "http://service.shk-connect.de"[GblCplx] }
GetIndividuelleAuskunftResponse = class; { "http://service.shk-connect.de"[Lit][GblCplx] }
GetIndividuelleAuskunftAntwort = class; { "http://service.shk-connect.de"[Lit][GblElm] }
Status = class; { "http://service.shk-connect.de"[GblCplx] }
{$SCOPEDENUMS ON}
{ "http://service.shk-connect.de"[GblSmpl] }
Authentifizierungsmethode = (URL, HTTPAUTH, KEINE, COOKIE);
{$SCOPEDENUMS OFF}
Array_Of_Link = array of Link; { "http://service.shk-connect.de"[GblUbnd] }
Teilprozesse = array of string; { "http://service.shk-connect.de"[Cplx] }
CookieList = array of string; { "http://service.shk-connect.de"[Cplx] }
// ************************************************************************ //
// XML : Link, global, <complexType>
// Namespace : http://service.shk-connect.de
// ************************************************************************ //
Link = class(TRemotable)
private
FBeschreibung: string;
FURL: string;
FDatum: string;
FDatum_Specified: boolean;
FGroesse: Int64;
FAuthentifizierungsmethode: Authentifizierungsmethode;
FDatenDatum: string;
FAenderungsInfo: string;
FAenderungsInfo_Specified: boolean;
FCookieList: CookieList;
FCookieList_Specified: boolean;
FDateityp: string;
FDateityp_Specified: boolean;
FDateiname_org: string;
FDateiname_org_Specified: boolean;
procedure SetDatum(Index: Integer; const Astring: string);
function Datum_Specified(Index: Integer): boolean;
procedure SetAenderungsInfo(Index: Integer; const Astring: string);
function AenderungsInfo_Specified(Index: Integer): boolean;
procedure SetCookieList(Index: Integer; const ACookieList: CookieList);
function CookieList_Specified(Index: Integer): boolean;
procedure SetDateityp(Index: Integer; const Astring: string);
function Dateityp_Specified(Index: Integer): boolean;
procedure SetDateiname_org(Index: Integer; const Astring: string);
function Dateiname_org_Specified(Index: Integer): boolean;
published
property Beschreibung: string Index (IS_UNQL) read FBeschreibung write FBeschreibung;
property URL: string Index (IS_UNQL) read FURL write FURL;
property Datum: string Index (IS_OPTN or IS_UNQL) read FDatum write SetDatum stored Datum_Specified;
property Groesse: Int64 Index (IS_NLBL or IS_UNQL) read FGroesse write FGroesse;
property Authentifizierungsmethode: Authentifizierungsmethode Index (IS_UNQL) read FAuthentifizierungsmethode write FAuthentifizierungsmethode;
property DatenDatum: string Index (IS_UNQL) read FDatenDatum write FDatenDatum;
property AenderungsInfo: string Index (IS_OPTN or IS_UNQL) read FAenderungsInfo write SetAenderungsInfo stored AenderungsInfo_Specified;
property CookieList: CookieList Index (IS_OPTN or IS_UNQL) read FCookieList write SetCookieList stored CookieList_Specified;
property Dateityp: string Index (IS_OPTN or IS_UNQL) read FDateityp write SetDateityp stored Dateityp_Specified;
property Dateiname_org: string Index (IS_OPTN or IS_UNQL) read FDateiname_org write SetDateiname_org stored Dateiname_org_Specified;
end;
// ************************************************************************ //
// XML : GetIndividuelleAuskunft, global, <complexType>
// Namespace : http://service.shk-connect.de
// Serializtn: [xoLiteralParam]
// Info : Wrapper
// ************************************************************************ //
GetIndividuelleAuskunft2 = class(TRemotable)
private
FSchnittstellenversion: string;
FSchnittstellenversion_Specified: boolean;
FSoftwarename: string;
FSoftwarename_Specified: boolean;
FSoftwarepasswort: string;
FSoftwarepasswort_Specified: boolean;
FUnternehmensID: Integer;
FKundennummer: string;
FKundennummer_Specified: boolean;
FBenutzername: string;
FBenutzername_Specified: boolean;
FPasswort: string;
FPasswort_Specified: boolean;
FProzesscode: string;
FProzesscode_Specified: boolean;
FVersion: string;
FVersion_Specified: boolean;
procedure SetSchnittstellenversion(Index: Integer; const Astring: string);
function Schnittstellenversion_Specified(Index: Integer): boolean;
procedure SetSoftwarename(Index: Integer; const Astring: string);
function Softwarename_Specified(Index: Integer): boolean;
procedure SetSoftwarepasswort(Index: Integer; const Astring: string);
function Softwarepasswort_Specified(Index: Integer): boolean;
procedure SetKundennummer(Index: Integer; const Astring: string);
function Kundennummer_Specified(Index: Integer): boolean;
procedure SetBenutzername(Index: Integer; const Astring: string);
function Benutzername_Specified(Index: Integer): boolean;
procedure SetPasswort(Index: Integer; const Astring: string);
function Passwort_Specified(Index: Integer): boolean;
procedure SetProzesscode(Index: Integer; const Astring: string);
function Prozesscode_Specified(Index: Integer): boolean;
procedure SetVersion(Index: Integer; const Astring: string);
function Version_Specified(Index: Integer): boolean;
public
constructor Create; override;
published
property Schnittstellenversion: string Index (IS_OPTN or IS_UNQL) read FSchnittstellenversion write SetSchnittstellenversion stored Schnittstellenversion_Specified;
property Softwarename: string Index (IS_OPTN or IS_UNQL) read FSoftwarename write SetSoftwarename stored Softwarename_Specified;
property Softwarepasswort: string Index (IS_OPTN or IS_UNQL) read FSoftwarepasswort write SetSoftwarepasswort stored Softwarepasswort_Specified;
property UnternehmensID: Integer Index (IS_UNQL) read FUnternehmensID write FUnternehmensID;
property Kundennummer: string Index (IS_OPTN or IS_UNQL) read FKundennummer write SetKundennummer stored Kundennummer_Specified;
property Benutzername: string Index (IS_OPTN or IS_UNQL) read FBenutzername write SetBenutzername stored Benutzername_Specified;
property Passwort: string Index (IS_OPTN or IS_UNQL) read FPasswort write SetPasswort stored Passwort_Specified;
property Prozesscode: string Index (IS_OPTN or IS_UNQL) read FProzesscode write SetProzesscode stored Prozesscode_Specified;
property Version: string Index (IS_OPTN or IS_UNQL) read FVersion write SetVersion stored Version_Specified;
end;
// ************************************************************************ //
// XML : GetIndividuelleAuskunft, global, <element>
// Namespace : http://service.shk-connect.de
// Info : Wrapper
// ************************************************************************ //
GetIndividuelleAuskunft = class(GetIndividuelleAuskunft2)
private
published
end;
// ************************************************************************ //
// XML : Prozess, global, <complexType>
// Namespace : http://service.shk-connect.de
// ************************************************************************ //
Prozess = class(TRemotable)
private
FProzesscode: string;
FVersion: string;
FVersion_Specified: boolean;
FTeilprozesse: Teilprozesse;
FTeilprozesse_Specified: boolean;
FURL: string;
FURL_Specified: boolean;
FLink: Array_Of_Link;
FLink_Specified: boolean;
procedure SetVersion(Index: Integer; const Astring: string);
function Version_Specified(Index: Integer): boolean;
procedure SetTeilprozesse(Index: Integer; const ATeilprozesse: Teilprozesse);
function Teilprozesse_Specified(Index: Integer): boolean;
procedure SetURL(Index: Integer; const Astring: string);
function URL_Specified(Index: Integer): boolean;
procedure SetLink(Index: Integer; const AArray_Of_Link: Array_Of_Link);
function Link_Specified(Index: Integer): boolean;
public
destructor Destroy; override;
published
property Prozesscode: string Index (IS_UNQL) read FProzesscode write FProzesscode;
property Version: string Index (IS_OPTN or IS_UNQL) read FVersion write SetVersion stored Version_Specified;
property Teilprozesse: Teilprozesse Index (IS_OPTN or IS_UNQL) read FTeilprozesse write SetTeilprozesse stored Teilprozesse_Specified;
property URL: string Index (IS_OPTN or IS_UNQL) read FURL write SetURL stored URL_Specified;
property Link: Array_Of_Link Index (IS_OPTN or IS_UNBD or IS_UNQL) read FLink write SetLink stored Link_Specified;
end;
Prozessliste = array of Prozess; { "http://service.shk-connect.de"[GblCplx] }
// ************************************************************************ //
// XML : GetIndividuelleAuskunftResponse, global, <complexType>
// Namespace : http://service.shk-connect.de
// Serializtn: [xoLiteralParam]
// Info : Wrapper
// ************************************************************************ //
GetIndividuelleAuskunftResponse = class(TRemotable)
private
FSchnittstellenversion: string;
FSchnittstellenversion_Specified: boolean;
FServerkennung: string;
FServerkennung_Specified: boolean;
FStatus: Status;
FStatus_Specified: boolean;
FProzessliste: Prozessliste;
FProzessliste_Specified: boolean;
procedure SetSchnittstellenversion(Index: Integer; const Astring: string);
function Schnittstellenversion_Specified(Index: Integer): boolean;
procedure SetServerkennung(Index: Integer; const Astring: string);
function Serverkennung_Specified(Index: Integer): boolean;
procedure SetStatus(Index: Integer; const AStatus: Status);
function Status_Specified(Index: Integer): boolean;
procedure SetProzessliste(Index: Integer; const AProzessliste: Prozessliste);
function Prozessliste_Specified(Index: Integer): boolean;
public
constructor Create; override;
destructor Destroy; override;
published
property Schnittstellenversion: string Index (IS_OPTN or IS_UNQL) read FSchnittstellenversion write SetSchnittstellenversion stored Schnittstellenversion_Specified;
property Serverkennung: string Index (IS_OPTN or IS_UNQL) read FServerkennung write SetServerkennung stored Serverkennung_Specified;
property Status: Status Index (IS_OPTN or IS_UNQL) read FStatus write SetStatus stored Status_Specified;
property Prozessliste: Prozessliste Index (IS_OPTN or IS_UNQL) read FProzessliste write SetProzessliste stored Prozessliste_Specified;
end;
// ************************************************************************ //
// XML : GetIndividuelleAuskunftAntwort, global, <element>
// Namespace : http://service.shk-connect.de
// Info : Wrapper
// ************************************************************************ //
GetIndividuelleAuskunftAntwort = class(GetIndividuelleAuskunftResponse)
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;
// ************************************************************************ //
// Namespace : http://service.shk-connect.de
// Transport : http://schemas.xmlsoap.org/soap/http
// Stil : document
// Verwenden von : literal
// Bindung : AnwenderIndividuelleAuskuenfteBeanBinding
// Service : anwenderIndividuelleAuskuenfteService
// Port : anwenderIndividuelleAuskuenftePort
// URL : https://shkgh20.shk-connect.de/services/AnwenderIndividuelleAuskuenfte
// ************************************************************************ //
AnwenderIndividuelleAuskuenfteBean = interface(IInvokable)
['{5072BA2C-0784-556C-4EC2-A2BD8D629A22}']
// Entpacken nicht möglich:
// - Mehrere strenge out-Elemente gefunden
function GetIndividuelleAuskunft(const GetIndividuelleAuskunft: GetIndividuelleAuskunft): GetIndividuelleAuskunftAntwort; stdcall;
end;
function GetAnwenderIndividuelleAuskuenfteBean(UseWSDL: Boolean=System.False; Addr: string=''; HTTPRIO: THTTPRIO = nil): AnwenderIndividuelleAuskuenfteBean;
implementation
uses System.SysUtils;
function GetAnwenderIndividuelleAuskuenfteBean(UseWSDL: Boolean; Addr: string; HTTPRIO: THTTPRIO): AnwenderIndividuelleAuskuenfteBean;
const
defWSDL = 'https://shkgh20.shk-connect.de/services/AnwenderIndividuelleAuskuenfte?wsdl';
defURL = 'https://shkgh20.shk-connect.de/services/AnwenderIndividuelleAuskuenfte';
defSvc = 'anwenderIndividuelleAuskuenfteService';
defPrt = 'anwenderIndividuelleAuskuenftePort';
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 AnwenderIndividuelleAuskuenfteBean);
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;
procedure Link.SetDatum(Index: Integer; const Astring: string);
begin
FDatum := Astring;
FDatum_Specified := True;
end;
function Link.Datum_Specified(Index: Integer): boolean;
begin
Result := FDatum_Specified;
end;
procedure Link.SetAenderungsInfo(Index: Integer; const Astring: string);
begin
FAenderungsInfo := Astring;
FAenderungsInfo_Specified := True;
end;
function Link.AenderungsInfo_Specified(Index: Integer): boolean;
begin
Result := FAenderungsInfo_Specified;
end;
procedure Link.SetCookieList(Index: Integer; const ACookieList: CookieList);
begin
FCookieList := ACookieList;
FCookieList_Specified := True;
end;
function Link.CookieList_Specified(Index: Integer): boolean;
begin
Result := FCookieList_Specified;
end;
procedure Link.SetDateityp(Index: Integer; const Astring: string);
begin
FDateityp := Astring;
FDateityp_Specified := True;
end;
function Link.Dateityp_Specified(Index: Integer): boolean;
begin
Result := FDateityp_Specified;
end;
procedure Link.SetDateiname_org(Index: Integer; const Astring: string);
begin
FDateiname_org := Astring;
FDateiname_org_Specified := True;
end;
function Link.Dateiname_org_Specified(Index: Integer): boolean;
begin
Result := FDateiname_org_Specified;
end;
constructor GetIndividuelleAuskunft2.Create;
begin
inherited Create;
FSerializationOptions := [xoLiteralParam];
end;
procedure GetIndividuelleAuskunft2.SetSchnittstellenversion(Index: Integer; const Astring: string);
begin
FSchnittstellenversion := Astring;
FSchnittstellenversion_Specified := True;
end;
function GetIndividuelleAuskunft2.Schnittstellenversion_Specified(Index: Integer): boolean;
begin
Result := FSchnittstellenversion_Specified;
end;
procedure GetIndividuelleAuskunft2.SetSoftwarename(Index: Integer; const Astring: string);
begin
FSoftwarename := Astring;
FSoftwarename_Specified := True;
end;
function GetIndividuelleAuskunft2.Softwarename_Specified(Index: Integer): boolean;
begin
Result := FSoftwarename_Specified;
end;
procedure GetIndividuelleAuskunft2.SetSoftwarepasswort(Index: Integer; const Astring: string);
begin
FSoftwarepasswort := Astring;
FSoftwarepasswort_Specified := True;
end;
function GetIndividuelleAuskunft2.Softwarepasswort_Specified(Index: Integer): boolean;
begin
Result := FSoftwarepasswort_Specified;
end;
procedure GetIndividuelleAuskunft2.SetKundennummer(Index: Integer; const Astring: string);
begin
FKundennummer := Astring;
FKundennummer_Specified := True;
end;
function GetIndividuelleAuskunft2.Kundennummer_Specified(Index: Integer): boolean;
begin
Result := FKundennummer_Specified;
end;
procedure GetIndividuelleAuskunft2.SetBenutzername(Index: Integer; const Astring: string);
begin
FBenutzername := Astring;
FBenutzername_Specified := True;
end;
function GetIndividuelleAuskunft2.Benutzername_Specified(Index: Integer): boolean;
begin
Result := FBenutzername_Specified;
end;
procedure GetIndividuelleAuskunft2.SetPasswort(Index: Integer; const Astring: string);
begin
FPasswort := Astring;
FPasswort_Specified := True;
end;
function GetIndividuelleAuskunft2.Passwort_Specified(Index: Integer): boolean;
begin
Result := FPasswort_Specified;
end;
procedure GetIndividuelleAuskunft2.SetProzesscode(Index: Integer; const Astring: string);
begin
FProzesscode := Astring;
FProzesscode_Specified := True;
end;
function GetIndividuelleAuskunft2.Prozesscode_Specified(Index: Integer): boolean;
begin
Result := FProzesscode_Specified;
end;
procedure GetIndividuelleAuskunft2.SetVersion(Index: Integer; const Astring: string);
begin
FVersion := Astring;
FVersion_Specified := True;
end;
function GetIndividuelleAuskunft2.Version_Specified(Index: Integer): boolean;
begin
Result := FVersion_Specified;
end;
destructor Prozess.Destroy;
var
I: Integer;
begin
for I := 0 to System.Length(FLink)-1 do
System.SysUtils.FreeAndNil(FLink[I]);
System.SetLength(FLink, 0);
inherited Destroy;
end;
procedure Prozess.SetVersion(Index: Integer; const Astring: string);
begin
FVersion := Astring;
FVersion_Specified := True;
end;
function Prozess.Version_Specified(Index: Integer): boolean;
begin
Result := FVersion_Specified;
end;
procedure Prozess.SetTeilprozesse(Index: Integer; const ATeilprozesse: Teilprozesse);
begin
FTeilprozesse := ATeilprozesse;
FTeilprozesse_Specified := True;
end;
function Prozess.Teilprozesse_Specified(Index: Integer): boolean;
begin
Result := FTeilprozesse_Specified;
end;
procedure Prozess.SetURL(Index: Integer; const Astring: string);
begin
FURL := Astring;
FURL_Specified := True;
end;
function Prozess.URL_Specified(Index: Integer): boolean;
begin
Result := FURL_Specified;
end;
procedure Prozess.SetLink(Index: Integer; const AArray_Of_Link: Array_Of_Link);
begin
FLink := AArray_Of_Link;
FLink_Specified := True;
end;
function Prozess.Link_Specified(Index: Integer): boolean;
begin
Result := FLink_Specified;
end;
constructor GetIndividuelleAuskunftResponse.Create;
begin
inherited Create;
FSerializationOptions := [xoLiteralParam];
end;
destructor GetIndividuelleAuskunftResponse.Destroy;
var
I: Integer;
begin
for I := 0 to System.Length(FProzessliste)-1 do
System.SysUtils.FreeAndNil(FProzessliste[I]);
System.SetLength(FProzessliste, 0);
System.SysUtils.FreeAndNil(FStatus);
inherited Destroy;
end;
procedure GetIndividuelleAuskunftResponse.SetSchnittstellenversion(Index: Integer; const Astring: string);
begin
FSchnittstellenversion := Astring;
FSchnittstellenversion_Specified := True;
end;
function GetIndividuelleAuskunftResponse.Schnittstellenversion_Specified(Index: Integer): boolean;
begin
Result := FSchnittstellenversion_Specified;
end;
procedure GetIndividuelleAuskunftResponse.SetServerkennung(Index: Integer; const Astring: string);
begin
FServerkennung := Astring;
FServerkennung_Specified := True;
end;
function GetIndividuelleAuskunftResponse.Serverkennung_Specified(Index: Integer): boolean;
begin
Result := FServerkennung_Specified;
end;
procedure GetIndividuelleAuskunftResponse.SetStatus(Index: Integer; const AStatus: Status);
begin
FStatus := AStatus;
FStatus_Specified := True;
end;
function GetIndividuelleAuskunftResponse.Status_Specified(Index: Integer): boolean;
begin
Result := FStatus_Specified;
end;
procedure GetIndividuelleAuskunftResponse.SetProzessliste(Index: Integer; const AProzessliste: Prozessliste);
begin
FProzessliste := AProzessliste;
FProzessliste_Specified := True;
end;
function GetIndividuelleAuskunftResponse.Prozessliste_Specified(Index: Integer): boolean;
begin
Result := FProzessliste_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;
initialization
{ AnwenderIndividuelleAuskuenfteBean }
InvRegistry.RegisterInterface(TypeInfo(AnwenderIndividuelleAuskuenfteBean), 'http://service.shk-connect.de', 'UTF-8');
InvRegistry.RegisterDefaultSOAPAction(TypeInfo(AnwenderIndividuelleAuskuenfteBean), '');
InvRegistry.RegisterInvokeOptions(TypeInfo(AnwenderIndividuelleAuskuenfteBean), ioDocument);
InvRegistry.RegisterInvokeOptions(TypeInfo(AnwenderIndividuelleAuskuenfteBean), ioLiteral);
RemClassRegistry.RegisterXSInfo(TypeInfo(Authentifizierungsmethode), 'http://service.shk-connect.de', 'Authentifizierungsmethode');
RemClassRegistry.RegisterXSInfo(TypeInfo(Array_Of_Link), 'http://service.shk-connect.de', 'Array_Of_Link');
RemClassRegistry.RegisterXSInfo(TypeInfo(Teilprozesse), 'http://service.shk-connect.de', 'Teilprozesse');
RemClassRegistry.RegisterXSInfo(TypeInfo(CookieList), 'http://service.shk-connect.de', 'CookieList');
RemClassRegistry.RegisterXSClass(Link, 'http://service.shk-connect.de', 'Link');
RemClassRegistry.RegisterExternalPropName(TypeInfo(Link), 'CookieList', '[ArrayItemName="Cookie"]');
RemClassRegistry.RegisterXSClass(GetIndividuelleAuskunft2, 'http://service.shk-connect.de', 'GetIndividuelleAuskunft2', 'GetIndividuelleAuskunft');
RemClassRegistry.RegisterSerializeOptions(GetIndividuelleAuskunft2, [xoLiteralParam]);
RemClassRegistry.RegisterXSClass(GetIndividuelleAuskunft, 'http://service.shk-connect.de', 'GetIndividuelleAuskunft');
RemClassRegistry.RegisterXSClass(Prozess, 'http://service.shk-connect.de', 'Prozess');
RemClassRegistry.RegisterExternalPropName(TypeInfo(Prozess), 'Teilprozesse', '[ArrayItemName="Teilprozess"]');
RemClassRegistry.RegisterXSInfo(TypeInfo(Prozessliste), 'http://service.shk-connect.de', 'Prozessliste');
RemClassRegistry.RegisterXSClass(GetIndividuelleAuskunftResponse, 'http://service.shk-connect.de', 'GetIndividuelleAuskunftResponse');
RemClassRegistry.RegisterExternalPropName(TypeInfo(GetIndividuelleAuskunftResponse), 'Prozessliste', '[ArrayItemName="Prozess"]');
RemClassRegistry.RegisterSerializeOptions(GetIndividuelleAuskunftResponse, [xoLiteralParam]);
RemClassRegistry.RegisterXSClass(GetIndividuelleAuskunftAntwort, 'http://service.shk-connect.de', 'GetIndividuelleAuskunftAntwort');
RemClassRegistry.RegisterXSClass(Status, 'http://service.shk-connect.de', 'Status');
end.