<?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: How to Overwrite ArcGIS Server (on-premise) Feature Service with Python? in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289489#M11086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should have specified that I have not had any problems overwriting this feature service using the GUI-based workflow within arcmap:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="193" src="https://community.esri.com/legacyfs/online/82450_pastedImage_0.png" style="height: 193px; width: 415.503184713376px;" width="415" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My interest is really to be able to overwrite these types of services automatically for when I have to make bulk updates to layer and MXD descriptions, symbology, or other characteristics of the MXD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Micah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Apr 2015 16:20:47 GMT</pubDate>
    <dc:creator>MicahBabinski</dc:creator>
    <dc:date>2015-04-06T16:20:47Z</dc:date>
    <item>
      <title>How to Overwrite ArcGIS Server (on-premise) Feature Service with Python?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289487#M11084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on a script tool that will overwrite an existing service, with the option to identify it as a feature service. I'm using ArcGIS 10.2.0. When I run the script (abstracted and included below) with the feature service option activated, I consistently get an error of:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/81341_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script tool takes three parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Service Folder - Rest Endpoint (String)&lt;/LI&gt;&lt;LI&gt;Service Name (String)&lt;/LI&gt;&lt;LI&gt;Is Feature Service (bool)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The workflow I am following is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create Map SD draft&lt;/LI&gt;&lt;LI&gt;Update the SVCManifest/TypeName portion of the SD draft xml to be "esriServiceDefinitionType_replacement"&lt;/LI&gt;&lt;LI&gt;If the feature service option is selected, modify the XML to specify TypeName of FeatureServer, State of esriSDState_Published, turn off caching, and grant full web capabilities including Query,Create,Update,Delete,Uploads,Editing&lt;/LI&gt;&lt;LI&gt;Save the updated xml to the disk&lt;/LI&gt;&lt;LI&gt;Stage the service&lt;/LI&gt;&lt;LI&gt;Upload the service definition if there are no errors&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script is attached. Based on my research so far, my best guess is that my modifications to the XML are somehow invalidating it. Here is that specific portion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;# Identify the SD draft to use
if str(is_feature_service) == "true":
&amp;nbsp;&amp;nbsp;&amp;nbsp; xml = newSDdraft
else:
&amp;nbsp;&amp;nbsp;&amp;nbsp; xml = sddraft


# Set service type to esriServiceDefinitionType_Replacement
newType = 'esriServiceDefinitionType_Replacement'
doc = DOM.parse(xml)
descriptions = doc.getElementsByTagName('Type')
for desc in descriptions:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if desc.parentNode.tagName == 'SVCManifest':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if desc.hasChildNodes():
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; desc.firstChild.data = newType


# If feature service is selected, change the service type from map service to feature service
if str(is_feature_service) == "true":
&amp;nbsp;&amp;nbsp;&amp;nbsp; typeNames = doc.getElementsByTagName('TypeName')
&amp;nbsp;&amp;nbsp;&amp;nbsp; for typeName in typeNames:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if typeName.firstChild.data == "MapServer":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; typeName.firstChild.data = "FeatureServer"


&amp;nbsp;&amp;nbsp;&amp;nbsp; tagsState = doc.getElementsByTagName('State')
&amp;nbsp;&amp;nbsp;&amp;nbsp; for tagState in tagsState:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tagState.parentNode.tagName == 'SVCManifest':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tagState.hasChildNodes():
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tagState.firstChild.data = "esriSDState_Published"


&amp;nbsp;&amp;nbsp;&amp;nbsp; # ...turns off caching
&amp;nbsp;&amp;nbsp;&amp;nbsp; configProps = doc.getElementsByTagName('ConfigurationProperties')[0]
&amp;nbsp;&amp;nbsp;&amp;nbsp; propArray = configProps.firstChild
&amp;nbsp;&amp;nbsp;&amp;nbsp; propSets = propArray.childNodes
&amp;nbsp;&amp;nbsp;&amp;nbsp; for propSet in propSets:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyValues = propSet.childNodes
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for keyValue in keyValues:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keyValue.tagName == 'Key':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keyValue.firstChild.data == "isCached":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyValue.nextSibling.firstChild.data = "false"


&amp;nbsp;&amp;nbsp;&amp;nbsp; # ...and turn on feature access capabilities
&amp;nbsp;&amp;nbsp;&amp;nbsp; configProps = doc.getElementsByTagName('Info')[0]
&amp;nbsp;&amp;nbsp;&amp;nbsp; propArray = configProps.firstChild
&amp;nbsp;&amp;nbsp;&amp;nbsp; propSets = propArray.childNodes
&amp;nbsp;&amp;nbsp;&amp;nbsp; for propSet in propSets:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyValues = propSet.childNodes
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for keyValue in keyValues:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keyValue.tagName == 'Key':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keyValue.firstChild.data == "WebCapabilities":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyValue.nextSibling.firstChild.data = "Query,Create,Update,Delete,Uploads,Editing"


