<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Creating a Custom Data Feed Feature Service in a Specific Server Folder in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/creating-a-custom-data-feed-feature-service-in-a/m-p/1655336#M43186</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I would like to know if it’s possible to create a Feature service using a Custom Data Provider within a specific server folder. The documentation only describes&amp;nbsp;how to create a Feature Service in the root directory (example: https://&amp;lt;domain_name_or_machine_name&amp;gt;/&amp;lt;webadaptor_name&amp;gt;/rest/services/&amp;lt;service_name&amp;gt;/FeatureServer).&lt;/P&gt;&lt;P&gt;My second question is whether I can call my Custom Data Feeds service using the default REST parameters&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;-&amp;nbsp;particularly datumTransformation and&amp;nbsp;outSR - if those are not implemented in my provider code?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thanks.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Kamil&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 04 Oct 2025 19:52:18 GMT</pubDate>
    <dc:creator>KamilNovák</dc:creator>
    <dc:date>2025-10-04T19:52:18Z</dc:date>
    <item>
      <title>Creating a Custom Data Feed Feature Service in a Specific Server Folder</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/creating-a-custom-data-feed-feature-service-in-a/m-p/1655336#M43186</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I would like to know if it’s possible to create a Feature service using a Custom Data Provider within a specific server folder. The documentation only describes&amp;nbsp;how to create a Feature Service in the root directory (example: https://&amp;lt;domain_name_or_machine_name&amp;gt;/&amp;lt;webadaptor_name&amp;gt;/rest/services/&amp;lt;service_name&amp;gt;/FeatureServer).&lt;/P&gt;&lt;P&gt;My second question is whether I can call my Custom Data Feeds service using the default REST parameters&amp;nbsp;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;-&amp;nbsp;particularly datumTransformation and&amp;nbsp;outSR - if those are not implemented in my provider code?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thanks.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Kamil&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Oct 2025 19:52:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/creating-a-custom-data-feed-feature-service-in-a/m-p/1655336#M43186</guid>
      <dc:creator>KamilNovák</dc:creator>
      <dc:date>2025-10-04T19:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a Custom Data Feed Feature Service in a Specific Server Folder</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/creating-a-custom-data-feed-feature-service-in-a/m-p/1655362#M43187</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I have resolved my first question:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;It needs to be done in the AGS admin directory. Navigate to&amp;nbsp;&lt;SPAN class=""&gt;Home → services → &amp;lt;Folder Name&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Here, use the createService operation&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Provide the following service JSON:&lt;BR /&gt;&lt;/SPAN&gt;&lt;PRE&gt;{
"serviceName": "&amp;lt;SERVICE NAME&amp;gt;",
"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": {
"forwardUserIdentity": false,
"dataProviderName": "&amp;lt;PROVIDER NAME&amp;gt;",
"dataProviderHost": "",
"dataProviderId": "",
"serviceParameters": {}
}},
"extensions": [],
"frameworkProperties": {},
"datasets": []
}​&lt;/PRE&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Then click Create&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN class=""&gt;This works for me&amp;nbsp;in version 11.5.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Kamil&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;!--      notionvc: 213ce69a-26ee-4337-bcb1-5659dca7b33e      --&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Oct 2025 12:11:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/creating-a-custom-data-feed-feature-service-in-a/m-p/1655362#M43187</guid>
      <dc:creator>KamilNovák</dc:creator>
      <dc:date>2025-10-05T12:11:18Z</dc:date>
    </item>
  </channel>
</rss>

