According to this article ArcGIS Help 10.1
Modify SDDraft example 4
The KML is known as KML SERVER
but if I want to edit the feature access with arcpy do I do this?
<SPAN class="c" style="font-size: 11.44px; color: #008000;"># The Server Object Extension (SOE) to disable.</SPAN><BR /><SPAN class="n" style="font-size: 11.44px;">soe</SPAN> <SPAN class="o" style="font-size: 11.44px;">=</SPAN> <SPAN class="s" style="font-size: 11.44px; color: #a31515;">'FeatureAccessServer'</SPAN><BR /><BR /><SPAN class="c" style="font-size: 11.44px; color: #008000;"># Read the sddraft xml.</SPAN><BR /><SPAN class="n" style="font-size: 11.44px;">doc</SPAN> <SPAN class="o" style="font-size: 11.44px;">=</SPAN> <SPAN class="n" style="font-size: 11.44px;">DOM</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">parse</SPAN><SPAN class="p" style="font-size: 11.44px;">(</SPAN><SPAN class="n" style="font-size: 11.44px;">sddraft</SPAN><SPAN class="p" style="font-size: 11.44px;">)</SPAN><BR /><SPAN class="c" style="font-size: 11.44px; color: #008000;"># Find all elements named TypeName. This is where the server object extension (SOE) names are defined.</SPAN><BR /><SPAN class="n" style="font-size: 11.44px;">typeNames</SPAN> <SPAN class="o" style="font-size: 11.44px;">=</SPAN> <SPAN class="n" style="font-size: 11.44px;">doc</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">getElementsByTagName</SPAN><SPAN class="p" style="font-size: 11.44px;">(</SPAN><SPAN class="s" style="font-size: 11.44px; color: #a31515;">'TypeName'</SPAN><SPAN class="p" style="font-size: 11.44px;">)</SPAN><BR /><SPAN class="k" style="font-size: 11.44px; color: #0000ff;">for</SPAN> <SPAN class="n" style="font-size: 11.44px;">typeName</SPAN> <SPAN class="ow" style="font-size: 11.44px; color: #0000ff;">in</SPAN> <SPAN class="n" style="font-size: 11.44px;">typeNames</SPAN><SPAN class="p" style="font-size: 11.44px;">:</SPAN><BR /> <SPAN class="c" style="font-size: 11.44px; color: #008000;"># Get the TypeName we want to disable.</SPAN><BR /> <SPAN class="k" style="font-size: 11.44px; color: #0000ff;">if</SPAN> <SPAN class="n" style="font-size: 11.44px;">typeName</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">firstChild</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">data</SPAN> <SPAN class="o" style="font-size: 11.44px;">==</SPAN> <SPAN class="n" style="font-size: 11.44px;">soe</SPAN><SPAN class="p" style="font-size: 11.44px;">:</SPAN><BR /> <SPAN class="n" style="font-size: 11.44px;">extension</SPAN> <SPAN class="o" style="font-size: 11.44px;">=</SPAN> <SPAN class="n" style="font-size: 11.44px;">typeName</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">parentNode</SPAN><BR /> <SPAN class="k" style="font-size: 11.44px; color: #0000ff;">for</SPAN> <SPAN class="n" style="font-size: 11.44px;">extElement</SPAN> <SPAN class="ow" style="font-size: 11.44px; color: #0000ff;">in</SPAN> <SPAN class="n" style="font-size: 11.44px;">extension</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">childNodes</SPAN><SPAN class="p" style="font-size: 11.44px;">:</SPAN><BR /> <SPAN class="c" style="font-size: 11.44px; color: #008000;"># Disabled SOE.</SPAN><BR /> <SPAN class="k" style="font-size: 11.44px; color: #0000ff;">if</SPAN> <SPAN class="n" style="font-size: 11.44px;">extElement</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">tagName</SPAN> <SPAN class="o" style="font-size: 11.44px;">==</SPAN> <SPAN class="s" style="font-size: 11.44px; color: #a31515;">'Enabled'</SPAN><SPAN class="p" style="font-size: 11.44px;">:</SPAN><BR /> <SPAN class="n" style="font-size: 11.44px;">extElement</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">firstChild</SPAN><SPAN class="o" style="font-size: 11.44px;">.</SPAN><SPAN class="n" style="font-size: 11.44px;">data</SPAN> <SPAN class="o" style="font-size: 11.44px;">=</SPAN> <SPAN class="s" style="font-size: 11.44px; color: #a31515;">'false'</SPAN>
Is there a place in the documentation where they have the name stated?
I thought it would be the same for GP but is some what diff
ArcGIS Help 10.1
I also posted it on StackoverFlow with no help given Here is the link
arcgis desktop - How to edit the capabilities with python when publishing map services - Geographic Information Systems …