ArcGIS Server syntax

If you're using ArcGIS Server, the <CONFIG> element specifies the URLs of the map service and geometry service endpoints, as in this example:

<CONFIG
mapservice="http://Server/ArcGIS/services/SampleService/MapServer"
geometryservice="http://Server/ArcGIS/services/Geometry/GeometryServer"
>
</CONFIG>
Note: If the provider will be used for GIS synchronization, and data will be synchronized from Infor Public Sector to the GIS, then you must specify a FeatureServer for the map service. This is needed to allow updates to the data in the GIS.

See GIS synchronization.

You can specify individual services and datasets by adding children to the <CONFIG> element. For example, this <CONFIG> element will return the Addresses layer:

<CONFIG
mapservice="https://Server/ArcGIS/services/SampleService/MapServer"
geometryservice="https://Server/ArcGIS/services/Geometry/GeometryServer">
   <SERVICE mapservice="https://Server/ArcGIS/services/SampleService/FeatureServer">
      <DATASET id="Addresses" />
   </SERVICE>
</CONFIG>