Description
Used to specify the Server settings in ArcPadPrefs.apx.
Diagram
Overview
|
SERVER
Used to specify the Server settings in ArcPadPrefs.apx.
|
autorefresh optional Restriction of xs:string
Flag that determines whether ArcIMS layers are automatically reloaded from their servers whenever the map is refreshed.
|
|
log optional Restriction of xs:string
Flag that determines whether communication with Servers are logged to a log file.
|
|
url optional xs:string
URL of Portal or ArcGIS Server.
|
|
username optional xs:string
Username for Portal or ArcGIS Server.
|
|
password optional xs:string
Encrypted password for Portal or ArcGIS Server.
|
|
syncdownload optional Restriction of xs:string
This option enables full download of feature services (if incremental downloads unavailable).
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
autorefresh | Restriction of xs:string | optional | true | | Flag that determines whether ArcIMS layers are automatically reloaded from their servers whenever the map is refreshed. |
log | Restriction of xs:string | optional | false | | Flag that determines whether communication with Servers are logged to a log file. |
url | xs:string | optional | | | URL of Portal or ArcGIS Server. |
username | xs:string | optional | | | Username for Portal or ArcGIS Server. |
password | xs:string | optional | | | Encrypted password for Portal or ArcGIS Server. |
syncdownload | Restriction of xs:string | optional | true | | This option enables full download of feature services (if incremental downloads unavailable). |
Source
<xs:element name="SERVER" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to specify the Server settings in ArcPadPrefs.apx.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="true" name="autorefresh">
<xs:annotation>
<xs:documentation>Flag that determines whether ArcIMS layers are automatically reloaded from their servers whenever the map is refreshed.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="false" name="log">
<xs:annotation>
<xs:documentation>Flag that determines whether communication with Servers are logged to a log file.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="url" type="xs:string">
<xs:annotation>
<xs:documentation>URL of Portal or ArcGIS Server.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="username" type="xs:string">
<xs:annotation>
<xs:documentation>Username for Portal or ArcGIS Server.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="password" type="xs:string">
<xs:annotation>
<xs:documentation>Encrypted password for Portal or ArcGIS Server.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="syncdownload" default="true" use="optional">
<xs:annotation>
<xs:documentation>This option enables full download of feature services (if incremental downloads unavailable).</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also