<?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: Unable to Access feature service in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353940#M9333</link>
    <description>&lt;P&gt;In my enterprise&amp;nbsp;portal, there is a geodatabase file that I would like to access. From there, I would like to get the domain information. Could you please help me with this?&lt;/P&gt;</description>
    <pubDate>Tue, 28 Nov 2023 05:12:49 GMT</pubDate>
    <dc:creator>NarendranathMandal</dc:creator>
    <dc:date>2023-11-28T05:12:49Z</dc:date>
    <item>
      <title>Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353437#M9325</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;class&lt;/SPAN&gt; &lt;SPAN&gt;get_subtype&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;viewsets&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ViewSet&lt;/SPAN&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;def&lt;/SPAN&gt; &lt;SPAN&gt;list&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;self&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;request&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;projectname&lt;/SPAN&gt;&lt;SPAN&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;# Define your username and password&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;username&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;""&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;password&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;""&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;# Build the URL for the feature service&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;feature_service_url&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;A href="https://cyinprha.corp.cyient.com/server/rest/services/Hosted/MyProject5_gdb/FeatureServer/2" target="_blank" rel="noopener"&gt;https://cyinprha.corp.cyient.com/server/rest/services/Hosted/MyProject5_gdb/FeatureServer/2&lt;/A&gt;"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;try&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;# Connect to the GIS using your username and password&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;gis&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;GIS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;url&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;feature_service_url&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;username&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;username&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;password&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;password&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;# Get information about the feature service&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;feature_service&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;gis&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;content&lt;/SPAN&gt;&lt;SPAN&gt;.get(&lt;/SPAN&gt;&lt;SPAN&gt;feature_service_url&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"feature_service"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;feature_service&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;feature_service_info&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;feature_service&lt;/SPAN&gt;&lt;SPAN&gt;.layers[&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;].properties &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;# Assuming you want information about the first layer&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;feature_service_info&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;Response&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;feature_service_info&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;except&lt;/SPAN&gt; &lt;SPAN&gt;Exception&lt;/SPAN&gt; &lt;SPAN&gt;as&lt;/SPAN&gt; &lt;SPAN&gt;e&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;# Handle any errors here&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;"Error: &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;e&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;Response&lt;/SPAN&gt;&lt;SPAN&gt;({&lt;/SPAN&gt;&lt;SPAN&gt;"error"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;"Error: &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;e&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;}, &lt;/SPAN&gt;&lt;SPAN&gt;status&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;status&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;HTTP_500_INTERNAL_SERVER_ERROR&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;It throwing following error&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;PRE&gt;{"error":"Error: Access not allowed request\n(Error Code: 403)"}&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 27 Nov 2023 11:32:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353437#M9325</guid>
      <dc:creator>NarendranathMandal</dc:creator>
      <dc:date>2023-11-27T11:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353512#M9326</link>
      <description>&lt;P&gt;There's a few problems going on. The url param when initializing the GIS should be the url to your portal. Additionally, your feature_service_url is not pointing to a Feature Service, but a Feature Service Layer. You should remove "/2"&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 15:10:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353512#M9326</guid>
      <dc:creator>EarlMedina</dc:creator>
      <dc:date>2023-11-27T15:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353587#M9328</link>
      <description>&lt;P&gt;I try to break things up into smaller try:except: blocks so that the place the error happens is more apparent.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;portal = "https://cyinprha.corp.cyient.com/portal/"
try:
  gis = GIS(url=portal, username=username, password=password)
  print("Logged in")
except Exception as e:
  print(e)
  return
