<?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: SSL Errors when running &amp;quot;Test your install&amp;quot; in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858395#M4108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two problems in your 'secured' network environment:&lt;/P&gt;&lt;P&gt;1) certificate verification problem when connecting to the GIS&lt;/P&gt;&lt;P&gt;2) map widget not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 1 : Adding verify_cert=False when constructing GIS object works around the SSL verification problem, and the rest of the ArcGIS Python API (except for the map widget) should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 2: I'm expecting that you'll get better results (or errors) using Chrome, so can you try it out in Chrome and update with the results there? We need to figure out if there is a problem loading any javascript file in your environment that is causing this error. Checking the Network tab in Chrome developer console can reveal such issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jan 2017 10:27:47 GMT</pubDate>
    <dc:creator>RohitSingh2</dc:creator>
    <dc:date>2017-01-09T10:27:47Z</dc:date>
    <item>
      <title>SSL Errors when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858389#M4102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am following instructions from&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/python/guide/install-and-set-up/#Test-your-install" title="https://developers.arcgis.com/python/guide/install-and-set-up/#Test-your-install"&gt;Install and Set Up | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;and I believe I have it installed correctly. Note that I am in a very secured environment and such.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to run the "Hello World" type of test, it fails with following error. I have tried updating the following based on&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://github.com/ContinuumIO/anaconda-issues/issues/494" title="https://github.com/ContinuumIO/anaconda-issues/issues/494"&gt;SSL verification error on Windows · Issue #494 · ContinuumIO/anaconda-issues · GitHub&lt;/A&gt;&amp;nbsp;but in vain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL style="color: #333333; padding-left: 2em; margin-bottom: 16px; background-color: #ffffff;"&gt;&lt;LI&gt;&lt;P style="margin-top: 16px; margin-bottom: 16px;"&gt;In .condarc, set the following&lt;/P&gt;&lt;UL style="padding-left: 2em;"&gt;&lt;LI&gt;ssl_verify: False&lt;BR /&gt;Note that this DISABLES verification of SSL certificiates.&lt;BR /&gt;You can accomplish this with the following command&lt;/LI&gt;&lt;/UL&gt;&lt;PRE style="padding: 16px; margin-bottom: 16px; background-color: #f7f7f7;"&gt;&lt;CODE style="background: none; border: 0px currentColor;"&gt; conda config --set ssl_verify False&lt;/CODE&gt;&lt;/PRE&gt;&lt;/LI&gt;&lt;LI style="margin-top: 0.25em;"&gt;&lt;P style="margin-top: 16px; margin-bottom: 16px;"&gt;Upgrade openssl and cryptography:&lt;BR /&gt;&lt;CODE style="padding: 0.2em 0px; background-color: rgba(0, 0, 0, 0.039215);"&gt;conda update openssl cryptography&lt;/CODE&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI style="margin-top: 0.25em;"&gt;&lt;P style="margin-top: 16px; margin-bottom: 16px;"&gt;Update certifi:&lt;BR /&gt;&lt;CODE style="padding: 0.2em 0px; background-color: rgba(0, 0, 0, 0.039215);"&gt;conda update certifi&lt;/CODE&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI style="margin-top: 0.25em;"&gt;&lt;P style="margin-top: 16px; margin-bottom: 16px;"&gt;Re-enable SSL verification by removing the ssl_verify line from .condarc&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;How can move forward and resolve this issue....?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;---------------------------------------------------------------------------&lt;BR /&gt;SSLError Traceback (most recent call last)&lt;BR /&gt;D:\Program Files (x86)\Anaconda3\lib\urllib\request.py in do_open(self, http_class, req, **http_conn_args)&lt;BR /&gt; 1253 try:&lt;BR /&gt;-&amp;gt; 1254 h.request(req.get_method(), req.selector, req.data, headers)&lt;BR /&gt; 1255 except OSError as err: # timeout error&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\http\client.py in request(self, method, url, body, headers)&lt;BR /&gt; 1105 """Send a complete request to the server."""&lt;BR /&gt;-&amp;gt; 1106 self._send_request(method, url, body, headers)&lt;BR /&gt; 1107&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\http\client.py in _send_request(self, method, url, body, headers)&lt;BR /&gt; 1150 body = _encode(body, 'body')&lt;BR /&gt;-&amp;gt; 1151 self.endheaders(body)&lt;BR /&gt; 1152&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\http\client.py in endheaders(self, message_body)&lt;BR /&gt; 1101 raise CannotSendHeader()&lt;BR /&gt;-&amp;gt; 1102 self._send_output(message_body)&lt;BR /&gt; 1103&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\http\client.py in _send_output(self, message_body)&lt;BR /&gt; 933 &lt;BR /&gt;--&amp;gt; 934 self.send(msg)&lt;BR /&gt; 935 if message_body is not None:&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\http\client.py in send(self, data)&lt;BR /&gt; 876 if self.auto_open:&lt;BR /&gt;--&amp;gt; 877 self.connect()&lt;BR /&gt; 878 else:&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\http\client.py in connect(self)&lt;BR /&gt; 1259 self.sock = self._context.wrap_socket(self.sock,&lt;BR /&gt;-&amp;gt; 1260 server_hostname=server_hostname)&lt;BR /&gt; 1261 if not self._context.check_hostname and self._check_hostname:&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\ssl.py in wrap_socket(self, sock, server_side, do_handshake_on_connect, suppress_ragged_eofs, server_hostname)&lt;BR /&gt; 376 server_hostname=server_hostname,&lt;BR /&gt;--&amp;gt; 377 _context=self)&lt;BR /&gt; 378&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\ssl.py in __init__(self, sock, keyfile, certfile, server_side, cert_reqs, ssl_version, ca_certs, do_handshake_on_connect, family, type, proto, fileno, suppress_ragged_eofs, npn_protocols, ciphers, server_hostname, _context)&lt;BR /&gt; 751 raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")&lt;BR /&gt;--&amp;gt; 752 self.do_handshake()&lt;BR /&gt; 753&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\ssl.py in do_handshake(self, block)&lt;BR /&gt; 987 self.settimeout(None)&lt;BR /&gt;--&amp;gt; 988 self._sslobj.do_handshake()&lt;BR /&gt; 989 finally:&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\ssl.py in do_handshake(self)&lt;BR /&gt; 632 """Start the SSL/TLS handshake."""&lt;BR /&gt;--&amp;gt; 633 self._sslobj.do_handshake()&lt;BR /&gt; 634 if self.context.check_hostname:&lt;/P&gt;&lt;P&gt;SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:645)&lt;/P&gt;&lt;P&gt;During handling of the above exception, another exception occurred:&lt;/P&gt;&lt;P&gt;URLError Traceback (most recent call last)&lt;BR /&gt;&amp;lt;ipython-input-1-9d37624d78f7&amp;gt; in &amp;lt;module&amp;gt;()&lt;BR /&gt; 1 from arcgis.gis import GIS&lt;BR /&gt;----&amp;gt; 2 my_gis = GIS()&lt;BR /&gt; 3 my_gis.map()&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\site-packages\arcgis\gis.py in __init__(self, url, username, password, key_file, cert_file, verify_cert, set_active)&lt;BR /&gt; 91 self._datastores_list = None&lt;BR /&gt; 92 self._portal = portalpy.Portal(self._url, self._username, self._password, self._key_file, self._cert_file,&lt;BR /&gt;---&amp;gt; 93 verify_cert=self._verify_cert)&lt;BR /&gt; 94 &lt;BR /&gt; 95 if self._url.lower() == "pro":&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\site-packages\arcgis\_impl\portalpy.py in __init__(self, url, username, password, key_file, cert_file, expiration, referer, proxy_host, proxy_port, connection, workdir, tokenurl, verify_cert)&lt;BR /&gt; 157 proxy_host=proxy_host,&lt;BR /&gt; 158 proxy_port=proxy_port,&lt;BR /&gt;--&amp;gt; 159 verify_cert=verify_cert)&lt;BR /&gt; 160 #self.get_version(True)&lt;BR /&gt; 161 self.get_properties(True)&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\site-packages\arcgis\_impl\connection.py in __init__(self, baseurl, tokenurl, username, password, key_file, cert_file, expiration, all_ssl, referer, proxy_host, proxy_port, connection, verify_cert)&lt;BR /&gt; 272 &lt;BR /&gt; 273 if cert_file is None and key_file is None:&lt;BR /&gt;--&amp;gt; 274 self.login(username, password, expiration)&lt;BR /&gt; 275 &lt;BR /&gt; 276 #----------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\site-packages\arcgis\_impl\connection.py in login(self, username, password, expiration)&lt;BR /&gt; 422 self._token = newtoken&lt;BR /&gt; 423 &lt;BR /&gt;--&amp;gt; 424 resp = self.post('', { 'f': 'json' }, add_token=False) # probe portal to find auth scheme&lt;BR /&gt; 425 # if basic, digest, NTLM or Kerberos, etc is being used&lt;BR /&gt; 426 # except handler will catch it and set self._auth appropriately&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\site-packages\arcgis\_impl\connection.py in post(self, path, postdata, files, ssl, compress, is_retry, use_ordered_dict, add_token, verify_cert, token)&lt;BR /&gt; 917 opener.addheaders = headers&lt;BR /&gt; 918 #print("***"+url)&lt;BR /&gt;--&amp;gt; 919 resp = opener.open(url, data=encoded_postdata.encode())&lt;BR /&gt; 920 resp_data, is_file = self._process_response(resp)&lt;BR /&gt; 921&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\urllib\request.py in open(self, fullurl, data, timeout)&lt;BR /&gt; 464 req = meth(req)&lt;BR /&gt; 465 &lt;BR /&gt;--&amp;gt; 466 response = self._open(req, data)&lt;BR /&gt; 467 &lt;BR /&gt; 468 # post-process response&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\urllib\request.py in _open(self, req, data)&lt;BR /&gt; 482 protocol = req.type&lt;BR /&gt; 483 result = self._call_chain(self.handle_open, protocol, protocol +&lt;BR /&gt;--&amp;gt; 484 '_open', req)&lt;BR /&gt; 485 if result:&lt;BR /&gt; 486 return result&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\urllib\request.py in _call_chain(self, chain, kind, meth_name, *args)&lt;BR /&gt; 442 for handler in handlers:&lt;BR /&gt; 443 func = getattr(handler, meth_name)&lt;BR /&gt;--&amp;gt; 444 result = func(*args)&lt;BR /&gt; 445 if result is not None:&lt;BR /&gt; 446 return result&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\urllib\request.py in https_open(self, req)&lt;BR /&gt; 1295 def https_open(self, req):&lt;BR /&gt; 1296 return self.do_open(http.client.HTTPSConnection, req,&lt;BR /&gt;-&amp;gt; 1297 context=self._context, check_hostname=self._check_hostname)&lt;BR /&gt; 1298 &lt;BR /&gt; 1299 https_request = AbstractHTTPHandler.do_request_&lt;/P&gt;&lt;P&gt;D:\Program Files (x86)\Anaconda3\lib\urllib\request.py in do_open(self, http_class, req, **http_conn_args)&lt;BR /&gt; 1254 h.request(req.get_method(), req.selector, req.data, headers)&lt;BR /&gt; 1255 except OSError as err: # timeout error&lt;BR /&gt;-&amp;gt; 1256 raise URLError(err)&lt;BR /&gt; 1257 r = h.getresponse()&lt;BR /&gt; 1258 except:&lt;/P&gt;&lt;P&gt;URLError: &amp;lt;urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:645)&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2017 01:57:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858389#M4102</guid>
      <dc:creator>VishalPahuja1</dc:creator>
      <dc:date>2017-01-05T01:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Erros when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858390#M4103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To skip verification of certificate when connecting to your GIS, set the verify_cert parameter to False:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;# Connect to the GIS&lt;BR /&gt;&lt;SPAN&gt;gis = GIS("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fyour.gis.com%2Fportal" rel="nofollow" target="_blank"&gt;https://your.gis.com/portal&lt;/A&gt;&lt;SPAN&gt;", "username", "password", &lt;/SPAN&gt;&lt;STRONG&gt;verify_cert=False&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2017 03:30:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858390#M4103</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-01-05T03:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Erros when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858391#M4104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;Thanks for your quick reply and pointer, I tried the suggestion but I am still not able to get the map to show up. I am using following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from arcgis.gis import GIS&lt;BR /&gt;my_gis = GIS("&lt;A href="http://pgegisportal.maps.arcgis.com/"&gt;http://pgegisportal.maps.arcgis.com/&lt;/A&gt;", "v1p3_pgegisportal", "*********", verify_cert=False)&lt;BR /&gt;my_gis.map()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from arcgis.gis import GIS&lt;BR /&gt;my_gis = GIS("&lt;A href="http://pgegisportal.maps.arcgis.com/"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;http://pgegisportal.maps.arcgis.com/home&lt;/SPAN&gt;&lt;/A&gt;", "v1p3_pgegisportal", "*********", verify_cert=False)&lt;BR /&gt;my_gis.map()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that I am not using portal, but arcgis organizational account. The behaviour is different however; I am not getting error....but I never see the map either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: I am noobie in Python NOtebook, Conda, Jupyter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2017 03:55:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858391#M4104</guid>
      <dc:creator>VishalPahuja1</dc:creator>
      <dc:date>2017-01-05T03:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Erros when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858392#M4105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After I closed the notebook, I still saw "Running" in the jupyter dashboard. So I deleted that notebook. I created a new notebook and tried to run the same code again...I get following in the browser javascropt console:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIR&gt;&lt;P&gt;Refresh the page to see messages that may have occurred before the F12 tools were opened.&lt;/P&gt;&lt;P&gt;Session: kernel_created (da298c90-1f8b-44a5-9129-a7649815e891)&lt;/P&gt;&lt;P&gt;Starting WebSockets:ws://localhost:8888/api/kernels/067401e9-3888-4d24-b956-71ceeccc95b8&lt;/P&gt;&lt;P&gt;Loading extension: jupyter-js-widgets/extension&lt;/P&gt;&lt;P&gt;Loading extension: arcgis/mapview&lt;/P&gt;&lt;P&gt;loaded map widget&lt;/P&gt;&lt;P&gt;Loading extension: nbpresent/js/nbpresent.min&lt;/P&gt;&lt;P&gt;Loading extension: nb_anacondacloud/main&lt;/P&gt;&lt;P&gt;loaded widgets&lt;/P&gt;&lt;P&gt;Loading extension: nb_conda/main&lt;/P&gt;&lt;P&gt;Kernel: kernel_connected (067401e9-3888-4d24-b956-71ceeccc95b8)&lt;/P&gt;&lt;P&gt;Kernel: kernel_ready (067401e9-3888-4d24-b956-71ceeccc95b8)&lt;/P&gt;&lt;P&gt;Widget backend and frontend versions are compatible&lt;/P&gt;&lt;P&gt;Widget backend and frontend versions are compatible&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-size: small;"&gt;SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3. &lt;BR /&gt; &lt;/SPAN&gt;&lt;A _jive_internal="true" href="https://community.esri.com/message/0"&gt;&lt;SPAN style="color: #000080; text-decoration: underline; font-size: small;"&gt;Untitled.ipynb&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RequestError: Unable to load &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fpgegisportal.maps.arcgis.com%2Fsharing%2Frest%2FgenerateToken" rel="nofollow" target="_blank"&gt;https://pgegisportal.maps.arcgis.com/sharing/rest/generateToken&lt;/A&gt;&lt;SPAN&gt; status: 0&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIR&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2017 04:15:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858392#M4105</guid>
      <dc:creator>VishalPahuja1</dc:creator>
      <dc:date>2017-01-05T04:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Errors when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858393#M4106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you've correctly narrowed down the cause of the map widget not showing to this error.&lt;/P&gt;&lt;P&gt;I'm not sure why you're getting this error but it seems it is IE specific. Can you retry using Chrome or Firefox?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You mentioned that you're in a 'very secured environment'.&amp;nbsp;Is that environment causing other files to not load? What is this secured environment? Connecting to arcgis online should not be causing an SSL Certificate verification environment, so I'm wondering why you get that error in the first place when the SSL certificate of &amp;nbsp;arcgis online and your online org (&lt;A class="link-titled" href="https://pgegisportal.maps.arcgis.com/home/signin.html?returnUrl=https%3A%2F%2Fpgegisportal.maps.arcgis.com%2Fhome%2Findex.html" title="https://pgegisportal.maps.arcgis.com/home/signin.html?returnUrl=https%3A%2F%2Fpgegisportal.maps.arcgis.com%2Fhome%2Findex.html"&gt;https://pgegisportal.maps.arcgis.com/)&lt;/A&gt;&amp;nbsp;is valid. We need to resolve that problem first as that is likely causing these other errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jan 2017 17:20:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858393#M4106</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-01-05T17:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Errors when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858394#M4107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on getting Chrome and Firefox installed on this server but in the meanwhile I want to think out loud. On this server, when I try to access &lt;SPAN style="font-size: 12pt;"&gt;&lt;A href="https://pgegisportal.maps.arcgis.com"&gt;https://pgegisportal.maps.arcgis.com&lt;/A&gt;, I get a warning that this site is not secured. I think this is becuase the the CRL (Certificate Revocation List) URL is NOT accessible from the server. Thats what I mean from "secure environment". We had to get exception to get arcgis.com accessible but it looks like CRL is from digicert which probably is not accessible from this server:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;URL=&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fcrl3.digicert.com%2Fsha2-ha-server-g5.crl" rel="nofollow" target="_blank"&gt;http://crl3.digicert.com/sha2-ha-server-g5.crl&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;WHen I access my org portal from this server, I see the URL is NOT secure as it is not able to verify it....but having said that, if and when we give parameter verify_cert to be false, I am not sure why it is still not working!!! I think that might be bug in the API. There has to be a way for API to not check digicert CRL in my opinion. Can you try in your environment to prevent traffic to CRL?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN lang="EN"&gt;I have a screenshot I can share...may be I will email it to you directly. Thanks for your help on this. Regards&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Jan 2017 05:30:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858394#M4107</guid>
      <dc:creator>VishalPahuja1</dc:creator>
      <dc:date>2017-01-07T05:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Errors when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858395#M4108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two problems in your 'secured' network environment:&lt;/P&gt;&lt;P&gt;1) certificate verification problem when connecting to the GIS&lt;/P&gt;&lt;P&gt;2) map widget not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 1 : Adding verify_cert=False when constructing GIS object works around the SSL verification problem, and the rest of the ArcGIS Python API (except for the map widget) should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem 2: I'm expecting that you'll get better results (or errors) using Chrome, so can you try it out in Chrome and update with the results there? We need to figure out if there is a problem loading any javascript file in your environment that is causing this error. Checking the Network tab in Chrome developer console can reveal such issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2017 10:27:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858395#M4108</guid>
      <dc:creator>RohitSingh2</dc:creator>
      <dc:date>2017-01-09T10:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: SSL Errors when running "Test your install"</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858396#M4109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to close this thread...I upgraded the api to the latest version today and now I am able to "test my install" succesfully. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2017 04:25:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/ssl-errors-when-running-quot-test-your-install/m-p/858396#M4109</guid>
      <dc:creator>VishalPahuja1</dc:creator>
      <dc:date>2017-06-15T04:25:09Z</dc:date>
    </item>
  </channel>
</rss>

