<?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 WebSockets from ArcGIS Notebook in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579907#M22334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We try to install ArcGIS Notebooks on ArcGIS Enterprise 10.7 with Centos servers. No problem during the setup and the post-install configuration.&lt;/P&gt;&lt;P&gt;ArcGIS Notebooks is set behind an HTTPD Reverse Proxy.&lt;/P&gt;&lt;P&gt;When a new notebook is launch, the application failed to connect to the websocket.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have a typical configuration to configure the WebSocket from ArcGIS Notebook on a different port ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Mar 2019 16:29:03 GMT</pubDate>
    <dc:creator>ThomasLARGILLIER</dc:creator>
    <dc:date>2019-03-29T16:29:03Z</dc:date>
    <item>
      <title>WebSockets from ArcGIS Notebook</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579907#M22334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We try to install ArcGIS Notebooks on ArcGIS Enterprise 10.7 with Centos servers. No problem during the setup and the post-install configuration.&lt;/P&gt;&lt;P&gt;ArcGIS Notebooks is set behind an HTTPD Reverse Proxy.&lt;/P&gt;&lt;P&gt;When a new notebook is launch, the application failed to connect to the websocket.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have a typical configuration to configure the WebSocket from ArcGIS Notebook on a different port ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Mar 2019 16:29:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579907#M22334</guid>
      <dc:creator>ThomasLARGILLIER</dc:creator>
      <dc:date>2019-03-29T16:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: WebSockets from ArcGIS Notebook</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579908#M22335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas.&amp;nbsp; You will need to also make sure Apache &lt;SPAN&gt;httpd&amp;nbsp;&lt;/SPAN&gt;proxies WS/WSS calls through.&amp;nbsp; Let me know if that makes sense.&amp;nbsp; What version of httpd are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2019 19:31:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579908#M22335</guid>
      <dc:creator>BillMajor</dc:creator>
      <dc:date>2019-04-01T19:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: WebSockets from ArcGIS Notebook</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579909#M22336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I add to add Rewrite rules in httpd conf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RewriteEngine on&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RewriteRule .* wss://example.com:8443%{REQUEST_URI} &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it's working. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Apr 2019 11:30:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/579909#M22336</guid>
      <dc:creator>MarcLE_MOIGNE1</dc:creator>
      <dc:date>2019-04-08T11:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: WebSockets from ArcGIS Notebook</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/1010867#M29155</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you are using Nginx as reverse proxy you may use bellow code in your nginx configuration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;location /notebook {
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_pass https://xxx:443;
        proxy_http_version 1.1;
   	proxy_set_header Upgrade $http_upgrade;
    	proxy_set_header Connection "upgrade";
    	proxy_read_timeout 86400;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 09:08:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/websockets-from-arcgis-notebook/m-p/1010867#M29155</guid>
      <dc:creator>Suleyman-Arslan</dc:creator>
      <dc:date>2020-12-18T09:08:30Z</dc:date>
    </item>
  </channel>
</rss>

