<?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 Re: Max Domain Code Count in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398852#M9306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am coming across this same error.&amp;nbsp; Did you ever find a solution for it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Matt Shetzer&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Jan 2011 12:44:45 GMT</pubDate>
    <dc:creator>MattShetzer</dc:creator>
    <dc:date>2011-01-15T12:44:45Z</dc:date>
    <item>
      <title>Max Domain Code Count</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398851#M9305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I noticed that in my Server Manager Console, I see an error, 'Total number of coded domain values in this service exceeds the MaxDomainCodeCount, hence operation can not be performed.'&amp;nbsp; I found documentation on this error and it states that you can add the &amp;lt;MaxDomainCodeCount&amp;gt; tag to the cfg file.&amp;nbsp; I did this and changed the value a bunch of times, be still get the same error message.&amp;nbsp; I restarted the SOM after each change, but still not getting the desired result.&amp;nbsp; I set it at 1500000 just to see if that would work and it still didn't.&amp;nbsp; Does anyone have any experience configuring a service to return a large number of coded values?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Dec 2010 19:49:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398851#M9305</guid>
      <dc:creator>CaseyBentz</dc:creator>
      <dc:date>2010-12-21T19:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Max Domain Code Count</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398852#M9306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am coming across this same error.&amp;nbsp; Did you ever find a solution for it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Matt Shetzer&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Jan 2011 12:44:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398852#M9306</guid>
      <dc:creator>MattShetzer</dc:creator>
      <dc:date>2011-01-15T12:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Max Domain Code Count</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398853#M9307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I found that I placed the tag in the wrong part of the config file. I was adding it to the end of the file, as its own tag, but it belongs in the properties tag. Once I plaved the tag inside the properties tag and restarted the SOM, it worked.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;Properties&amp;gt;
&amp;nbsp; &amp;lt;FileName&amp;gt;TransAndDist.msd&amp;lt;/FileName&amp;gt;
&amp;nbsp; &amp;lt;OutputDir&amp;gt;d:\arcgisserver\arcgisoutput&amp;lt;/OutputDir&amp;gt;
&amp;nbsp; &amp;lt;VirtualOutputDir&amp;gt;http://servername/arcgisoutput&amp;lt;/VirtualOutputDir&amp;gt;
&amp;nbsp; &amp;lt;SupportedImageReturnTypes&amp;gt;URL&amp;lt;/SupportedImageReturnTypes&amp;gt;
&amp;nbsp; &amp;lt;MaxImageHeight&amp;gt;2048&amp;lt;/MaxImageHeight&amp;gt;
&amp;nbsp; &amp;lt;MaxRecordCount&amp;gt;1000&amp;lt;/MaxRecordCount&amp;gt;
&amp;nbsp; &amp;lt;MaxBufferCount&amp;gt;100&amp;lt;/MaxBufferCount&amp;gt;
&amp;nbsp; &amp;lt;MaxImageWidth&amp;gt;2048&amp;lt;/MaxImageWidth&amp;gt;
&amp;nbsp; &amp;lt;IsCached&amp;gt;false&amp;lt;/IsCached&amp;gt;
&amp;nbsp; &amp;lt;CacheOnDemand&amp;gt;false&amp;lt;/CacheOnDemand&amp;gt;
&amp;nbsp; &amp;lt;IgnoreCache&amp;gt;false&amp;lt;/IgnoreCache&amp;gt;
&amp;nbsp; &amp;lt;ClientCachingAllowed&amp;gt;true&amp;lt;/ClientCachingAllowed&amp;gt;
&amp;nbsp; &amp;lt;CacheDir&amp;gt;d:\arcgisserver\arcgiscache\Delivery_TransAndDist&amp;lt;/CacheDir&amp;gt;
&amp;nbsp; &amp;lt;SOMCacheDir&amp;gt;d:\arcgisserver\arcgiscache&amp;lt;/SOMCacheDir&amp;gt;
&amp;nbsp; &amp;lt;MaxDomainCodeCount&amp;gt;5000000&amp;lt;/MaxDomainCodeCount&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;-------------------------
&amp;nbsp; &amp;lt;SchemaLockingEnabled&amp;gt;false&amp;lt;/SchemaLockingEnabled&amp;gt; 
 &amp;lt;/Properties&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:12:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398853#M9307</guid>
      <dc:creator>CaseyBentz</dc:creator>
      <dc:date>2021-12-11T18:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Max Domain Code Count</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398854#M9308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It took some digging, but here is the location of the configuration files referred to above:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;...\Program Files (x86)\ArcGIS\Server10.0\server\user\cfg\maps&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2012 16:03:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398854#M9308</guid>
      <dc:creator>AnnStark</dc:creator>
      <dc:date>2012-06-19T16:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Max Domain Code Count</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398855#M9309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just came across this problem with ArcGIS Server 10.1. The problem was I had a coded domain with 1000+ items on it (Street Name) which was applied to almost all the layers in the map. Removed the values and the error disappeared. I guess one could hide the column from the web service if required?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 23:38:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/max-domain-code-count/m-p/398855#M9309</guid>
      <dc:creator>TrevorHart2</dc:creator>
      <dc:date>2016-03-07T23:38:21Z</dc:date>
    </item>
  </channel>
</rss>

