<?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: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1096012#M6597</link>
    <description>&lt;P&gt;&lt;STRONG&gt;Update:&lt;/STRONG&gt; I was able to get this to work with the Esri env as cloned, but it did require changes to my code that have worked for years.&lt;/P&gt;&lt;P&gt;The requests.get() method has a proxy dict you can pass in for your proxy server settings. It has two keys: 'http' and 'https'. The values for those keys are the proxy server URL for each protocol.&amp;nbsp;This issue I encountered is an https request (almost all traffic these days is https).&amp;nbsp;&lt;/P&gt;&lt;P&gt;My proxy URL for the 'https' dict key started with 'https://' and included ':80' port at the end. This has worked fine for years, but broke in Pro 2.8.1. Using the default conda env as cloned,&amp;nbsp;I changed that URL to start with 'http://' and removed the ':80' port number at the end and it worked.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Sep 2021 16:46:32 GMT</pubDate>
    <dc:creator>davedoesgis</dc:creator>
    <dc:date>2021-09-07T16:46:32Z</dc:date>
    <item>
      <title>ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1093655#M6559</link>
      <description>&lt;P&gt;I have some Python code that has worked fine for a long time, but just broke upon upgrading to Pro 2.8.1. The code uses a cloned conda environment from Pro (but I think you'll have this same problem in the default one, too). This isn't a GIS issue; I am just using the Python 'requests' library to download a file from the Internet (with the requests.get() method). I have to go through a proxy server at work, and had no problems downloading a test file that I use for development, which is hosted on a server on our network. As soon as I flip it over to download from the real source on the Internet (i.e.: not on our local network), I get an SSLError exception with this message:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SSLError: HTTPSConnectionPool(host='&amp;lt;hostname&amp;gt;', port=443): Max retries exceeded &lt;BR /&gt;with url: &amp;lt;URL here&amp;gt; (Caused by SSLError(SSLError(1, '[SSL: WRONG_VERSION_NUMBER] &lt;BR /&gt;wrong version number (_ssl.c:1091)')))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've already found the solution, which I will post below so I can mark it correct. Keep reading.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 16:43:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1093655#M6559</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-08-30T16:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1093671#M6560</link>
      <description>&lt;P&gt;Some Googling and following links led me to try a bunch of stuff, but eventually this is what worked:&amp;nbsp;&lt;A href="https://stackoverflow.com/a/66656188" target="_blank" rel="noopener"&gt;https://stackoverflow.com/a/66656188&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I don't have admin rights to my machine, so I have to work in cloned copies of the Conda environment. Even if you can tinker with the default Conda env, I don't recommend it, so do this in a clone. Activate your cloned env in the app "Python Command Prompt". Your clone's root path should be here:&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Users\&lt;FONT color="#993300"&gt;&lt;EM&gt;&amp;lt;user&amp;gt;&lt;/EM&gt;&lt;/FONT&gt;\AppData\Local\ESRI\conda\envs\&lt;FONT color="#993300"&gt;&lt;EM&gt;&amp;lt;env_name&amp;gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Navigate to the Scripts subfolder and issue this command:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;.\pip.exe install --proxy &amp;lt;proxy_URL&amp;gt; urllib3==1.23&lt;/PRE&gt;&lt;P&gt;You may be able to issue this command from elsewhere, but I like to be explicit about which env I'm in and which pip.exe I'm calling.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will downgrade urllib3 to version 1.23. I got the following output from this, including an error partway through, but it ultimately said it succeeded, and most importantly, my code works now.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Collecting urllib3==1.23&lt;BR /&gt;Downloading urllib3-1.23-py2.py3-none-any.whl (133 kB)&lt;BR /&gt;|████████████████████████████████| 133 kB 123 kB/s&lt;BR /&gt;Installing collected packages: urllib3&lt;BR /&gt;Attempting uninstall: urllib3&lt;BR /&gt;Found existing installation: urllib3 1.26.4&lt;BR /&gt;Uninstalling urllib3-1.26.4:&lt;BR /&gt;Successfully uninstalled urllib3-1.26.4&lt;BR /&gt;ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.&lt;BR /&gt;requests-negotiate-sspi 0.0.0 requires pypiwin32&amp;gt;=223, which is not installed.&lt;BR /&gt;Successfully installed urllib3-1.23&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This isn't an Esri bug, per se, since it is with external libraries. But it is a version incompatibility in the libraries they deliver in Conda. And since this only appears&amp;nbsp;in IT environments with a proxy server, I'm guessing that escaped Esri's unit tests. Given the prevalence of proxy servers in their largest clients' IT environments, if anyone at Esri reads this, please make sure you're testing how things work with proxy servers. I had one other error pop up in 2.8.1 related to a proxy server.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 16:42:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1093671#M6560</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-08-30T16:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1096012#M6597</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Update:&lt;/STRONG&gt; I was able to get this to work with the Esri env as cloned, but it did require changes to my code that have worked for years.&lt;/P&gt;&lt;P&gt;The requests.get() method has a proxy dict you can pass in for your proxy server settings. It has two keys: 'http' and 'https'. The values for those keys are the proxy server URL for each protocol.&amp;nbsp;This issue I encountered is an https request (almost all traffic these days is https).&amp;nbsp;&lt;/P&gt;&lt;P&gt;My proxy URL for the 'https' dict key started with 'https://' and included ':80' port at the end. This has worked fine for years, but broke in Pro 2.8.1. Using the default conda env as cloned,&amp;nbsp;I changed that URL to start with 'http://' and removed the ':80' port number at the end and it worked.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Sep 2021 16:46:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1096012#M6597</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-09-07T16:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1125681#M6904</link>
      <description>&lt;P&gt;Thanks for the info, got me halfway there after upgrading to Pro 2.8. I had to change the https proxy url to use 'http://' as well and that got normal requests working. However, I still can't get a request to ArcGIS Online to work via the Python for ArcGIS API. This works for requests:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;proxyDict = {
    'https': 'http://user:pwd@proxyURL:8080',
    'http': 'http://user:pwd@proxyURL:8080'
    }

