Create a Feature Service using a Custom Data Feeds Provider

Create a Feature Service

After you've registered your custom data provider with ArcGIS Server, you can create a read-only feature service that references your data provider and serves data to ArcGIS clients.

Complete the following steps to create a feature service.

  1. In a web browser, navigate to the ArcGIS Server Administrator Directory, and sign in as an administrator.

  2. Click services > createService.

    arcgis server createService
  3. On the Create Service page, copy and paste the following JSON into the Service (in JSON format) text box.

    Use dark colors for code blocksCopy
    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
    {
        "serviceName": "<name of service>",
        "type": "FeatureServer",
        "description": "",
        "capabilities": "Query",
        "provider": "CUSTOMDATA",
        "clusterName": "default",
        "minInstancesPerNode": 0,
        "maxInstancesPerNode": 0,
        "instancesPerContainer": 1,
        "maxWaitTime": 60,
        "maxStartupTime": 300,
        "maxIdleTime": 1800,
        "maxUsageTime": 600,
        "loadBalancing": "ROUND_ROBIN",
        "isolationLevel": "HIGH",
        "configuredState": "STARTED",
        "recycleInterval": 24,
        "recycleStartTime": "00:00",
        "keepAliveInterval": 1800,
        "private": false,
        "isDefault": false,
        "maxUploadFileSize": 0,
        "allowedUploadFileTypes": "",
        "properties": {
            "disableCaching": "true"
        },
        "jsonProperties": {
            "customDataProviderInfo": {
                "dataProviderName": "<name of provider>",
                "dataProviderHost": "",
                "dataProviderId": ""
            }
        },
        "extensions": [],
        "frameworkProperties": {},
        "datasets": []
    }
  4. Provide values for the dataProviderHost and dataProviderID fields if your custom data provider uses them.

  5. Click the Create button.

  6. Verify that a feature service was created by navigating to the ArcGIS Server Services Directory, and ensure the service is listed.

You will be able to use the URL ( https://<domain_name_or_machine_name>/<webadaptor_name>/rest/services/<provider_name>/FeatureServer) of this feature service in ArcGIS clients like ArcGIS Pro, ArcGIS Online, and ArcGIS Enterprise.

;

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.