blob: 223b4e48b4401216ce3e87ea4c8b034833273c56 (
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
|
<?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/msmq"
xmlns="http://wixtoolset.org/schemas/v4/wxs/msmq">
<xs:annotation>
<xs:documentation>
The source code schema for the WiX Toolset MSMQ Extension.
</xs:documentation>
</xs:annotation>
<xs:import namespace="http://wixtoolset.org/schemas/v4/wxs" />
<xs:element name="MessageQueue">
<xs:annotation>
<xs:documentation>Installs an MSMQ message queue.</xs:documentation>
<xs:appinfo>
<xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</xs:appinfo>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="MessageQueuePermission" />
<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 message queue. If the Id is not specified, one will be generated.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Authenticate" type="wxs:YesNoTypeUnion">
<xs:annotation>
<xs:documentation>The default value is "no".</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="BasePriority" type="wxs:Integer">
<xs:annotation>
<xs:documentation>The base priority of the queue.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Journal" type="wxs:YesNoTypeUnion">
<xs:annotation>
<xs:documentation>The default value is "no".</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="JournalQuota" type="wxs:Integer" />
<xs:attribute name="Label" use="required" type="xs:string" />
<xs:attribute name="MulticastAddress" type="xs:string" />
<xs:attribute name="PathName" use="required" type="xs:string" />
<xs:attribute name="PrivLevel">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="none" />
<xs:enumeration value="optional" />
<xs:enumeration value="body" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="Quota" type="wxs:Integer" />
<xs:attribute name="Transactional" type="wxs:YesNoTypeUnion">
<xs:annotation>
<xs:documentation>The default value is "no".</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ServiceTypeGuid" type="xs:string" />
<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="MessageQueuePermission">
<xs:annotation><xs:documentation>
</xs:documentation>
<xs:appinfo>
<xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</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" use="required" type="xs:string">
<xs:annotation>
<xs:documentation>Identifier for the message queue permission. If the Id is not specified, one will be generated.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="MessageQueue" type="xs:string">
<xs:annotation>
<xs:documentation>Message queue to set permissions on. Must be specified when under a Component element. Cannot be specified when under a MessageQueue element.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="User" type="xs:string">
<xs:annotation>
<xs:documentation></xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="Group" type="xs:string">
<xs:annotation>
<xs:documentation></xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="DeleteMessage" type="wxs:YesNoTypeUnion" />
<xs:attribute name="PeekMessage" type="wxs:YesNoTypeUnion" />
<xs:attribute name="WriteMessage" type="wxs:YesNoTypeUnion" />
<xs:attribute name="DeleteJournalMessage" type="wxs:YesNoTypeUnion" />
<xs:attribute name="SetQueueProperties" type="wxs:YesNoTypeUnion" />
<xs:attribute name="GetQueueProperties" type="wxs:YesNoTypeUnion" />
<xs:attribute name="DeleteQueue" type="wxs:YesNoTypeUnion" />
<xs:attribute name="GetQueuePermissions" type="wxs:YesNoTypeUnion" />
<xs:attribute name="ChangeQueuePermissions" type="wxs:YesNoTypeUnion" />
<xs:attribute name="TakeQueueOwnership" type="wxs:YesNoTypeUnion" />
<xs:attribute name="ReceiveMessage" type="wxs:YesNoTypeUnion" />
<xs:attribute name="ReceiveJournalMessage" type="wxs:YesNoTypeUnion" />
<xs:attribute name="QueueGenericRead" type="wxs:YesNoTypeUnion" />
<xs:attribute name="QueueGenericWrite" type="wxs:YesNoTypeUnion" />
<xs:attribute name="QueueGenericExecute" type="wxs:YesNoTypeUnion" />
<xs:attribute name="QueueGenericAll" type="wxs:YesNoTypeUnion" />
<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:schema>
|