&amp;nbsp;&amp;nbsp;&amp;nbsp; # Write the new draft to disk
&amp;nbsp;&amp;nbsp;&amp;nbsp; f = open(newSDdraft, 'w')
&amp;nbsp;&amp;nbsp;&amp;nbsp; doc.writexml( f )
&amp;nbsp;&amp;nbsp;&amp;nbsp; f.close()&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The full script is attached. Any guesses or help would be much appreciated! Most of the help for overwriting a feature service that I found was for hosted feature services, so I'm a bit at a loss.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Micah Babinski&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:58:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289487#M11084</guid>
      <dc:creator>MicahBabinski</dc:creator>
      <dc:date>2021-12-11T13:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to Overwrite ArcGIS Server (on-premise) Feature Service with Python?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289488#M11085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A couple of things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Are you able to get any results during the analysis portion of staging the service and do they indicate any warnings/errors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Are you sure that the underlying data is supported for a feature service. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This section of the ArcGIS Help gives more details on the feature service requirements...&lt;/P&gt;&lt;P&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/0154/0154000003nt000000.htm"&gt;http://resources.arcgis.com/en/help/main/10.2/0154/0154000003nt000000.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 20:19:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289488#M11085</guid>
      <dc:creator>AndrewBrown</dc:creator>
      <dc:date>2015-04-03T20:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to Overwrite ArcGIS Server (on-premise) Feature Service with Python?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289489#M11086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should have specified that I have not had any problems overwriting this feature service using the GUI-based workflow within arcmap:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="193" src="https://community.esri.com/legacyfs/online/82450_pastedImage_0.png" style="height: 193px; width: 415.503184713376px;" width="415" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My interest is really to be able to overwrite these types of services automatically for when I have to make bulk updates to layer and MXD descriptions, symbology, or other characteristics of the MXD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Micah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:20:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289489#M11086</guid>
      <dc:creator>MicahBabinski</dc:creator>
      <dc:date>2015-04-06T16:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to Overwrite ArcGIS Server (on-premise) Feature Service with Python?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289490#M11087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Micah,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The help documentation about changing to a feature service appears to be applicable to ArcGIS Online hosted services.&amp;nbsp; I got the following to work for ArcGIS Server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Enable FeatureServer&lt;BR /&gt;soe = 'FeatureServer'&lt;/P&gt;&lt;P&gt;typeNames = doc.getElementsByTagName('TypeName')&lt;BR /&gt;for typeName in typeNames:&lt;BR /&gt; if typeName.firstChild.data == soe:&lt;BR /&gt;&amp;nbsp; extension = typeName.parentNode&lt;BR /&gt;&amp;nbsp; for extElement in extension.childNodes:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; if extElement.tagName =='Enabled':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; extElement.firstChild.data ='true'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#Enable overwrite existing service&lt;BR /&gt;tagsType = doc.getElementsByTagName('Type')&lt;BR /&gt;for tagType in tagsType:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tagType.parentNode.tagName == 'SVCManifest':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tagType.hasChildNodes():&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tagType.firstChild.data = "esriServiceDefinitionType_Replacement"&lt;/P&gt;&lt;P&gt;tagsState = doc.getElementsByTagName('State')&lt;BR /&gt;for tagState in tagsState:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tagState.parentNode.tagName == 'SVCManifest':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if tagState.hasChildNodes():&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tagState.firstChild.data = "esriSDState_Published"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Turn off Allow Geometry Updates&lt;BR /&gt;configProps = doc.getElementsByTagName('Props')[0]&lt;BR /&gt;propArray = configProps.firstChild&lt;BR /&gt;propSets = propArray.childNodes&lt;BR /&gt;for propSet in propSets:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyValues = propSet.childNodes&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for keyValue in keyValues:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keyValue.tagName == 'Key':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if keyValue.firstChild.data == "allowGeometryUpdates":&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; keyValue.nextSibling.firstChild.data = "False"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Get all the value tags.&lt;BR /&gt;values = doc.getElementsByTagName('Value')&lt;BR /&gt;for value in values:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if value.hasChildNodes():&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # Change the default WebCapabilities from 'Query,Create,Update,Delete,Uploads,Editing' to just 'Query'.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if value.firstChild.data == 'Query,Create,Update,Delete,Uploads,Editing':&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value.firstChild.data = 'Query,Update,Uploads,Editing'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the Turn off Allow Geometry Updates does not work.&amp;nbsp; I can change it manually&amp;nbsp; in the sddraft file, but that code does not edit the XML. Do you have any thoughts on what part should be changed to find the allowGeometryUpdates property.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2015 16:50:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289490#M11087</guid>
      <dc:creator>ToddHenry1</dc:creator>
      <dc:date>2015-10-20T16:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Overwrite ArcGIS Server (on-premise) Feature Service with Python?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289491#M11088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I figured out the code to change the allow geometry updates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt;"&gt;This line configProps = doc.getElementsByTagName('Props')[0]&lt;BR /&gt;need to be configProps = doc.getElementsByTagName('Props')[1] because the Props&lt;BR /&gt;tag exists twice in the XML file.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Oct 2015 17:08:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-overwrite-arcgis-server-on-premise-feature/m-p/289491#M11088</guid>
      <dc:creator>ToddHenry1</dc:creator>
      <dc:date>2015-10-20T17:08:39Z</dc:date>
    </item>
  </channel>
</rss>

