-
Notifications
You must be signed in to change notification settings - Fork 4
/
USImportoer-soapui-project.xml
9960 lines (9960 loc) · 668 KB
/
USImportoer-soapui-project.xml
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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
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
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<con:soapui-project id="7ab8791f-87de-44a6-bca5-0fa89e8ca337" activeEnvironment="Default" name="USImportoer" resourceRoot="" soapui-version="5.4.0" abortOnError="false" runType="SEQUENTIAL" xmlns:con="http://eviware.com/soapui/config"><con:settings/><con:interface xsi:type="con:WsdlInterface" id="4ac20fd8-3ced-4224-abbb-59f0454439bc" wsaVersion="NONE" name="Binding" type="wsdl" bindingName="{http://skat.dk/dmr/2007/05/31/}Binding" soapVersion="1_1" anonymous="optional" definition="https://available.on.request.dk/B2B/USImportoer/Service?wsdl" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:settings/><con:definitionCache type="TEXT" rootPart="https://available.on.request.dk/B2B/USImportoer/Service?wsdl"><con:part><con:url>https://available.on.request.dk/B2B/USImportoer/Service?wsdl</con:url><con:content><![CDATA[<WL5G3N2:definitions name="USImportoerService" targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:WL5G3N1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N3="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy">
<WL5G3N0:Policy WL5G3N1:Id="SkatEsbAuthentication">
<wssp:Identity xmlns:wssp="http://www.bea.com/wls90/security/policy">
<wssp:SupportedTokens>
<wssp:SecurityToken TokenType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"></wssp:SecurityToken>
</wssp:SupportedTokens>
</wssp:Identity>
<wssp:Integrity SignToken="false" xmlns:wls="http://www.bea.com/wls90/security/policy/wsee#part" xmlns:wssp="http://www.bea.com/wls90/security/policy" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wssp:SignatureAlgorithm URI="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
<wssp:CanonicalizationAlgorithm URI="http://www.w3.org/2001/10/xml-exc-c14n#"/>
<wssp:Target>
<wssp:DigestAlgorithm URI="http://www.w3.org/2000/09/xmldsig#sha1"/>
<wssp:MessageParts Dialect="http://schemas.xmlsoap.org/2002/12/wsse#part">wsp:Body()</wssp:MessageParts>
</wssp:Target>
<wssp:Target>
<wssp:DigestAlgorithm URI="http://www.w3.org/2000/09/xmldsig#sha1"/>
<wssp:MessageParts Dialect="http://www.bea.com/wls90/security/policy/wsee#part">wls:SecurityHeader(wsu:Timestamp)</wssp:MessageParts>
</wssp:Target>
<wssp:SupportedTokens>
<wssp:SecurityToken IncludeInMessage="true" TokenType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"/>
</wssp:SupportedTokens>
</wssp:Integrity>
</WL5G3N0:Policy>
<WL5G3N0:Policy WL5G3N1:Id="Sign">
<wssp:Integrity SignToken="false" xmlns:wls="http://www.bea.com/wls90/security/policy/wsee#part" xmlns:wssp="http://www.bea.com/wls90/security/policy" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wssp:SignatureAlgorithm URI="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
<wssp:CanonicalizationAlgorithm URI="http://www.w3.org/2001/10/xml-exc-c14n#"/>
<wssp:Target>
<wssp:DigestAlgorithm URI="http://www.w3.org/2000/09/xmldsig#sha1"/>
<wssp:MessageParts Dialect="http://www.bea.com/wls90/security/policy/wsee#part">wls:SystemHeaders()</wssp:MessageParts>
</wssp:Target>
<wssp:Target>
<wssp:DigestAlgorithm URI="http://www.w3.org/2000/09/xmldsig#sha1"/>
<wssp:MessageParts Dialect="http://www.bea.com/wls90/security/policy/wsee#part">wls:SecurityHeader(wsu:Timestamp)</wssp:MessageParts>
</wssp:Target>
<wssp:Target>
<wssp:DigestAlgorithm URI="http://www.w3.org/2000/09/xmldsig#sha1"/>
<wssp:MessageParts Dialect="http://schemas.xmlsoap.org/2002/12/wsse#part">wsp:Body()</wssp:MessageParts>
</wssp:Target>
<wssp:SupportedTokens>
<wssp:SecurityToken IncludeInMessage="true" TokenType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3">
<wssp:TokenIssuer>CN=Hellenic Academic and Research Institutions RootCA 2011,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR,O=Government Root Certification Authority,C=TW,CN=TeliaSonera Root CA v1,O=TeliaSonera,CN=GeoTrust Primary Certification Authority,O=GeoTrust Inc.,C=US,CN=emSign Root CA - G1,O=eMudhra Technologies Limited,OU=emSign PKI,C=IN,OU=Trustis FPS Root CA,O=Trustis Limited,C=GB,CN=QuoVadis Root CA 3 G3,O=QuoVadis Limited,C=BM,CN=Secure Global CA,O=SecureTrust Corporation,C=US,CN=SSL.com EV Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US,CN=SZAFIR ROOT CA2,O=Krajowa Izba Rozliczeniowa S.A.,C=PL,CN=QuoVadis Root CA 1 G3,O=QuoVadis Limited,C=BM,CN=Autoridad de Certificacion Firmaprofesional CIF A62634068,C=ES,CN=SecureSign RootCA11,O=Japan Certification Services\, Inc.,C=JP,CN=ISRG Root X1,O=Internet Security Research Group,C=US,CN=GeoTrust Universal CA 2,O=GeoTrust Inc.,C=US,CN=DigiCert Global Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=Staat der Nederlanden EV Root CA,O=Staat der Nederlanden,C=NL,CN=TRUST2408 OCES CA V,O=TRUST2408,C=DK,CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\, Inc.,L=Scottsdale,ST=Arizona,C=US,CN=Actalis Authentication Root CA,O=Actalis S.p.A./03358520967,L=Milan,C=IT,CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1,OU=Kamu Sertifikasyon Merkezi - Kamu SM,O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK,L=Gebze - Kocaeli,C=TR,CN=Amazon Root CA 4,O=Amazon,C=US,CN=Amazon Root CA 3,O=Amazon,C=US,CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R6,CN=Amazon Root CA 2,O=Amazon,C=US,CN=Amazon Root CA 1,O=Amazon,C=US,CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3,CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R2,CN=AffirmTrust Premium,O=AffirmTrust,C=US,CN=TRUST2408 OCES CA IV,O=TRUST2408,C=DK,CN=Entrust Root Certification Authority - G2,OU=(c) 2009 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US,CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US,CN=GeoTrust Primary Certification Authority - G2,OU=(c) 2007 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US,CN=GDCA TrustAUTH R5 ROOT,O=GUANG DONG CERTIFICATE AUTHORITY CO.\,LTD.,C=CN,CN=TrustCor RootCert CA-2,OU=TrustCor Certificate Authority,O=TrustCor Systems S. de R.L.,L=Panama City,ST=Panama,C=PA,CN=TrustCor RootCert CA-1,OU=TrustCor Certificate Authority,O=TrustCor Systems S. de R.L.,L=Panama City,ST=Panama,C=PA,CN=emSign ECC Root CA - G3,O=eMudhra Technologies Limited,OU=emSign PKI,C=IN,C=DE,O=Atos,CN=Atos TrustedRoot 2011,CN=EC-ACC,OU=Jerarquia Entitats de Certificacio Catalanes,OU=Vegeu https://www.catcert.net/verarrel (c)03,OU=Serveis Publics de Certificacio,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES,CN=Certigna Root CA,OU=0002 48146308100036,O=Dhimyotis,C=FR,CN=SwissSign Silver CA - G2,O=SwissSign AG,C=CH,CN=COMODO ECC Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB,CN=SecureTrust CA,O=SecureTrust Corporation,C=US,CN=CA Disig Root R2,O=Disig a.s.,L=Bratislava,C=SK,OU=Class 3 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US,CN=Starfield Root Certificate Authority - G2,O=Starfield Technologies\, Inc.,L=Scottsdale,ST=Arizona,C=US,CN=TRUST2408 OCES CA III,O=TRUST2408,C=DK,CN=GlobalSign,O=GlobalSign,OU=GlobalSign ECC Root CA - R5,CN=GlobalSign,O=GlobalSign,OU=GlobalSign ECC Root CA - R4,CN=TrustCor ECA-1,OU=TrustCor Certificate Authority,O=TrustCor Systems S. de R.L.,L=Panama City,ST=Panama,C=PA,CN=TRUST2408 Systemtest XXII CA,O=TRUST2408,C=DK,OU=Starfield Class 2 Certification Authority,O=Starfield Technologies\, Inc.,C=US,CN=Buypass Class 2 Root CA,O=Buypass AS-983163327,C=NO,CN=Buypass Class 3 Root CA,O=Buypass AS-983163327,C=NO,OU=ePKI Root Certification Authority,O=Chunghwa Telecom Co.\, Ltd.,C=TW,CN=Certigna,O=Dhimyotis,C=FR,CN=DigiCert SHA2 Extended Validation Server CA,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=CFCA EV ROOT,O=China Financial Certification Authority,C=CN,CN=emSign Root CA - C1,O=eMudhra Inc,OU=emSign PKI,C=US,CN=Sonera Class2 CA,O=Sonera,C=FI,CN=Certum Trusted Network CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL,OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP,CN=del.nonprd.ccta.dk,OU=del.nonprd.ccta.dk:skat,O=Skat,C=DK,CN=QuoVadis Root Certification Authority,OU=Root Certification Authority,O=QuoVadis Limited,C=BM,CN=OISTE WISeKey Global Root GC CA,OU=OISTE Foundation Endorsed,O=WISeKey,C=CH,CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US,CN=Network Solutions Certificate Authority,O=Network Solutions L.L.C.,C=US,CN=OISTE WISeKey Global Root GA CA,OU=OISTE Foundation Endorsed,OU=Copyright (c) 2005,O=WISeKey,C=CH,CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US,CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US,CN=thawte Primary Root CA - G2,OU=(c) 2007 thawte\, Inc. - For authorized use only,O=thawte\, Inc.,C=US,CN=SwissSign Gold CA - G2,O=SwissSign AG,C=CH,CN=TRUST2408 Systemtest VIII CA,O=TRUST2408,C=DK,CN=AddTrust External CA Root,OU=AddTrust External TTP Network,O=AddTrust AB,C=SE,CN=TRUST2408 Systemtest VII Primary CA,O=TRUST2408,C=DK,OU=certSIGN ROOT CA,O=certSIGN,C=RO,CN=GeoTrust Universal CA,O=GeoTrust Inc.,C=US,CN=LuxTrust Global Root 2,O=LuxTrust S.A.,C=LU,CN=TWCA Global Root CA,OU=Root CA,O=TAIWAN-CA,C=TW,CN=Entrust Root Certification Authority - EC1,OU=(c) 2012 Entrust\, Inc. - for authorized use only,OU=See www.entrust.net/legal-terms,O=Entrust\, Inc.,C=US,CN=Equifax Secure Global eBusiness CA-1,O=Equifax Secure Inc.,C=US,CN=emSign ECC Root CA - C3,O=eMudhra Inc,OU=emSign PKI,C=US,CN=Omregistrering TEST,OU=Digital Udvikling og Design,O=UFST,L=Copenhagen,ST=Denmark,C=DK,CN=DigiCert Trusted Root G4,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=QuoVadis Root CA 2 G3,O=QuoVadis Limited,C=BM,OU=Go Daddy Class 2 Certification Authority,O=The Go Daddy Group\, Inc.,C=US,CN=TRUST2408 Systemtest XXXIV CA,O=TRUST2408,C=DK,CN=GTS Root R4,O=Google Trust Services LLC,C=US,CN=TDC OCES CA,O=TDC,C=DK,CN=GTS Root R3,O=Google Trust Services LLC,C=US,CN=GTS Root R2,O=Google Trust Services LLC,C=US,CN=GTS Root R1,O=Google Trust Services LLC,C=US,CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR,CN=D-TRUST Root Class 3 CA 2 2009,O=D-Trust GmbH,C=DE,CN=VeriSign Class 3 Public Primary Certification Authority - G5,OU=(c) 2006 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US,CN=VeriSign Class 3 Public Primary Certification Authority - G4,OU=(c) 2007 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US,CN=VeriSign Class 3 Public Primary Certification Authority - G3,OU=(c) 1999 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US,OU=VeriSign Trust Network,OU=(c) 1998 VeriSign\, Inc. - For authorized use only,OU=Class 3 Public Primary Certification Authority - G2,O=VeriSign\, Inc.,C=US,CN=AffirmTrust Commercial,O=AffirmTrust,C=US,CN=E-Tugra Certification Authority,OU=E-Tugra Sertifikasyon Merkezi,O=E-Tuğra EBG Bilişim Teknolojileri ve Hizmetleri A.Ş.,L=Ankara,C=TR,CN=DigiCert Assured ID Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=AffirmTrust Networking,O=AffirmTrust,C=US,CN=DigiCert Assured ID Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=AAA Certificate Services,O=Comodo CA Limited,L=Salford,ST=Greater Manchester,C=GB,CN=D-TRUST Root Class 3 CA 2 EV 2009,O=D-Trust GmbH,C=DE,CN=Baltimore CyberTrust Root,OU=CyberTrust,O=Baltimore,C=IE,1.2.840.113549.1.9.1=#1609706b6940736b2e6565,CN=EE Certification Centre Root CA,O=AS Sertifitseerimiskeskus,C=EE,CN=COMODO Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB,1.2.840.113549.1.9.1=#16177365727665722d6365727473407468617774652e636f6d,CN=Thawte Server CA,OU=Certification Services Division,O=Thawte Consulting cc,L=Cape Town,ST=Western Cape,C=ZA,CN=Equifax Secure eBusiness CA-1,O=Equifax Secure Inc.,C=US,CN=USERTrust ECC Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US,CN=QuoVadis Root CA 3,O=QuoVadis Limited,C=BM,CN=QuoVadis Root CA 2,O=QuoVadis Limited,C=BM,1.2.840.113549.1.9.1=#16197072656d69756d2d736572766572407468617774652e636f6d,CN=Thawte Premium Server CA,OU=Certification Services Division,O=Thawte Consulting cc,L=Cape Town,ST=Western Cape,C=ZA,CN=TWCA Root Certification Authority,OU=Root CA,O=TAIWAN-CA,C=TW,CN=UCA Global G2 Root,O=UniTrust,C=CN,CN=SSL.com Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US,CN=XRamp Global Certification Authority,O=XRamp Security Services Inc,OU=www.xrampsecurity.com,C=US,CN=IdenTrust Commercial Root CA 1,O=IdenTrust,C=US,CN=Izenpe.com,O=IZENPE S.A.,C=ES,CN=UCA Extended Validation Root,O=UniTrust,C=CN,1.2.840.113549.1.9.1=#1610696e666f40652d737a69676e6f2e6875,CN=Microsec e-Szigno Root CA 2009,O=Microsec Ltd.,L=Budapest,C=HU,CN=Staat der Nederlanden Root CA - G3,O=Staat der Nederlanden,C=NL,CN=Deutsche Telekom Root CA 2,OU=T-TeleSec Trust Center,O=Deutsche Telekom AG,C=DE,CN=Staat der Nederlanden Root CA - G2,O=Staat der Nederlanden,C=NL,CN=Cybertrust Global Root,O=Cybertrust\, Inc,CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE,OU=AC RAIZ FNMT-RCM,O=FNMT-RCM,C=ES,CN=DST Root CA X3,O=Digital Signature Trust Co.,CN=AffirmTrust Premium ECC,O=AffirmTrust,C=US,CN=Chambers of Commerce Root - 2008,O=AC Camerfirma S.A.,2.5.4.5=#1309413832373433323837,L=Madrid (see current address at www.camerfirma.com/address),C=EU,CN=NetLock Arany (Class Gold) Főtanúsítvány,OU=Tanúsítványkiadók (Certification Services),O=NetLock Kft.,L=Budapest,C=HU,CN=SSL.com Root Certification Authority RSA,O=SSL Corporation,L=Houston,ST=Texas,C=US,CN=Entrust Root Certification Authority,OU=(c) 2006 Entrust\, Inc.,OU=www.entrust.net/CPS is incorporated by reference,O=Entrust\, Inc.,C=US,CN=DigiCert Assured ID Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US,1.2.840.113549.1.9.1=#16197072656d69756d2d736572766572407468617774652e636f6d,CN=Thawte Premium Server CA,OU=Certification Services Division,O=Thawte Consulting cc,L=Cape Town,ST=Western Cape,C=ZA,OU=Class 3 Public Primary Certification Authority,O=VeriSign\, Inc.,C=US,CN=thawte Primary Root CA,OU=(c) 2006 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US,CN=TRUST2408 OCES CA I,O=TRUST2408,C=DK,CN=DigiCert Global Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=GeoTrust Global CA,O=GeoTrust Inc.,C=US,CN=OISTE WISeKey Global Root GB CA,OU=OISTE Foundation Endorsed,O=WISeKey,C=CH,CN=Certum Trusted Network CA 2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL,CN=COMODO RSA Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB,CN=TRUST2408 OCES CA II,O=TRUST2408,C=DK,CN=TRUST2408 Systemtest XIX CA,O=TRUST2408,C=DK,CN=IdenTrust Public Sector Root CA 1,O=IdenTrust,C=US,CN=Entrust.net Certification Authority (2048),OU=(c) 1999 Entrust.net Limited,OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.),O=Entrust.net,CN=Class 2 Primary CA,O=Certplus,C=FR,C=ES,O=ACCV,OU=PKIACCV,CN=ACCVRAIZ1,CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US,CN=Go Daddy Root Certificate Authority - G2,O=GoDaddy.com\, Inc.,L=Scottsdale,ST=Arizona,C=US,OU=Security Communication RootCA1,O=SECOM Trust.net,C=JP,CN=Certinomis - Root CA,OU=0002 433998903,O=Certinomis,C=FR,CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE,CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE,CN=Global Chambersign Root - 2008,O=AC Camerfirma S.A.,2.5.4.5=#1309413832373433323837,L=Madrid (see current address at www.camerfirma.com/address),C=EU,CN=Hongkong Post Root CA 3,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK,CN=Hongkong Post Root CA 1,O=Hongkong Post,C=HK,CN=TRUST2408 OCES Primary CA,O=TRUST2408,C=DK,CN=SSL.com EV Root Certification Authority RSA R2,O=SSL Corporation,L=Houston,ST=Texas,C=US,CN=Hellenic Academic and Research Institutions RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR,</wssp:TokenIssuer>
</wssp:SecurityToken>
</wssp:SupportedTokens>
</wssp:Integrity>
<wssp:MessageAge Age="60" xmlns:wssp="http://www.bea.com/wls90/security/policy"/>
</WL5G3N0:Policy>
<wsp:UsingPolicy WL5G3N2:Required="true"/>
<WL5G3N2:types>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejTypeAttestOpretInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejUdstyrTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USTilladelseTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USDispensationTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USDrivkraftTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKarrosseriTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejAnvendelseListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejArtAnvendelseListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejArtListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejBetegnelseHierarkiListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejBetegnelseOpretInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejCoCOpretInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejErklaeringOpretInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejOprettelseAnnullerInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USNormTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USSupplerendeKarrosseriTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejTekniskDataHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USFarveTypeListeHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejRegistreringHentInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USUkompletKoeretoejOpretInterface.xsd"/>
</xsd:schema>
<xsd:schema targetNamespace="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N0="http://schemas.xmlsoap.org/wsdl/" xmlns:WL5G3N1="http://skat.dk/dmr/2007/05/31/" xmlns:WL5G3N2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pfx0="http://skat.dk/dmr/2007/05/31/" xmlns:pfx1="http://docs.oasis-open.org/wsrf/rp-2" xmlns:pfx2="http://www.w3.org/2005/08/addressing" xmlns:pfx3="http://schemas.xmlsoap.org/soap/http" xmlns:pfx4="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://skat.dk/dmr/2007/05/31/" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejBlokeringAArsagTypeListeHentInterface.xsd"/>
</xsd:schema>
</WL5G3N2:types>
<WL5G3N2:message name="USKoeretoejUdstyrTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejUdstyrTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejErklaeringOpretServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejErklaeringOpret_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USSupplerendeKarrosseriTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USSupplerendeKarrosseriTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejCoCOpretServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejCoCOpret_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USTilladelseTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USTilladelseTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejBetegnelseHierarkiListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejBetegnelseHierarkiListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USDispensationTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USDispensationTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejBlokeringAarsagTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejBlokeringAarsagTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejTypeAttestOpretServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejTypeAttestOpret_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejTypeAttestOpretServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejTypeAttestOpret_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejUdstyrTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejUdstyrTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejTekniskDataHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejTekniskDataHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USFarveTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USFarveTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejErklaeringOpretServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejErklaeringOpret_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejBetegnelseHierarkiListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejBetegnelseHierarkiListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejOprettelseAnnullerServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejOprettelseAnnuller_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejArtAnvendelseListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejArtAnvendelseListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejBetegnelseOpretServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejBetegnelseOpret_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USNormTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USNormTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USDrivkraftTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USDrivkraftTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejBlokeringAarsagTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejBlokeringAarsagTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USUkompletKoeretoejOpretServiceResponse">
<WL5G3N2:part element="WL5G3N3:USUkompletKoeretoejOpret_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejTekniskDataHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejTekniskDataHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKarrosseriTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKarrosseriTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejAnvendelseListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejAnvendelseListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejAnvendelseListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejAnvendelseListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejOprettelseAnnullerServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejOprettelseAnnuller_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USFarveTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USFarveTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USSupplerendeKarrosseriTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USSupplerendeKarrosseriTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejArtListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejArtListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejRegistreringHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejRegistreringHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejRegistreringHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejRegistreringHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USDispensationTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USDispensationTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="KompenserTransResponse">
<WL5G3N2:part element="WL5G3N3:KompenserTransSvar" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejArtAnvendelseListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejArtAnvendelseListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USTilladelseTypeListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USTilladelseTypeListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USNormTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USNormTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKarrosseriTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKarrosseriTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="KompenserTransRequest">
<WL5G3N2:part element="WL5G3N3:KompenserTrans" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejBetegnelseOpretServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejBetegnelseOpret_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USDrivkraftTypeListeHentServiceRequest">
<WL5G3N2:part element="WL5G3N3:USDrivkraftTypeListeHent_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USUkompletKoeretoejOpretServiceRequest">
<WL5G3N2:part element="WL5G3N3:USUkompletKoeretoejOpret_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejArtListeHentServiceResponse">
<WL5G3N2:part element="WL5G3N3:USKoeretoejArtListeHent_O" name="Response"/>
</WL5G3N2:message>
<WL5G3N2:message name="USKoeretoejCoCOpretServiceRequest">
<WL5G3N2:part element="WL5G3N3:USKoeretoejCoCOpret_I" name="Request"/>
</WL5G3N2:message>
<WL5G3N2:portType name="USImportoerServiceType">
<WL5G3N2:operation name="getUSKoeretoejTypeAttestOpret">
<WL5G3N2:input message="WL5G3N3:USKoeretoejTypeAttestOpretServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejTypeAttestOpretServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getKompenserTrans">
<WL5G3N2:input message="WL5G3N3:KompenserTransRequest"/>
<WL5G3N2:output message="WL5G3N3:KompenserTransResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejUdstyrTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejUdstyrTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejUdstyrTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSTilladelseTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USTilladelseTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USTilladelseTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSDispensationTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USDispensationTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USDispensationTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSDrivkraftTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USDrivkraftTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USDrivkraftTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKarrosseriTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USKarrosseriTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKarrosseriTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejAnvendelseListeHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejAnvendelseListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejAnvendelseListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejArtAnvendelseListeHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejArtAnvendelseListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejArtAnvendelseListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejArtListeHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejArtListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejArtListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejBetegnelseHierarkiListeHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejBetegnelseHierarkiListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejBetegnelseHierarkiListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejBetegnelseOpret">
<WL5G3N2:input message="WL5G3N3:USKoeretoejBetegnelseOpretServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejBetegnelseOpretServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejCoCOpret">
<WL5G3N2:input message="WL5G3N3:USKoeretoejCoCOpretServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejCoCOpretServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejErklaeringOpret">
<WL5G3N2:input message="WL5G3N3:USKoeretoejErklaeringOpretServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejErklaeringOpretServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejOprettelseAnnuller">
<WL5G3N2:input message="WL5G3N3:USKoeretoejOprettelseAnnullerServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejOprettelseAnnullerServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSNormTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USNormTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USNormTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSSupplerendeKarrosseriTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USSupplerendeKarrosseriTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USSupplerendeKarrosseriTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejTekniskDataHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejTekniskDataHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejTekniskDataHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSFarveTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USFarveTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USFarveTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejRegistreringHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejRegistreringHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejRegistreringHentServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSUkompletKoeretoejOpret">
<WL5G3N2:input message="WL5G3N3:USUkompletKoeretoejOpretServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USUkompletKoeretoejOpretServiceResponse"/>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejBlokeringAarsagTypeListeHent">
<WL5G3N2:input message="WL5G3N3:USKoeretoejBlokeringAarsagTypeListeHentServiceRequest"/>
<WL5G3N2:output message="WL5G3N3:USKoeretoejBlokeringAarsagTypeListeHentServiceResponse"/>
</WL5G3N2:operation>
</WL5G3N2:portType>
<WL5G3N2:binding name="Binding" type="WL5G3N3:USImportoerServiceType">
<WL5G3N4:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<WL5G3N2:operation name="getUSKoeretoejTypeAttestOpret">
<WL5G3N4:operation soapAction="getUSKoeretoejTypeAttestOpret"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getKompenserTrans">
<WL5G3N4:operation soapAction="getKompenserTrans"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejUdstyrTypeListeHent">
<WL5G3N4:operation soapAction="getUSKoeretoejUdstyrTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSTilladelseTypeListeHent">
<WL5G3N4:operation soapAction="getUSTilladelseTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSDispensationTypeListeHent">
<WL5G3N4:operation soapAction="getUSDispensationTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSDrivkraftTypeListeHent">
<WL5G3N4:operation soapAction="getUSDrivkraftTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKarrosseriTypeListeHent">
<WL5G3N4:operation soapAction="getUSKarrosseriTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejAnvendelseListeHent">
<WL5G3N4:operation soapAction="getUSKoeretoejAnvendelseListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejArtAnvendelseListeHent">
<WL5G3N4:operation soapAction="getUSKoeretoejArtAnvendelseListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejArtListeHent">
<WL5G3N4:operation soapAction="getUSKoeretoejArtListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejBetegnelseHierarkiListeHent">
<WL5G3N4:operation soapAction="getUSKoeretoejBetegnelseHierarkiListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejBetegnelseOpret">
<WL5G3N4:operation soapAction="getUSKoeretoejBetegnelseOpret"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejCoCOpret">
<WL5G3N4:operation soapAction="getUSKoeretoejCoCOpret"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejErklaeringOpret">
<WL5G3N4:operation soapAction="getUSKoeretoejErklaeringOpret"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejOprettelseAnnuller">
<WL5G3N4:operation soapAction="getUSKoeretoejOprettelseAnnuller"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSNormTypeListeHent">
<WL5G3N4:operation soapAction="getUSNormTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSSupplerendeKarrosseriTypeListeHent">
<WL5G3N4:operation soapAction="getUSSupplerendeKarrosseriTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejTekniskDataHent">
<WL5G3N4:operation soapAction="getUSKoeretoejTekniskDataHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSFarveTypeListeHent">
<WL5G3N4:operation soapAction="getUSFarveTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejRegistreringHent">
<WL5G3N4:operation soapAction="getUSKoeretoejRegistreringHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSUkompletKoeretoejOpret">
<WL5G3N4:operation soapAction="getUSUkompletKoeretoejOpret"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
<WL5G3N2:operation name="getUSKoeretoejBlokeringAarsagTypeListeHent">
<WL5G3N4:operation soapAction="getUSKoeretoejBlokeringAarsagTypeListeHent"/>
<WL5G3N2:input>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
<wsp:Policy>
<wsp:PolicyReference URI="#SkatEsbAuthentication"/>
</wsp:Policy>
</WL5G3N2:input>
<WL5G3N2:output>
<WL5G3N4:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="literal"/>
</WL5G3N2:output>
</WL5G3N2:operation>
</WL5G3N2:binding>
<WL5G3N2:service name="USImportoerService">
<WL5G3N2:port binding="WL5G3N3:Binding" name="Port">
<WL5G3N4:address location="https://available.on.request.dk:443/B2B/USImportoer/Service"/>
<wsp:Policy>
<wsp:PolicyReference URI="#Sign"/>
</wsp:Policy>
</WL5G3N2:port>
</WL5G3N2:service>
</WL5G3N2:definitions>]]></con:content><con:type>http://schemas.xmlsoap.org/wsdl/</con:type></con:part><con:part><con:url>https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejTypeAttestOpretInterface.xsd</con:url><con:content><![CDATA[<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://skat.dk/dmr/2007/05/31/" version="1.0" xmlns:dmr="http://skat.dk/dmr/2007/05/31/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>At kunne oprette et køretøj på
basis af en typeattest.</xs:documentation>
<xs:documentation>r20956</xs:documentation>
</xs:annotation>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejTypeAttestOpret_IType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejTypeAttestOpret_OType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KompenserTransType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KompenserTransSvarType.xsd"/>
<xs:element name="USKoeretoejTypeAttestOpretInterface" type="dmr:USKoeretoejTypeAttestOpretInterfaceType"/>
<xs:complexType name="USKoeretoejTypeAttestOpretInterfaceType">
<xs:choice>
<xs:element ref="dmr:USKoeretoejTypeAttestOpret_I"/>
<xs:element ref="dmr:USKoeretoejTypeAttestOpret_O"/>
<xs:element ref="dmr:KompenserTrans"/>
<xs:element ref="dmr:KompenserTransSvar"/>
</xs:choice>
</xs:complexType>
</xs:schema>]]></con:content><con:type>http://www.w3.org/2001/XMLSchema</con:type></con:part><con:part><con:url>https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//USKoeretoejTypeAttestOpret_IType.xsd</con:url><con:content><![CDATA[<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://skat.dk/dmr/2007/05/31/" version="1.0" xmlns:dmr="http://skat.dk/dmr/2007/05/31/" xmlns:kontekst="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation/>
<xs:documentation>r20956</xs:documentation>
</xs:annotation>
<xs:import namespace="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//HovedOplysninger.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejOplysning.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejMotor.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejMiljoeOplysning.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TypeAttestVariant.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TypeAttest.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//Virksomhed.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejFarveStrukturType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejUdstyrSamlingStrukturType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//PrisOplysningerStrukturType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejAnvendelseStrukturType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejSupplerendeKarrosseriSamlingStrukturType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//DispensationTypeSamlingStrukturType.xsd"/>
<xs:element name="USKoeretoejTypeAttestOpret_I">
<xs:complexType>
<xs:complexContent>
<xs:extension base="dmr:USKoeretoejTypeAttestOpret_IType">
<xs:attribute name="revision">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="r20956"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:complexType name="USKoeretoejTypeAttestOpret_IType">
<xs:sequence>
<xs:element ref="kontekst:HovedOplysninger"/>
<xs:element ref="dmr:KoeretoejOplysningStelNummer"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejFarveStruktur"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejUdstyrSamlingStruktur"/>
<xs:element minOccurs="0" ref="dmr:PrisOplysningerStruktur"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejOplysningModelAar"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejOplysningTilkoblingMulighed"/>
<xs:element ref="dmr:KoeretoejOplysning30PctVarevogn"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejOplysningNCAPTest"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejAnvendelseStruktur"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejSupplerendeKarrosseriSamlingStruktur"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejOplysningVejvenligLuftaffjedring"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejMotorFuelmode"/>
<xs:element minOccurs="0" ref="dmr:KoeretoejMiljoeOplysningEftermonteretPartikelfilter"/>
<xs:element minOccurs="0" ref="dmr:DispensationTypeSamlingStruktur"/>
<xs:element name="TypeGodkendelseAttest">
<xs:complexType>
<xs:sequence>
<xs:element ref="dmr:TypeAttestVariantNummer"/>
<xs:element ref="dmr:TypeAttestTypeAnmeldelseNummer"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" ref="dmr:VirksomhedSENummer"/>
</xs:sequence>
</xs:complexType>
</xs:schema>]]></con:content><con:type>http://www.w3.org/2001/XMLSchema</con:type></con:part><con:part><con:url>https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//HovedOplysninger.xsd</con:url><con:content><![CDATA[<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" version="1.0" xmlns:tsk="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TransaktionIdentifikator.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TransaktionTid.xsd"/>
<!--HovedOplysninger-->
<xs:element name="HovedOplysninger" type="tsk:HovedOplysningerType"/>
<xs:complexType name="HovedOplysningerType">
<xs:sequence>
<xs:element minOccurs="0" ref="tsk:TransaktionIdentifikator"/>
<xs:element minOccurs="0" ref="tsk:TransaktionTid"/>
</xs:sequence>
</xs:complexType>
</xs:schema>]]></con:content><con:type>http://www.w3.org/2001/XMLSchema</con:type></con:part><con:part><con:url>https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TransaktionIdentifikator.xsd</con:url><con:content><![CDATA[<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" version="1.0" xmlns:tsk="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="TransaktionIdentifikator" type="tsk:TransaktionIdentifikatorType">
<xs:annotation>
<xs:documentation>Felt der giver kalder af service mulighed
for at binde sit eget transaktionsspor sammen med den
kaldte webservice. Når brug af dette felt
understøttes af en service, så
vil værdier af en
TransaktionIdentifikator der gives ved et kald af
service blive returneret ved svar fra samme service. Der
er ikke nogen bindinger på hvordan
TransaktionsIdentifikatoren skal udformes, men det er
hensigten at det kaldende system selv skal administrere
anvendelsen af unikke identifikationer af sine kald,
så svar kan matches til kald.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:simpleType name="TransaktionIdentifikatorType">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>]]></con:content><con:type>http://www.w3.org/2001/XMLSchema</con:type></con:part><con:part><con:url>https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TransaktionTid.xsd</con:url><con:content><![CDATA[<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" version="1.0" xmlns:tsk="http://rep.oio.dk/skat.dk/basis/kontekst/xml/schemas/2006/09/01/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="TransaktionTid" type="xs:dateTime">
<xs:annotation>
<xs:documentation>Felt der giver kalder af service mulighed
for at tidsstemple sit eget transaktionsspor
uafhængigt af kaldte systems
interne tid. Når brug af dette felt
understøttes af en service, så vil
værdier af en TransaktionTid der
gives ved et kald af service blive
returneret ved svar fra samme service. Der er ikke nogen
bindinger på hvordan TransaktionTid skal udformes,
udover at det er et xs:dateTime, men det er hensigten at
det kaldende system kan anvende tidsstempel til hurtigt
at kunne udsøge servicekald i egne loggingmekanismer.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>]]></con:content><con:type>http://www.w3.org/2001/XMLSchema</con:type></con:part><con:part><con:url>https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejOplysning.xsd</con:url><con:content><![CDATA[<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://skat.dk/dmr/2007/05/31/" version="1.0" xmlns:dmr="http://skat.dk/dmr/2007/05/31/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Et hvert registreringspligtigt
køretøj, skal forsynes med
nummerplader og der skal udstedes en
registreringsattest. Som en del af indholdet på en
registreringsattest og som en del af fastsættelse af
diverse afgifter m.v. ligger der en del
informationer, som skal gemmes i DMR for at de
rette beslutninger kan foretages og de rette
informationer kan udskrives. Et køretøjs
oplysninger kan ændres over tid - hvilket betyder, at
der til et køretøj kan være
registreret flere samlede oplysninger for
køretøjet, men der vil altid være et
tidsmæssigt gyldigt køretøj. Der er ikke
noget datafelt til henholdsvis Last og
Nyttelast. Det er værdier, der skal
fremgå af reg.att., men de kan dog beregnes. Last =
Totalvægt minus Egenvægt. Nytte-last =
Totalvægt minus KøreklarVægt.</xs:documentation>
</xs:annotation>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TalHelType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TekstKortType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TekstLangType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//DatoType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejstandType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//AArstalType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//BolskType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejOplysningOprettetUdFraType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//KoeretoejOplysningStatusType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//DatoTidType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//StelNummerType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//TalFlydendeType.xsd"/>
<xs:include schemaLocation="https://available.on.request.dk:443/B2B/USImportoer/Service?WSDL//AkselTypeType.xsd"/>
<xs:element name="KoeretoejOplysningAkselAntal" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Er det antal aksler, der er på køretøj.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningTraekkendeAksler" type="dmr:TekstKortType">
<xs:annotation>
<xs:documentation>Det akselnummer, hvorpå der
trækkes. Bemærk at der godt
kan registreres flere trækkende
aksler - så er der blot tale om flere forekomster
af objekter (rækker) i denne
klasse. Akselnummeret tælles fra
første aksel med tallet én regnet ud fra
kørselsretningen.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningEgenVaegt" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Egenvægt er vægten af et
køretøj med tilbehør, som
køretøjet normalt medfører. Vægten
af driftsmidler herunder brændstof,
smøreolie og kølevand samt
fører medregnes ikke til vægten. Egenvægt
bruges i forbindelse med opkrævning
af vægtafgift for visse art/anvendelser.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningFaelgDaek" type="dmr:TekstLangType">
<xs:annotation>
<xs:documentation>Et fritekstfelt for fælge og
dæk. Dokumentet importeres direkte
fra CoC dokumentet.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningFoersteRegistreringDato" type="dmr:DatoType">
<xs:annotation>
<xs:documentation>Er datoen for hvornår et
køretøj første gang er
registreret enten i Danmark eller i udlandet
(ved brugt importerede køretøjet)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningKommentar" type="dmr:TekstLangType">
<xs:annotation>
<xs:documentation>En kommentar til køretøj oplysning.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningKoereklarVaegtMaksimum" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Køretøjets køreklare
vægt anføres (i kg).
Køreklar vægt er køretøjets
vægt i køreklar stand som
defineret i EF-direktiverne om typegodkendelse: 70/156
om biler og påhængskøretøjer hertil,
2002/24 om knallerter og motorcykler mv.
samt 2003/37 om traktorer og
påhængskøretøjer hertil.
Køreklar vægt omfatter
således vægten af føreren, idet den dog
for knallerter, motorcykler og
trehjulede biler samt lette firehjulede
biler (quadricykler) omfattet af direktiv 2002/24 er
uden vægten af føreren. Køreklar
vægt omfatter vægten af
tilbehør, som køretøjet normalt
medfører, samt vægten af
driftsmidler, herunder brændstof, smøreolie og
kølevand. Brændstofbeholderen
skal være fyldt til 90 % af det af
fabrikanten opgivne volumen, og de øvrige
væskeholdige systemer (undtagen
systemer til spildevand) skal være
fyldt til 100 % af det opgivne volumen. Vægten af
føreren sættes til 75 kg. For store
personbiler (busser) omfatter
køreklar vægt tillige vægten af ét
personalemedlem (75 kg), hvis bilen er forsynet med et
personalesæde (fx rejseledersæde). Hvis der er
tale om personbiler eller andre
køretøjer kun med én køreklar
vægt, så anvendes kun
køreklarvægtminimum attributten
som gældende, og køreklar vægt maksimum
anvendes ikke for den forekomst.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningKoereklarVaegtMinimum" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Køretøjets køreklare
vægt anføres (i kg).
Køreklar vægt er køretøjets
vægt i køreklar stand som
defineret i EF-direktiverne om typegodkendelse: 70/156
om biler og påhængskøretøjer hertil,
2002/24 om knallerter og motorcykler mv.
samt 2003/37 om traktorer og
påhængskøretøjer hertil.
Køreklar vægt omfatter
således vægten af føreren, idet den dog
for knallerter, motorcykler og
trehjulede biler samt lette firehjulede
biler (quadricykler) omfattet af direktiv 2002/24 er
uden vægten af føreren. Køreklar
vægt omfatter vægten af
tilbehør, som køretøjet normalt
medfører, samt vægten af
driftsmidler, herunder brændstof, smøreolie og
kølevand. Brændstofbeholderen
skal være fyldt til 90 % af det af
fabrikanten opgivne volumen, og de øvrige
væskeholdige systemer (undtagen
systemer til spildevand) skal være
fyldt til 100 % af det opgivne volumen. Vægten af
føreren sættes til 75 kg. For store
personbiler (busser) omfatter
køreklar vægt tillige vægten af ét
personalemedlem (75 kg), hvis bilen er forsynet med et
personalesæde (fx rejseledersæde). Hvis der er
tale om personbiler eller andre
køretøjer kun med én køreklar
vægt, så anvendes denne attribut som
gældende, og køreklar
vægt maksimum anvendes ikke for den forekomst.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningKoeretoejstand" type="dmr:KoeretoejstandType">
<xs:annotation>
<xs:documentation>Benyttes til at angive
køretøjets stand i forbindelse
med Toldsynsrapporten.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningMaksimumHastighed" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Køretøjets oplyste maksimale
hastighed (modtaget fra COC dokumentet)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningModelAar" type="dmr:AarstalType">
<xs:annotation>
<xs:documentation>Stammer fra certifikat fabriksnyt
køretøj, angiver året,
hvor modellen blev markedsført. en ford
focus 2003 kan sagtens blive solgt som fabriksnyt
køretøj i 2004 - modelåret vil være 2003.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningNCAPTest" type="dmr:BolskType">
<xs:annotation>
<xs:documentation>Denne værdi angiver om
køretøjet har bestået en
EURO NCAP test med mindst 5 stjerner.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningOprettetUdFra" type="dmr:KoeretoejOplysningOprettetUdFraType">
<xs:annotation>
<xs:documentation>Angiver hvordan køretøjer blev
oprettet i systemet.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningPassagerAntal" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Er det antal passager der må
være i erhvervskøretøjer.
Dette flag angiver antal siddepladser.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningPaahaengVognTotalVaegt" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Påhængsvognens totalvægt er
et felt til Lastbil til godstransport,
som skal være udfyldt i forbindelse
med, at der er tilkoblingsanordning på lastbilen.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningSiddepladserMaksimum" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Kan være udfyldt, hvis der er flere
udførelser tilknyttet køretøj.
SiddepladserMinimum skal være udfyldt.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningSiddepladserMinimum" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Antal siddepladser inklusive førerens
plads Køretøjets antal siddepladser inklusive
førerens plads anføres.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningSkammelBelastning" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Er udtryk for hvor mange kg. skammelen
på en Lastbil til sættevogn
må udsættes for.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningSkatteAkselAntal" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Er en påhængs- eller
sættevogns akselantal til beregning
af vægtafgift og vejafgift.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningSkatteAkselTryk" type="dmr:TalHelType">
<xs:annotation>
<xs:documentation>Er en påhængsvogns
totalvægt eller akseltryk på
en sættevogn eller en kærre.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningStatus" type="dmr:KoeretoejOplysningStatusType">
<xs:annotation>
<xs:documentation>Beskriver status for et givet køretøj.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KoeretoejOplysningStatusDato" type="dmr:DatoTidType">
<xs:annotation>
<xs:documentation>En registrering af det præcise
tidspunkt, hvor køretøjet
skiftede status.</xs:documentation>