r=requests.get('https://httpbin.org/ip', proxies=proxyDict)
print(r.json())&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;But if I try it with a ArcGIS for Python API call, with any of the following, it doesn't work:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;my_gis = gis.GIS(my_gis_url, username, password, verify_cert=False, proxy_host='user:pwd@proxyURL', proxy_port=8080)

my_gis = gis.GIS(my_gis_url, username, password, verify_cert=False, proxy_host='user:pwd@proxyURL', proxy_port=8080, proxy=proxyDict)

my_gis = gis.GIS(my_gis_url, username, password, verify_cert=False, proxy=proxyDict)&lt;/LI-CODE&gt;&lt;P&gt;Error:&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connection.py", line 170, in _new_conn&lt;BR /&gt;(self._dns_host, self.port), self.timeout, **extra_kw&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\util\connection.py", line 96, in create_connection&lt;BR /&gt;raise err&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\util\connection.py", line 86, in create_connection&lt;BR /&gt;sock.connect(sa)&lt;BR /&gt;TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond&lt;/P&gt;&lt;P&gt;I've also tried setting the proxy environments but that hasn't worked either for the API:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;os.environ['http_proxy'] = "http://user:pwd@proxyURL:8080"
os.environ['https_proxy'] = "http://user:pwd@proxyURL:8080"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 03:58:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1125681#M6904</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-14T03:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1125954#M6905</link>
      <description>&lt;P&gt;Regarding the arcgis.gis.GIS() connection, I had to drop my &lt;FONT face="courier new,courier"&gt;proxy_host&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;proxy_port&lt;/FONT&gt; options to get it to work at 2.8. I guess it is now somehow detecting the proxy settings on its own now. It was a head scratcher as to &lt;EM&gt;why&lt;/EM&gt; it works, but that was the only way it would work for me. If that doesn't solve it for you, I recommend starting a new thread, since that's getting into a separate issue from the original question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 16:50:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1125954#M6905</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-12-14T16:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1126119#M6906</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/278"&gt;@AndrewChapkowski&lt;/a&gt;&amp;nbsp;any chance you know what's going on here? I can't seem to get a connection to ArcGIS Online to work despite it working with normal requests.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;my_gis = gis.GIS(my_gis_url, username, password, verify_cert=False)&lt;/LI-CODE&gt;&lt;P&gt;proxies set to: {'http': '&lt;A href="http://user:pwd@proxyURL:8080" target="_blank"&gt;http://user:pwd@proxyURL:8080&lt;/A&gt;', 'https': '&lt;A href="http://user:pwd@proxyURL:8080" target="_blank"&gt;http://user:pwd@proxyURL:8080&lt;/A&gt;'}&lt;/P&gt;&lt;P&gt;Noting the 'https' url is set to http:// and not http&lt;STRONG&gt;s&lt;/STRONG&gt;://.&lt;/P&gt;&lt;P&gt;Error:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connection.py", line 170, in _new_conn&lt;BR /&gt;(self._dns_host, self.port), self.timeout, **extra_kw&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\util\connection.py", line 96, in create_connection&lt;BR /&gt;raise err&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\util\connection.py", line 86, in create_connection&lt;BR /&gt;sock.connect(sa)&lt;BR /&gt;TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond&lt;/P&gt;&lt;P&gt;During handling of the above exception, another exception occurred:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connectionpool.py", line 706, in urlopen&lt;BR /&gt;chunked=chunked,&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connectionpool.py", line 382, in _make_request&lt;BR /&gt;self._validate_conn(conn)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connectionpool.py", line 1010, in _validate_conn&lt;BR /&gt;conn.connect()&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connection.py", line 353, in connect&lt;BR /&gt;conn = self._new_conn()&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connection.py", line 182, in _new_conn&lt;BR /&gt;self, "Failed to establish a new connection: %s" % e&lt;BR /&gt;urllib3.exceptions.NewConnectionError: &amp;lt;urllib3.connection.HTTPSConnection object at 0x000001E7CC123FC8&amp;gt;: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond&lt;/P&gt;&lt;P&gt;During handling of the above exception, another exception occurred:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\requests\adapters.py", line 449, in send&lt;BR /&gt;timeout=timeout&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\connectionpool.py", line 756, in urlopen&lt;BR /&gt;method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\urllib3\util\retry.py", line 574, in increment&lt;BR /&gt;raise MaxRetryError(_pool, url, error or ResponseError(cause))&lt;BR /&gt;urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='orgName.maps.arcgis.com', port=443): Max retries exceeded with url: /sharing/rest/generateToken (Caused by NewConnectionError('&amp;lt;urllib3.connection.HTTPSConnection object at 0x000001E7CC123FC8&amp;gt;: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))&lt;/P&gt;&lt;P&gt;During handling of the above exception, another exception occurred:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 687, in post&lt;BR /&gt;files=files)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\requests\sessions.py", line 590, in post&lt;BR /&gt;return self.request('POST', url, data=data, json=json, **kwargs)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\requests\sessions.py", line 542, in request&lt;BR /&gt;resp = self.send(prep, **send_kwargs)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\requests\sessions.py", line 655, in send&lt;BR /&gt;r = adapter.send(request, **kwargs)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\requests\adapters.py", line 516, in send&lt;BR /&gt;raise ConnectionError(e, request=request)&lt;BR /&gt;requests.exceptions.ConnectionError: HTTPSConnectionPool(host='orgName.maps.arcgis.com', port=443): Max retries exceeded with url: /sharing/rest/generateToken (Caused by NewConnectionError('&amp;lt;urllib3.connection.HTTPSConnection object at 0x000001E7CC123FC8&amp;gt;: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))&lt;/P&gt;&lt;P&gt;During handling of the above exception, another exception occurred:&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "C:\Users\username\OneDrive\Python\List_ExportUsersInGroup.py", line 49, in &amp;lt;module&amp;gt;&lt;BR /&gt;my_gis = gis.GIS(my_gis_url, username, password, verify_cert=False)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py", line 359, in __init__&lt;BR /&gt;raise e&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\__init__.py", line 343, in __init__&lt;BR /&gt;trust_env=kwargs.get("trust_env", None))&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_portalpy.py", line 173, in __init__&lt;BR /&gt;self.get_properties(True)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_portalpy.py", line 1138, in get_properties&lt;BR /&gt;raise e&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_portalpy.py", line 1126, in get_properties&lt;BR /&gt;resp = self.con.post(path, self._postdata(), ssl=True)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 632, in post&lt;BR /&gt;elif token_as_header == False and self.token is not None: #as ?token=&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 1038, in token&lt;BR /&gt;self._token = self._enterprise_token()&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 1155, in _enterprise_token&lt;BR /&gt;add_token=False)&lt;BR /&gt;File "C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 696, in post&lt;BR /&gt;"A connection error has occurred: %s" % errCE)&lt;BR /&gt;requests.exceptions.ConnectionError: A connection error has occurred: HTTPSConnectionPool(host='orgName.maps.arcgis.com', port=443): Max retries exceeded with url: /sharing/rest/generateToken (Caused by NewConnectionError('&amp;lt;urllib3.connection.HTTPSConnection object at 0x000001E7CC123FC8&amp;gt;: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 00:54:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1126119#M6906</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-15T00:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Pro 2.8.1 bug in urllib3 with proxy server</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1126149#M6907</link>
      <description>&lt;P&gt;@Anonymous User&amp;nbsp;- I suggest creating a new topic for your question. This post is old and marked as resolved, so you might get more traction elsewhere. Also. although what you're asking might be tangentially related, it's getting a bit off topic of using the Python requests lib.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 02:48:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/arcgis-pro-2-8-1-bug-in-urllib3-with-proxy-server/m-p/1126149#M6907</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2021-12-15T02:48:42Z</dc:date>
    </item>
  </channel>
</rss>

