aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/iis/WebAddress.xsd
blob: e0f41be44a397930f4a08db6fb21d9f73dc62477 (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
<element name="WebAddress">
    <annotation>
      <documentation>WebAddress for WebSite</documentation>
    </annotation>
    <complexType>
      <choice minOccurs="0" maxOccurs="unbounded">
        <any namespace="##other" processContents="lax">
          <annotation>
            <documentation>
              Extensibility point in the WiX XML Schema. Schema extensions can register additional
              elements at this point in the schema.
            </documentation>
          </annotation>
        </any>
      </choice>
      <attribute name="Id" type="xs:string">
        <annotation>
          <documentation>Identifier for the web application. If the Id is not specified, it will be generated.</documentation>
        </annotation>
      </attribute>
      <attribute name="IP" type="xs:string">
        <annotation>
          <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:
            <ul>
              <li>When this attribute is not specified only the "All Unassigned" IP address will be located.</li>
              <li>When this attribute is explicitly specified only the specified IP address will be located.</li>
              <li>When this attribute has the value "*" then any IP address including the "All Unassigned" IP address will be located</li>
            </ul>

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

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

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