<?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 How do I get to the Geo Maps server from behind a firewall in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/144791#M259</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to setup a Geo Maps Exploration (I'm just using SASHELP.PRDSAL2 as the data source) and I can not see the map, even though the data points are showing in the visualization.&amp;nbsp; My understanding is that VAE sends an HTTP request to a Geo Map server, but I'm behind a firewall.&amp;nbsp; How do I tell VAE to use a particular http proxy host and port so that it can get to the server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jan 2014 16:24:40 GMT</pubDate>
    <dc:creator>dlbarron</dc:creator>
    <dc:date>2014-01-17T16:24:40Z</dc:date>
    <item>
      <title>How do I get to the Geo Maps server from behind a firewall</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/144791#M259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to setup a Geo Maps Exploration (I'm just using SASHELP.PRDSAL2 as the data source) and I can not see the map, even though the data points are showing in the visualization.&amp;nbsp; My understanding is that VAE sends an HTTP request to a Geo Map server, but I'm behind a firewall.&amp;nbsp; How do I tell VAE to use a particular http proxy host and port so that it can get to the server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 16:24:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/144791#M259</guid>
      <dc:creator>dlbarron</dc:creator>
      <dc:date>2014-01-17T16:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get to the Geo Maps server from behind a firewall</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/144792#M260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like you have a configuration issue. You will need to provide proxy details to the VA web applications by using the following options.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Dhttp.proxyHost=localproxyserver.domain&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt; hostname of your proxy server&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;-Dhttp.proxyPort=80&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;port number of your proxy server&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;-Dhttp.nonProxyHosts="localhost|myVA-mid-servername|myVA-mid-servername.com"&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;hostname that does not require proxy server&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to add these options to the wrapper.conf file of the SAS web application server hosting VA web applications. In this file you will find bunch of JVM options that are set by wrapper.java.additional.NN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the end of the wrapper.java.additional.NN you will need to add wrapper.java.additional.NN+1&amp;nbsp; to set the JVM option, and follow the same steps for each options keeping number incrementing.&amp;nbsp;&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL style="list-style-type: lower-alpha;"&gt;&lt;LI&gt;wrapper.java.additional.46=…&lt;/LI&gt;&lt;LI&gt;wrapper.java.additional.47=-Dhttp.proxyHost=localproxyserver.domain&lt;/LI&gt;&lt;LI&gt;wrapper.java.additional.48=-Dhttp.proxyPort=80&lt;/LI&gt;&lt;LI&gt;wrapper.java.additional.49=-Dhttp.nonProxyHosts="localhost|myVA-mid-servername|myVA-mid-servername.com"&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; font-size: 11pt;"&gt;Once you have added above options restart the SAS web application servers. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Calibri','sans-serif'; font-size: 11pt;"&gt;hope that helps. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 03:59:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/144792#M260</guid>
      <dc:creator>Ce_Wo</dc:creator>
      <dc:date>2014-01-20T03:59:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get to the Geo Maps server from behind a firewall</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/233212#M2740</link>
      <description>What is the specific URL that the service will reference? We would like to limit the URLs opened by the proxy.</description>
      <pubDate>Thu, 05 Nov 2015 07:55:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/233212#M2740</guid>
      <dc:creator>Eugene</dc:creator>
      <dc:date>2015-11-05T07:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get to the Geo Maps server from behind a firewall</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/233223#M2742</link>
      <description>&lt;P&gt;SAS VA is using &lt;A href="http://openstreetmap.org" target="_self"&gt;openstreetmap.org&lt;/A&gt;&amp;nbsp;or you can host it also on your server if you don't want to open it on Proxy server.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2015 10:30:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/233223#M2742</guid>
      <dc:creator>Jan_Baran</dc:creator>
      <dc:date>2015-11-05T10:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get to the Geo Maps server from behind a firewall</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/265056#M3955</link>
      <description>&lt;P&gt;a bit late :&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Internet connection&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="195"&gt;
&lt;P&gt;&lt;STRONG&gt;Source&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="237"&gt;
&lt;P&gt;&lt;STRONG&gt;Client&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="142"&gt;
&lt;P&gt;&lt;STRONG&gt;Target&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="193"&gt;
&lt;P&gt;&lt;STRONG&gt;Component accessed&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="80"&gt;
&lt;P&gt;&lt;STRONG&gt;Port&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="104"&gt;
&lt;P&gt;&lt;STRONG&gt;Direction&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="195"&gt;
&lt;P&gt;SAS Node/Server Host&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="237"&gt;
&lt;P&gt;SAS Web Application Server&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="142"&gt;
&lt;P&gt;opnsta.sas.com&lt;/P&gt;
&lt;P&gt;opnstb.sas.com&lt;/P&gt;
&lt;P&gt;opnstc.sas.com&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="193"&gt;
&lt;P&gt;OpenStreetMap server&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="80"&gt;
&lt;P&gt;80/443&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="104"&gt;
&lt;P&gt;Outbound&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Wed, 20 Apr 2016 11:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/265056#M3955</guid>
      <dc:creator>mojerry_realdolmen</dc:creator>
      <dc:date>2016-04-20T11:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get to the Geo Maps server from behind a firewall</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/276866#M4567</link>
      <description>&lt;P&gt;as there is an issue with ntlm authentification the "easiest" way is to explain to IT that you just need access to a specific website to retrieve ineractive maps. Give them the different URL as listed above but depending on the system used they'll need to provide the IP address to open the gate &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jun 2016 08:10:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-do-I-get-to-the-Geo-Maps-server-from-behind-a-firewall/m-p/276866#M4567</guid>
      <dc:creator>mojerry_realdolmen</dc:creator>
      <dc:date>2016-06-13T08:10:46Z</dc:date>
    </item>
  </channel>
</rss>

