aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/iis.xsd
blob: b43bff42bc268835add84106331c3d282a79818b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->


<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
          xmlns:xse="http://wixtoolset.org/schemas/XmlSchemaExtension"
         xmlns:html="http://www.w3.org/1999/xhtml"
          xmlns:wxs="http://wixtoolset.org/schemas/v4/wxs"
    targetNamespace="http://wixtoolset.org/schemas/v4/wxs/iis"
              xmlns="http://wixtoolset.org/schemas/v4/wxs/iis">
  <xs:annotation>
    <xs:documentation>
      The source code schema for the WiX Toolset Internet Information Services Extension.
    </xs:documentation>
  </xs:annotation>

  <xs:import namespace="http://wixtoolset.org/schemas/v4/wxs" />

  <xs:element name="WebDirProperties">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
      </xs:appinfo>
      <xs:documentation>
        WebDirProperties used by one or more WebSites. Lists properties common to IIS web sites and vroots. Corresponding properties can be viewed through the IIS Manager snap-in. One property entry can be reused by multiple sites or vroots using the Id field as a reference, using WebVirtualDir.DirProperties, WebSite.DirProperties, or WebDir.DirProperties.
      </xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the WebDirProperties. The Id is required when the parent is a Fragment, Module, or Package. Otherwise, Id is optional and if not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Read" type="wxs:YesNoTypeUnion" />
      <xs:attribute name="Write" type="wxs:YesNoTypeUnion" />
      <xs:attribute name="Script" type="wxs:YesNoTypeUnion" />
      <xs:attribute name="Execute" type="wxs:YesNoTypeUnion" />
      <xs:attribute name="AnonymousAccess" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Enable Anonymous Access checkbox, which maps anonymous users to a Windows user account. When setting this to 'yes' you should also provide the user account using the AnonymousUser attribute, and determine what setting to use for the IIsControlledPassword attribute. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AnonymousUser" type="xs:string">
        <xs:annotation>
          <xs:documentation>Reference to the Id attribute on the User element to be used as the anonymous user for the directory. See the User element for more information.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="IIsControlledPassword" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets whether IIS should control the password used for the Windows account specified in the AnonymousUser attribute. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WindowsAuthentication" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Windows Authentication option, which enables integrated Windows authentication to be used on the site. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="DigestAuthentication" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Digest Authentication option, which allows using digest authentication with domain user accounts. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="BasicAuthentication" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Basic Authentication option, which allows clients to provide credentials in plaintext over the wire. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="PassportAuthentication" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Passport Authentication option, which allows clients to provide credentials via a .Net Passport account. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="LogVisits" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets whether visits to this site should be logged. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Index" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Index Resource option, which specifies whether this web directory should be indexed. Defaults to 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="DefaultDocuments" type="xs:string">
        <xs:annotation>
          <xs:documentation>The list of default documents to set for this web directory, in comma-delimited format.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AspDetailedError" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the option for whether to send detailed ASP errors back to the client on script error. Default is 'no.'</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="HttpExpires" type="xs:string">
        <xs:annotation>
          <xs:documentation>Value to set the HttpExpires attribute to for a Web Dir in the metabase.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="CacheControlMaxAge" type="xs:nonNegativeInteger">
        <xs:annotation>
          <xs:documentation>Integer value specifying the cache control maximum age value.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="CacheControlCustom" type="xs:string">
        <xs:annotation>
          <xs:documentation>Custom HTTP 1.1 cache control directives.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ClearCustomError" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Specifies whether IIs will return custom errors for this directory.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AccessSSL" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>A value of true indicates that file access requires SSL file permission processing, with or without a client certificate. This corresponds to AccessSSL flag for AccessSSLFlags IIS metabase property.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AccessSSL128" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>A value of true indicates that file access requires SSL file permission processing with a minimum key size of 128 bits, with or without a client certificate. This corresponds to AccessSSL128 flag for AccessSSLFlags IIS metabase property.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AccessSSLMapCert" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>This corresponds to AccessSSLMapCert flag for AccessSSLFlags IIS metabase property.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AccessSSLNegotiateCert" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>This corresponds to AccessSSLNegotiateCert flag for AccessSSLFlags IIS metabase property.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AccessSSLRequireCert" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>This corresponds to AccessSSLRequireCert flag for AccessSSLFlags IIS metabase property.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AuthenticationProviders" type="xs:string">
        <xs:annotation>
          <xs:documentation>Comma delimited list, in order of precedence, of Windows authentication providers that IIS will attempt to use: NTLM, Kerberos, Negotiate, and others.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebError">
    <xs:annotation>
      <xs:documentation>Custom Web Errors used by WebSites and Virtual Directories.</xs:documentation>
      <xs:appinfo>
        <xse:remarks>
          You can only use error code and sub code combinations which are supported by IIS.  Attempting to set a custom error for
          an error code and sub code combination that is not supported by IIS (in the default list of error codes) will result in
          an installation failure.
        </xse:remarks>
      </xs:appinfo>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="ErrorCode" use="required" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>HTTP 1.1 error code.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="SubCode" use="required" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Error sub code.  Set to 0 to get the wild card "*".</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="File" type="xs:string">
        <xs:annotation>
          <xs:documentation>File to be sent to the client for this error code and sub code.  This can be formatted.  For example: [#FileId].</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="URL" type="xs:string">
        <xs:annotation>
          <xs:documentation>URL to be sent to the client for this error code and sub code.  This can be formatted.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="HttpHeader">
    <xs:annotation>
      <xs:documentation>Custom HTTP Header definition for IIS resources such as WebSite and WebVirtualDir.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Primary key for custom HTTP Header entry. This will default to the Name attribute.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Name" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Name of the custom HTTP Header.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Value" type="xs:string">
        <xs:annotation>
          <xs:documentation>Value for the custom HTTP Header. This attribute can contain a formatted string that is processed at install time to insert the values of properties using [PropertyName] syntax. Also supported are environment variables, file installation paths, and component installation directories; see <a href="http://msdn.microsoft.com/library/aa368609.aspx" target="_blank">Formatted</a> for details.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="MimeMap">
    <xs:annotation>
      <xs:documentation>MimeMap definition for IIS resources.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Id for the MimeMap. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Type" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Mime-type covered by the MimeMap.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Extension" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Extension covered by the MimeMap. Must begin with a dot.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebFilter">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
      </xs:appinfo>
      <xs:documentation>IIs Filter for a Component or Web Site</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>The unique Id for the web filter. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Name" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>The name of the filter to be used in IIS.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Path" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>
            The path of the filter executable file.
            This should usually be a value like '[!FileId]', where 'FileId' is the file identifier
            of the filter executable file.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebSite" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Specifies the parent website for this filter (if there is one).
            If this is a global filter, then this attribute should not be specified.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Description" type="xs:string">
        <xs:annotation>
          <xs:documentation>Description of the filter.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Flags" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Sets the MD_FILTER_FLAGS metabase key for the filter. This must be an integer. See MSDN 'FilterFlags' documentation for more details.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="LoadOrder" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            The legal values are "first", "last", or a number.
            If a number is specified, it must be greater than 0.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebApplicationExtension">
    <xs:annotation>
      <xs:documentation>Extension for WebApplication</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Executable" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Usually a Property that resolves to short file name path.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Extension" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Extension being registered. Do not prefix with a '.' (e.g. you should use "html", not ".html").
            To register for all extensions, use Extension="*". To register a wildcard application map (which
            handles all requests, even those for directories or files with no extension) omit the Extension
            attribute completely.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Verbs" type="xs:string">
      </xs:attribute>
      <xs:attribute name="Script" type="wxs:YesNoTypeUnion">
      </xs:attribute>
      <xs:attribute name="CheckPath" type="wxs:YesNoTypeUnion">
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebAppPool">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
      </xs:appinfo>
      <xs:documentation>IIS Application Pool</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="RecycleTime" />
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Id of the AppPool. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Name" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Name of the AppPool to be shown in IIs.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="User" type="xs:string">
        <xs:annotation>
          <xs:documentation>User account to run the AppPool as. To use this, you must set the Identity attribute to 'other'.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="RecycleMinutes" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>How often, in minutes, you want the AppPool to be recycled.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="RecycleRequests" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>How often, in requests, you want the AppPool to be recycled.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="VirtualMemory" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Specifies the amount of virtual memory (in KB) that a worker process can use before the worker process recycles. The maximum value supported for this attribute is 4,294,967 KB.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="PrivateMemory" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Specifies the amount of private memory (in KB) that a worker process can use before the worker process recycles. The maximum value supported for this attribute is 4,294,967 KB.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="IdleTimeout" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Shutdown worker process after being idle for (time in minutes).</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="QueueLimit" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Limit the kernel request queue (number of requests).</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="MaxCpuUsage" type="PercentType">
        <xs:annotation>
          <xs:documentation>Maximum CPU usage (percent).</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="RefreshCpu" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Refresh CPU usage numbers (in minutes).</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="CpuAction">
        <xs:annotation>
          <xs:documentation>Action taken when CPU exceeds maximum CPU use (as defined with MaxCpuUsage and RefreshCpu).</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:enumeration value="none"/>
            <xs:enumeration value="shutdown"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="MaxWorkerProcesses" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Maximum number of worker processes.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Identity">
        <xs:annotation>
          <xs:documentation>Identity you want the AppPool to run under (applicationPoolIdentity is only available on IIS7). Use the 'other' value in conjunction with the User attribute to specify non-standard user.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:enumeration value="networkService"/>
            <xs:enumeration value="localService"/>
            <xs:enumeration value="localSystem"/>
            <xs:enumeration value="other"/>
            <xs:enumeration value="applicationPoolIdentity"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="ManagedPipelineMode" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Specifies the request-processing mode that is used to process requests for managed content.  Only available on IIS7, ignored on IIS6.
            See https://learn.microsoft.com/en-us/iis/configuration/system.applicationHost/applicationPools/applicationPoolDefaults/ for valid values.
            This attribute may be set via a formatted Property (e.g. [MyProperty]).
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ManagedRuntimeVersion" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Specifies the .NET Framework version to be used by the application pool.  Only available on IIS7, ignored on IIS6.
            See https://learn.microsoft.com/en-us/iis/configuration/system.applicationHost/applicationPools/applicationPoolDefaults/ for valid values.
            This attribute may be set via a formatted Property (e.g. [MyProperty]).
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="RecycleTime">
    <xs:annotation>
      <xs:documentation>IIS6 Application Pool Recycle Times on 24 hour clock.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Value" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:pattern value="\d{1,2}:\d{2}"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="Certificate">
    <xs:annotation>
      <xs:documentation>
        Used to install and uninstall certificates.
      </xs:documentation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
        <xse:seeAlso ref="CertificateRef"/>
      </xs:appinfo>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Unique identifier for this certificate in the installation package. If the Id is not specified, it will be generated.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Name" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>
            Name of the certificate that will be installed or uninstalled in the specified store.
            This attribute may be set via a formatted Property (e.g. [MyProperty]).
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="StoreName" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:enumeration value="ca">
              <xs:annotation>
                <xs:documentation>
                  Contains the certificates of certificate authorities that the user trusts to issue certificates to others. Certificates in these stores are normally supplied with the operating system or by the user's network administrator.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="my">
              <xs:annotation>
                <xs:documentation>
                  Use the "personal" value instead.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="personal">
              <xs:annotation>
                <xs:documentation>
                  Contains personal certificates. These certificates will usually have an associated private key. This store is often
                  referred to as the "MY" certificate store.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="request"/>
            <xs:enumeration value="root">
              <xs:annotation>
                <xs:documentation>
                  Contains the certificates of certificate authorities that the user trusts to issue certificates to others. Certificates in these stores are normally supplied with the operating system or by the user's network administrator. Certificates in this store are typically self-signed.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="otherPeople">
              <xs:annotation>
                <xs:documentation>
                  Contains the certificates of those that the user normally sends enveloped messages to or receives signed messages from.
                  See <a href="http://msdn.microsoft.com/library/aa388160.aspx" target="_blank">MSDN documentation</a> for more information.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="trustedPeople">
              <xs:annotation>
                <xs:documentation>
                  Contains the certificates of those directly trusted people and resources.
                  See <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.storename.aspx" target="_blank">MSDN documentation</a> for more information.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="trustedPublisher">
              <xs:annotation>
                <xs:documentation>
                  Contains the certificates of those publishers who are trusted.
                  See <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.x509certificates.storename.aspx" target="_blank">MSDN documentation</a> for more information.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="StoreLocation" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:enumeration value="currentUser"/>
            <xs:enumeration value="localMachine"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <!-- The Overwrite attribute is not implemented at this time.
      <xs:attribute name="Overwrite" type="wxs:YesNoTypeUnion" />
      -->
      <xs:attribute name="Request" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>
            This attribute controls whether the CertificatePath attribute is a path to a certificate file (Request=&apos;no&apos;) or the
            certificate authority to request the certificate from (Request=&apos;yes&apos;).
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="BinaryRef" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Reference to a Binary element that will store the certificate as a stream inside the package.  This attribute cannot be specified with
            the CertificatePath attribute.
          </xs:documentation>
          <xs:appinfo>
            <xse:seeAlso ref="Binary"/>
          </xs:appinfo>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="CertificatePath" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            If the Request attribute is "no" then this attribute is the path to the certificate file outside of the package.
            If the Request attribute is "yes" then this atribute is the certificate authority to request the certificate from.
            This attribute may be set via a formatted Property (e.g. [MyProperty]).
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="PFXPassword" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            If the Binary stream or path to the file outside of the package is a password protected PFX file, the password for that
            PFX must be specified here.  This attribute may be set via a formatted Property (e.g. [MyProperty]).
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Vital" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>
            Indicates whether to fail the install if the certificate fails to install. The default is "yes".
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="CertificateRef">
    <xs:annotation>
      <xs:documentation>
        Associates a certificate with the parent WebSite. The Certificate element should be
        in the same Component as the parent WebSite.
      </xs:documentation>
      <xs:appinfo>
        <xse:seeAlso ref="Certificate"/>
      </xs:appinfo>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>
            The identifier of the referenced Certificate.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebProperty">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
        <xse:remarks>
          Here is an explanation of the acceptable values for each property and their meaning:
          <html:ul>
            <html:li>
              For the Ids IIs5IsolationMode and LogInUTF8, no value should be specified since
              the presence of this property indicates that the setting should be set.
            </html:li>
            <html:li>
              For the MaxGlobalBandwidth Id, the value should be specified in kilobytes.  The
              value should be a base 10 number.
            </html:li>
            <html:li>
              ETagChangeNumber sets the machine-specific portion of ETag as a number. This value,
              when synchronized across servers in a web farm, allows the web farm to return an
              identical ETag for a given resource regardless of the server that handled the
              request.  The value should be a base 10 number.
            </html:li>
          </html:ul>
        </xse:remarks>
      </xs:appinfo>
      <xs:documentation>IIS Properties</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:string">
            <xs:enumeration value="ETagChangeNumber"/>
            <xs:enumeration value="IIs5IsolationMode"/>
            <xs:enumeration value="MaxGlobalBandwidth"/>
            <xs:enumeration value="LogInUTF8"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="Value" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            The value to be used for the WebProperty specified in the Id attribute.  See
            the remarks section for information on acceptable values for each Id.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebApplication">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
      </xs:appinfo>
      <xs:documentation>Defines properties for a web application. These properties can be used for more than one application defined in a web site or vroot, by defining this element in a common location and referring to it by setting the WebApplication attribute of the WebSite and WebVirtualDir elements.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="WebApplicationExtension" />
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the web application. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Name" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Sets the name of this application.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Isolation">
        <xs:annotation>
          <xs:documentation>
            Sets the application isolation level for this application for pre-IIS 6 applications.
          </xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:NMTOKEN">
            <xs:enumeration value="low">
              <xs:annotation>
                <xs:documentation>
                  Means the application executes within the IIS process.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="medium">
              <xs:annotation>
                <xs:documentation>
                  Executes pooled in a separate process.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="high">
              <xs:annotation>
                <xs:documentation>
                  Means execution alone in a separate process.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="AllowSessions" type="wxs:YesNoDefaultTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the Enable Session State option. When enabled, you can set the session timeout using the SessionTimeout attribute.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="SessionTimeout" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Sets the timeout value for sessions in minutes.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Buffer" type="wxs:YesNoDefaultTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the option that enables response buffering in the application, which allows ASP script to set response headers anywhere in the script.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ParentPaths" type="wxs:YesNoDefaultTypeUnion">
        <xs:annotation>
          <xs:documentation>Sets the parent paths option, which allows a client to use relative paths to reach parent directories from this application.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="DefaultScript">
        <xs:annotation>
          <xs:documentation>Sets the default script language for the site.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:NMTOKEN">
            <xs:enumeration value="VBScript"/>
            <xs:enumeration value="JScript"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:attribute name="ScriptTimeout" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Sets the timeout value in seconds for executing ASP scripts.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ServerDebugging" type="wxs:YesNoDefaultTypeUnion">
        <xs:annotation>
          <xs:documentation>Enable ASP server-side script debugging.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ClientDebugging" type="wxs:YesNoDefaultTypeUnion">
        <xs:annotation>
          <xs:documentation>Enable ASP client-side script debugging.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebAppPool" type="xs:string">
        <xs:annotation>
          <xs:documentation>References the Id attribute of a WebAppPool element to use as the application pool for this application in IIS 6 applications.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebAddress">
    <xs:annotation>
      <xs:documentation>WebAddress for WebSite</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the web application. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="IP" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            The IP address to locate an existing WebSite or create a new WebSite. When the WebAddress is part of a WebSite element
            used to locate an existing web site the following rules are used:
            <html:ul>
              <html:li>When this attribute is not specified only the "All Unassigned" IP address will be located.</html:li>
              <html:li>When this attribute is explicitly specified only the specified IP address will be located.</html:li>
              <html:li>When this attribute has the value "*" then any IP address including the "All Unassigned" IP address will be located</html:li>
            </html:ul>

            When the WebAddress is part of a WebSite element used to create a new web site the following rules are used:

            <html:ul>
              <html:li>When this attribute is not specified or the value is "*" the "All Unassigned" IP address will be used.</html:li>
              <html:li>When this attribute is explicitly specified the IP address will use that value.</html:li>
            </html:ul>

            The IP attribute can contain a formatted string that is processed at install time to insert the values of properties using
            [PropertyName] syntax.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Port" type="xs:string" use="required"/>
      <xs:attribute name="Header" type="xs:string"/>
      <xs:attribute name="Secure" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Determines if this address represents a secure binding.  The default is 'no'.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebVirtualDir">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
      </xs:appinfo>
      <xs:documentation>Defines an IIS virtual directory. When this element is a child of WebSite element, the virtual directory is defined within that web site. Otherwise this virtual directory must reference a WebSite element via the WebSite attribute</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="WebApplication" minOccurs="0" maxOccurs="1" />
        <xs:element ref="WebDirProperties" minOccurs="0" maxOccurs="1" />
        <xs:element ref="WebError" />
        <xs:element ref="WebVirtualDir" />
        <xs:element ref="HttpHeader" />
        <xs:element ref="MimeMap" />
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the web application. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebSite" type="xs:string">
        <xs:annotation>
          <xs:documentation>References the Id attribute for a WebSite in which this virtual directory belongs. Required when this element is not a child of WebSite element.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Alias" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Sets the application name, which is the URL relative path used to access this virtual directory</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Directory" use="required" type="xs:string">
        <xs:annotation>
          <xs:documentation>References the Id attribute for a Directory element that points to the content for this virtual directory.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="DirProperties" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            References the Id attribute for a WebDirProperties element that specifies the security and access properties for this virtual directory.
            This attribute may not be specified if a WebDirProperties element is directly nested in this element.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebApplication" type="xs:string">
        <xs:annotation>
          <xs:documentation>References the Id attribute for a WebApplication element that specifies web application settings for this virtual directory.  If a WebApplication child is not specified, the virtual directory does not host web applications.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebDir">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
      </xs:appinfo>
      <xs:documentation>Defines a subdirectory within an IIS web site. When this element is a child of WebSite, the web directory is defined within that web site. Otherwise the web directory must reference a WebSite element via the WebSite attribute.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="WebApplication" minOccurs="0" maxOccurs="1" />
        <xs:element ref="WebDirProperties" minOccurs="0" maxOccurs="1" />
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the web application. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebApplication" type="xs:string">
        <xs:annotation>
          <xs:documentation>References the Id attribute for a WebApplication element in which this directory belongs.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebSite" type="xs:string">
        <xs:annotation>
          <xs:documentation>References the Id attribute for a WebSite element in which this directory belongs. Required when this element is not a child of a WebSite element.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Path" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Specifies the name of this web directory.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="DirProperties" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            References the Id attribute for a WebDirProperties element that specifies the security and access properties for this web directory.
            This attribute may not be specified if a WebDirProperties element is directly nested in this element.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebSite">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
        <xse:remarks>
          Nesting WebSite under a Component element will result in a WebSite being installed to the machine as the package is installed.
          Nesting WebSite under Package, Fragment, or Module
          results in a web site "locator" record being created in
          the IIsWebSite table.  This means that the web site
          itself is neither installed nor uninstalled by the MSI
          package.  It does make the database available for referencing
          from a WebApplication, WebVirtualDir or WebDir record.  This allows an MSI to install
          WebApplications, WebVirtualDirs or WebDirs to already existing web sites on the machine.
          The install will fail if the web site does not exist in these cases.
        </xse:remarks>
      </xs:appinfo>
      <xs:documentation>IIs Web Site</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:element ref="WebAddress" minOccurs="1" maxOccurs="unbounded"/>
        <xs:element ref="WebApplication" minOccurs="0" maxOccurs="1" />
        <xs:element ref="WebDirProperties" minOccurs="0" maxOccurs="1" />
        <xs:element ref="MimeMap"/>
        <xs:element ref="CertificateRef"/>
        <xs:element ref="HttpHeader"/>
        <xs:element ref="WebDir"/>
        <xs:element ref="WebError"/>
        <xs:element ref="WebFilter"/>
        <xs:element ref="WebVirtualDir"/>
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the WebSite. Used within the MSI package only. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="AutoStart" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Specifies whether to automatically start the web site.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ConfigureIfExists" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Specifies whether to configure the web site if it already exists.  Note: This will not affect uninstall behavior.  If the web site exists on uninstall, it will be removed.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="ConnectionTimeout" type="xs:nonNegativeInteger">
        <xs:annotation>
          <xs:documentation>Sets the timeout value for connections in seconds.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Description" use="required" type="xs:string">
        <xs:annotation>
          <xs:documentation>This is the name of the web site that will show up in the IIS management console.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Directory" type="xs:string">
        <xs:annotation>
          <xs:documentation>Root directory of the web site.  Resolved to a directory in the Directory table at install time by the server custom actions.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="DirProperties" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            References the Id attribute for a WebDirProperties element that specifies the security and access properties for this website root directory.
            This attribute may not be specified if a WebDirProperties element is directly nested in this element.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Sequence" type="wxs:Integer">
        <xs:annotation>
          <xs:documentation>Sequence that the web site is to be created in.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="SiteId" type="xs:string">
        <xs:annotation>
          <xs:documentation>
            Optional attribute to directly specify the site id of the WebSite.  Use this to ensure all web
            sites in a web garden get the same site id.  If a number is provided, the site id must be unique
            on all target machines.  If "*" is used, the Description attribute will be hashed to create a unique
            value for the site id. This value must be a positive number or a "*" or a formatted value that resolves
            to "-1" (for the same behavior as "*") or a positive number or blank.  If this attribute is absent then
            the web site will be located using the WebAddress element associated with the web site.
          </xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="StartOnInstall" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Specifies whether to start the web site on install.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebApplication" type="xs:string">
        <xs:annotation>
          <xs:documentation>Reference to a WebApplication that is to be installed as part of this web site.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="WebLog" type="xs:string">
        <xs:annotation>
          <xs:documentation>Reference to WebLog definition.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebLog">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" />
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" />
      </xs:appinfo>
      <xs:documentation>WebLog definition.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Identifier for the WebLog.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Type" use="required">
        <xs:simpleType>
          <xs:restriction base="xs:NMTOKEN">
            <xs:enumeration value="IIS">
              <xs:annotation>
                <xs:documentation>
                  Microsoft IIS Log File Format
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="NCSA">
              <xs:annotation>
                <xs:documentation>
                  NCSA Common Log File Format
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="none">
              <xs:annotation>
                <xs:documentation>
                  Disables logging.
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="ODBC">
              <xs:annotation>
                <xs:documentation>
                  ODBC Logging
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
            <xs:enumeration value="W3C">
              <xs:annotation>
                <xs:documentation>
                  W3C Extended Log File Format
                </xs:documentation>
              </xs:annotation>
            </xs:enumeration>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:element name="WebServiceExtension">
    <xs:annotation>
      <xs:appinfo>
        <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
      </xs:appinfo>
      <xs:documentation>The WebServiceExtension property is used by the Web server to determine whether a Web service extension is permitted to run.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
      <xs:choice minOccurs="0" maxOccurs="unbounded">
        <xs:any namespace="##other" processContents="lax">
          <xs:annotation>
            <xs:documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </xs:documentation>
          </xs:annotation>
        </xs:any>
      </xs:choice>
      <xs:attribute name="Id" type="xs:string">
        <xs:annotation>
          <xs:documentation>Identifier for the web service extension. Used within the MSI package only. If the Id is not specified, it will be generated.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="File" type="xs:string" use="required">
        <xs:annotation>
          <xs:documentation>Usually a Property that resolves to short file name path</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Description" type="xs:string">
        <xs:annotation>
          <xs:documentation>Description of the extension.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Group" type="xs:string">
        <xs:annotation>
          <xs:documentation>String used to identify groups of extensions.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="Allow" use="required" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Indicates if the extension is allowed or denied.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:attribute name="UIDeletable" type="wxs:YesNoTypeUnion">
        <xs:annotation>
          <xs:documentation>Indicates if the UI is allowed to delete the extension from the list of not.  Default: Not deletable.</xs:documentation>
        </xs:annotation>
      </xs:attribute>
      <xs:anyAttribute namespace="##other" processContents="lax">
        <xs:annotation>
          <xs:documentation>
            Extensibility point in the WiX XML Schema. Schema extensions can register additional
            attributes at this point in the schema.
          </xs:documentation>
        </xs:annotation>
      </xs:anyAttribute>
    </xs:complexType>
  </xs:element>

  <xs:simpleType name="PercentType">
    <xs:annotation>
      <xs:documentation>Values of this type are any integers between 0 and 100, inclusive.</xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:nonNegativeInteger">
      <xs:maxInclusive value="100"/>
    </xs:restriction>
  </xs:simpleType>

</xs:schema>