ArcGIS Server syntax
If you're using ArcGIS Server, the <CONFIG> element specifies the SRS code and the URLs of the map service and geometry service endpoints, as in this example:
<CONFIG srs="3857"
mapservice="http://Server/ArcGIS/services/SampleService/MapServer"
geometryservice="http://Server/ArcGIS/services/Geometry/GeometryServer"
>
</CONFIG>
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.
In this example, the service is not public and a FeatureServer is specified:
<CONFIG srs="3857"
mapservice=https://Server.domain.com/server/rest/services/SampleService/FeatureServer
geometryservice=https://utility.arcgisonline.com/arcgis/services/Geometry/GeometryServer
tokenservice=https://Server.domain.com/portal/sharing/rest/generateToken
tokentimeout="600"
user="ESRIuser"
pw="ESRIpassword">
</CONFIG>
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 srs="3857"
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>