&lt;/LI-CODE&gt;&lt;P&gt;I show connecting to Portal because I can't use "server" here. I assume that you don't have a federated portal, I've never worked in that environment.&lt;/P&gt;&lt;P&gt;I've never tried to use a hosted file gdb. Now I have to go try that!&lt;/P&gt;&lt;P&gt;Jupyter notebooks are a good way to test this stuff too. Especially from VS Code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 16:47:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353587#M9328</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2023-11-27T16:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353594#M9330</link>
      <description>&lt;P&gt;Yeah the docs say url "should be a web address to either an ArcGIS Enterprise &lt;STRONG&gt;portal&lt;/STRONG&gt; or to ArcGIS Online in the form: &amp;lt;scheme&amp;gt;://&amp;lt;fully_qualified_domain_name&amp;gt;/&amp;lt;web_adaptor&amp;gt;"&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 16:55:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353594#M9330</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2023-11-27T16:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353940#M9333</link>
      <description>&lt;P&gt;In my enterprise&amp;nbsp;portal, there is a geodatabase file that I would like to access. From there, I would like to get the domain information. Could you please help me with this?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 05:12:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1353940#M9333</guid>
      <dc:creator>NarendranathMandal</dc:creator>
      <dc:date>2023-11-28T05:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1355034#M9343</link>
      <description>&lt;P&gt;I am able to connect to my portal for arcgis but unable&amp;nbsp; to access the feature service which is published as a gdb file&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 09:15:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1355034#M9343</guid>
      <dc:creator>NarendranathMandal</dc:creator>
      <dc:date>2023-11-30T09:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1355336#M9345</link>
      <description>&lt;P&gt;Okay, well, I followed the instructions I found here: &lt;A href="https://enterprise.arcgis.com/en/portal/latest/use/publish-features.htm#ESRI_SECTION1_F878B830119B4443A8CFDA8A96AAF7D1" target="_blank"&gt;https://enterprise.arcgis.com/en/portal/latest/use/publish-features.htm#ESRI_SECTION1_F878B830119B4443A8CFDA8A96AAF7D1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I put a feature class into an FGDB and then zipped it, then in Portal I published it as a feature service. My URL is similar to yours so I am assuming you did something similar. It's like publishing a shapefile.&lt;/P&gt;&lt;P&gt;My feature service is &lt;A href="https://delta.co.clatsop.or.us/server/rest/services/Hosted/comm_gdb/FeatureServer" target="_blank"&gt;https://delta.co.clatsop.or.us/server/rest/services/Hosted/comm_gdb/FeatureServer&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Now I have a way to try out your code.&lt;/P&gt;&lt;P&gt;Geez the docs are so hard to use now, but all nicely formatted in Esri web site! Sad. "Not invented here" syndrome. Anyway.&lt;/P&gt;&lt;P&gt;The contentmanager (&lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#contentmanager" target="_blank"&gt;https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#contentmanager&lt;/A&gt;) "get"method only accepts an item id from Portal and you are feeding it a URL. Find the item id and feed it that instead.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import pprint

# assuming you did the login thing here and have an object "gis"...

item = gis.content.search(service_url)[0]
pprint.pprint(item)&lt;/LI-CODE&gt;&lt;P&gt;Not sure what you want to do from here. For my feature services I get this:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;Item title:"comm_gdb" type:Feature Layer Collection owner:bwilson@CLATSOP&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 19:36:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1355336#M9345</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2023-11-30T19:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to Access feature service</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1355351#M9346</link>
      <description>&lt;P&gt;I try to answer questions here because I learn a LOT every time I do. This time around I learned how to publish a FGDB. I probably never will &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; but it's good to know how it works.&lt;/P&gt;&lt;P&gt;I never tried to do a "search" on a complete URL so it was interesting to see that it worked at all. Normally I search on a title or some short string. There are many options for the search method, arguably too many. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I don't see a quick way to get the itemId from the "item" object so that you can do the "get" call, and you can't feed the "item" into it.&lt;/P&gt;&lt;P&gt;I dug around in my own code and found how I do it. I bypass the Python API and use a _con. Looks like this&lt;/P&gt;&lt;LI-CODE lang="python"&gt;class PortalContent(object):
    def __init__(self, gis):
        self.gis = gis
        return

    def findItems(self, title=None, name=None, type=None) -&amp;gt; list:
        """ 
        Search the Portal using any combination of name, title, and type.
        Return the list of items, which might be empty.
        """        
        connection = gis._con

        # https://developers.arcgis.com/rest/users-groups-and-items/search-reference.htm
        url = connection.baseurl + 'search'
        q = ''
        if name:
            q += 'name:"%s"' % name
        if title:
            if q: q += ' AND '
            q += 'title:"%s"' % title
        if type:
            if q: q += ' AND '
            q += 'type:"%s"' % type
        params = {
            'q': '',     # This is required. This is the fuzzy match operation.
            'filter': q  # This is the exact match operation.
        }
        res = connection.post(url, params)
        return res['results']


    def findIds(self, title=None, name=None, type=None) -&amp;gt; list:
        """ 
        Search the Portal using any combination of name, title, and type.
        Return a list of ids, which might be empty.
        """
        items = self.findItems(title, name, type)
        ids = [item['id'] for item in items]
        return ids&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 20:09:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/unable-to-access-feature-service/m-p/1355351#M9346</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2023-11-30T20:09:32Z</dc:date>
    </item>
  </channel>
</rss>

