<?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 Editing capabilities of map service with arcpy in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/editing-capabilities-of-map-service-with-arcpy/m-p/293240#M11311</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;According to this article &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00s30000006q000000" title="http://resources.arcgis.com/en/help/main/10.1/index.html#//00s30000006q000000"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold;"&gt;Modify SDDraft example 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The KML is known as KML SERVER&lt;/P&gt;&lt;P&gt;but if I want to edit the feature access with arcpy do I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-size: 11.44px;"&gt;&lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# The Server Object Extension (SOE) to disable.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;soe&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'FeatureAccessServer'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Read the sddraft xml.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;doc&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;DOM&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;parse&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;sddraft&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Find all elements named TypeName. This is where the server object extension (SOE) names are defined.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeNames&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;doc&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;getElementsByTagName&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'TypeName'&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeName&lt;/SPAN&gt; &lt;SPAN class="ow" style="font-size: 11.44px; color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeNames&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Get the TypeName we want to disable.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeName&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;firstChild&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;data&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;soe&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extension&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeName&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;parentNode&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extElement&lt;/SPAN&gt; &lt;SPAN class="ow" style="font-size: 11.44px; color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extension&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;childNodes&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Disabled SOE.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extElement&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;tagName&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'Enabled'&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extElement&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;firstChild&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;data&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'false'&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Is there a place in the documentation where they have the name stated?&lt;/P&gt;&lt;P&gt;I thought it would be the same for GP but is some what diff&lt;/P&gt;&lt;P&gt;&lt;A href="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#/Capabilities/005700000083000000/" title="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#/Capabilities/005700000083000000/"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also posted it on StackoverFlow with no help given Here is the link&lt;BR /&gt;&lt;A href="http://gis.stackexchange.com/questions/172880/how-to-edit-the-capabilities-with-python-when-publishing-map-services" title="http://gis.stackexchange.com/questions/172880/how-to-edit-the-capabilities-with-python-when-publishing-map-services"&gt;arcgis desktop - How to edit the capabilities with python when publishing map services - Geographic Information Systems …&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Dec 2015 06:59:03 GMT</pubDate>
    <dc:creator>Hongnavigator</dc:creator>
    <dc:date>2015-12-09T06:59:03Z</dc:date>
    <item>
      <title>Editing capabilities of map service with arcpy</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/editing-capabilities-of-map-service-with-arcpy/m-p/293240#M11311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;According to this article &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//00s30000006q000000" title="http://resources.arcgis.com/en/help/main/10.1/index.html#//00s30000006q000000"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold;"&gt;Modify SDDraft example 4&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The KML is known as KML SERVER&lt;/P&gt;&lt;P&gt;but if I want to edit the feature access with arcpy do I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE style="font-size: 11.44px;"&gt;&lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# The Server Object Extension (SOE) to disable.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;soe&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'FeatureAccessServer'&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Read the sddraft xml.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;doc&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;DOM&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;parse&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;sddraft&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Find all elements named TypeName. This is where the server object extension (SOE) names are defined.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeNames&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;doc&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;getElementsByTagName&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'TypeName'&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeName&lt;/SPAN&gt; &lt;SPAN class="ow" style="font-size: 11.44px; color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeNames&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Get the TypeName we want to disable.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeName&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;firstChild&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;data&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;soe&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extension&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;typeName&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;parentNode&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extElement&lt;/SPAN&gt; &lt;SPAN class="ow" style="font-size: 11.44px; color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extension&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;childNodes&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="c" style="font-size: 11.44px; color: #008000;"&gt;# Disabled SOE.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k" style="font-size: 11.44px; color: #0000ff;"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extElement&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;tagName&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;==&lt;/SPAN&gt; &lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'Enabled'&lt;/SPAN&gt;&lt;SPAN class="p" style="font-size: 11.44px;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="n" style="font-size: 11.44px;"&gt;extElement&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;firstChild&lt;/SPAN&gt;&lt;SPAN class="o" style="font-size: 11.44px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n" style="font-size: 11.44px;"&gt;data&lt;/SPAN&gt; &lt;SPAN class="o" style="font-size: 11.44px;"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s" style="font-size: 11.44px; color: #a31515;"&gt;'false'&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Is there a place in the documentation where they have the name stated?&lt;/P&gt;&lt;P&gt;I thought it would be the same for GP but is some what diff&lt;/P&gt;&lt;P&gt;&lt;A href="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#/Capabilities/005700000083000000/" title="http://resources.arcgis.com/EN/HELP/MAIN/10.1/index.html#/Capabilities/005700000083000000/"&gt;ArcGIS Help 10.1&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also posted it on StackoverFlow with no help given Here is the link&lt;BR /&gt;&lt;A href="http://gis.stackexchange.com/questions/172880/how-to-edit-the-capabilities-with-python-when-publishing-map-services" title="http://gis.stackexchange.com/questions/172880/how-to-edit-the-capabilities-with-python-when-publishing-map-services"&gt;arcgis desktop - How to edit the capabilities with python when publishing map services - Geographic Information Systems …&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Dec 2015 06:59:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/editing-capabilities-of-map-service-with-arcpy/m-p/293240#M11311</guid>
      <dc:creator>Hongnavigator</dc:creator>
      <dc:date>2015-12-09T06:59:03Z</dc:date>
    </item>
  </channel>
</rss>

