Property
ElementThe Property
element defines a property of a catalog.
Each catalog may have 0 or more properties, each defined by a single Property
element.
If this element occurs within a Catalog
element, then it defines a property of that catalog only. If it occurs within the Globals
element, then the property exists for all catalogs.
Properties recognized by Express Server are listed in Special Catalog Properties.
The Property element has the following editable attributes:
This is the name of the property.
This is the property value. It may contain plain text or a complete XML fragment. Alternatively, the value may be specified as text within the
<Property>
element itself.
This is an optional two letter code which identifies the language that the property is expressed in.
Property
ElementThe following defines a property for the catalog "foo."
<Catalog name="foo">
...
<Property name="Description" value="A sample catalog"/>
...
</Catalog>
The following is equivalent to the previous example.
<Catalog name="foo">
...
<Property name="Description">A sample catalog</Property>
...
</Catalog>
The following defines a property for all catalogs.
<Globals>
...
<Property name="Maintainer">Joe Smythe</Property>
... </Globals>
The following defines a property whose value is an XML fragment.
<Catalog name="foo">
...
<Property name="wms-toplayer-Title">
<Title>TopLayer</Title>
</Property>
...
</Catalog>