<?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: Properly consuming the API over SSL in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504994#M46891</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Do you happen to have an example of that?&amp;nbsp; This configuration isn't working for me:&lt;BR /&gt;&lt;BR /&gt;&amp;lt;snip&amp;gt;&lt;BR /&gt;&lt;BR /&gt;In Chrome I get: [blocked] The page at &lt;A href="https://xxx/test2.html"&gt;https://xxx/test2.html&lt;/A&gt; ran insecure content from &lt;A href="http://www.arcgis.com/sharing/community/groups?q=title%3A%22ArcGIS%20Online%20Basemaps%22%20AND%20owner%3Aesri&amp;amp;f=json&amp;amp;callback=dojo.io.script.jsonp_dojoIoScript1._jsonpCallback"&gt;http://www.arcgis.com/sharing/community/groups?q=title%3A%22ArcGIS%20Online%20Basemaps%22%20AND%20owner%3Aesri&amp;amp;f=json&amp;amp;callback=dojo.io.script.jsonp_dojoIoScript1._jsonpCallback&lt;/A&gt;.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you use version 3.2 of the API and see the same error?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Nov 2012 18:53:59 GMT</pubDate>
    <dc:creator>derekswingley1</dc:creator>
    <dc:date>2012-11-16T18:53:59Z</dc:date>
    <item>
      <title>Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504989#M46886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;All the samples are using standard HTTP, but I figured using SSL would be as simple as adding an "s" to:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.6"&amp;gt;&amp;lt;/script&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And while it more or less was, I did have to apply the hack below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp; esri.setRequestPreCallback(function (ioArgs) {
&amp;nbsp;&amp;nbsp; alert(ioArgs.url);
&amp;nbsp;&amp;nbsp; ioArgs.url = ioArgs.url.replace('http:', 'https:');
&amp;nbsp;&amp;nbsp; return ioArgs;
&amp;nbsp; });&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately even with that, all of the map images are being loaded over non-SSL.&amp;nbsp; Is there a proper way to using ArcGIS over SSL?&amp;nbsp; Some property I need to set somewhere?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;TIA!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 16:38:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504989#M46886</guid>
      <dc:creator>LangdonOliver</dc:creator>
      <dc:date>2012-11-16T16:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504990#M46887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;All the samples are using standard HTTP, but I figured using SSL would be as simple as adding an "s"&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It is, here's an example:&amp;nbsp; &lt;/SPAN&gt;&lt;A href="https://servicesbeta.esri.com/demos/jsapi_over_ssl.html" rel="nofollow noopener noreferrer" target="_blank"&gt;https://servicesbeta.esri.com/demos/jsapi_over_ssl.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;script type="text/javascript" src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.6"&amp;gt;&amp;lt;/script&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;And while it more or less was, I did have to apply the hack below:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp; esri.setRequestPreCallback(function (ioArgs) {
&amp;nbsp;&amp;nbsp; alert(ioArgs.url);
&amp;nbsp;&amp;nbsp; ioArgs.url = ioArgs.url.replace('http:', 'https:');
&amp;nbsp;&amp;nbsp; return ioArgs;
&amp;nbsp; });&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Unfortunately even with that, all of the map images are being loaded over non-SSL.&amp;nbsp; Is there a proper way to using ArcGIS over SSL?&amp;nbsp; Some property I need to set somewhere?&lt;BR /&gt;&lt;BR /&gt;TIA!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There's no need to do that. Make sure your script tag including the API uses https, all the services you're using use https URLs and that your app is accessed over https as well.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:09:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504990#M46887</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2021-12-11T22:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504991#M46888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;OK, I see.&amp;nbsp; For baseMaps, I was doing:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;basemapGallery = new esri.dijit.BasemapGallery({
&amp;nbsp;&amp;nbsp;&amp;nbsp; showArcGISBasemaps: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; map: _map
&amp;nbsp;&amp;nbsp; });&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Which I grabbed some an example somewhere.&amp;nbsp; This `new baseMapGallery()` gives me http instead of https everywhere.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:09:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504991#M46888</guid>
      <dc:creator>LangdonOliver</dc:creator>
      <dc:date>2021-12-11T22:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504992#M46889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Glad to help. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're app is running over https, the basemap gallery will also use https. Otherwise, it uses http as the protocol.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 17:40:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504992#M46889</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-11-16T17:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504993#M46890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Do you happen to have an example of that?&amp;nbsp; This configuration isn't working for me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=7,IE=9" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--The viewport meta tag is used to improve the presentation and behavior of the samples
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; on iOS devices--&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body class="claro"&amp;gt;
 &amp;lt;div id="mapContainer" data-iconSet="Modern"&amp;gt;
&amp;nbsp; &amp;lt;div id="map" dojotype="dijit.layout.ContentPane" region="center" style="height: 950px;"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;div id="mapSelector"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;button id="dropdownButton" label="Basemaps"&amp;nbsp; dojoType="dijit.form.DropDownButton"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div dojoType="dijit.Menu" id="basemapMenu"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!-- the menu items are dynamically created from basemaps --&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/button&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp; &amp;lt;/div&amp;gt;
 &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt;var djConfig = { 'parseOnLoad': true };&amp;lt;/script&amp;gt;
&amp;nbsp; &amp;lt;script type="text/javascript" src="https://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.6"&amp;gt;&amp;lt;/script&amp;gt;
&amp;nbsp; &amp;lt;script type="text/javascript"&amp;gt;
&amp;nbsp;&amp;nbsp; // setup arcgis
&amp;nbsp;&amp;nbsp; dojo.require('esri.map');
&amp;nbsp;&amp;nbsp; dojo.require('dijit.form.Button');
&amp;nbsp;&amp;nbsp; dojo.require('dijit.layout.BorderContainer');
&amp;nbsp;&amp;nbsp; dojo.require('dijit.layout.ContentPane');
&amp;nbsp;&amp;nbsp; dojo.require('esri.dijit.BasemapGallery');
&amp;nbsp;&amp;nbsp; dojo.require('dijit.form.Button');
&amp;nbsp;&amp;nbsp; dojo.require('dijit.Menu');

&amp;nbsp;&amp;nbsp; var basemapGallery,
&amp;nbsp;&amp;nbsp;&amp;nbsp; _map;

&amp;nbsp;&amp;nbsp; dojo.addOnLoad(function () {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var initExtent = new esri.geometry.Extent({"xmin":-122.46,"ymin":37.73,"xmax":-122.36,"ymax":37.77,"spatialReference":{"wkid":4326}});
&amp;nbsp;&amp;nbsp;&amp;nbsp; _map = new esri.Map("map",{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; extent:esri.geometry.geographicToWebMercator(initExtent)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp; basemapGallery = new esri.dijit.BasemapGallery({
&amp;nbsp;&amp;nbsp;&amp;nbsp; showArcGISBasemaps: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp; map: _map
&amp;nbsp;&amp;nbsp; });

&amp;nbsp;&amp;nbsp; dojo.connect(basemapGallery, 'onLoad', function () {
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.forEach(basemapGallery.basemaps, function (basemap) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // add a menu item for each basemap, when the menu items are selected
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dijit.byId('basemapMenu').addChild(new dijit.MenuItem({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label: basemap.title,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; onClick: dojo.hitch(this, function () {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; basemapGallery.select(basemap.id);
&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; dojo.connect(_map, 'onLoad', function () {
&amp;nbsp;&amp;nbsp;&amp;nbsp; //resize the map when the browser resizes
&amp;nbsp;&amp;nbsp;&amp;nbsp; dojo.connect(dijit.byId('map'), 'resize', _map, _map.resize);
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; });
&amp;nbsp; &amp;lt;/script&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In Chrome I get: [blocked] The page at &lt;/SPAN&gt;&lt;A href="https://xxx/test2.html" rel="nofollow noopener noreferrer" target="_blank"&gt;https://xxx/test2.html&lt;/A&gt;&lt;SPAN&gt; ran insecure content from &lt;/SPAN&gt;&lt;A href="http://www.arcgis.com/sharing/community/groups?q=title%3A%22ArcGIS%20Online%20Basemaps%22%20AND%20owner%3Aesri&amp;amp;f=json&amp;amp;callback=dojo.io.script.jsonp_dojoIoScript1._jsonpCallback" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.arcgis.com/sharing/community/groups?q=title%3A%22ArcGIS%20Online%20Basemaps%22%20AND%20owner%3Aesri&amp;amp;f=json&amp;amp;callback=dojo.io.script.jsonp_dojoIoScript1._jsonpCallback&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:09:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504993#M46890</guid>
      <dc:creator>LangdonOliver</dc:creator>
      <dc:date>2021-12-11T22:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504994#M46891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Do you happen to have an example of that?&amp;nbsp; This configuration isn't working for me:&lt;BR /&gt;&lt;BR /&gt;&amp;lt;snip&amp;gt;&lt;BR /&gt;&lt;BR /&gt;In Chrome I get: [blocked] The page at &lt;A href="https://xxx/test2.html"&gt;https://xxx/test2.html&lt;/A&gt; ran insecure content from &lt;A href="http://www.arcgis.com/sharing/community/groups?q=title%3A%22ArcGIS%20Online%20Basemaps%22%20AND%20owner%3Aesri&amp;amp;f=json&amp;amp;callback=dojo.io.script.jsonp_dojoIoScript1._jsonpCallback"&gt;http://www.arcgis.com/sharing/community/groups?q=title%3A%22ArcGIS%20Online%20Basemaps%22%20AND%20owner%3Aesri&amp;amp;f=json&amp;amp;callback=dojo.io.script.jsonp_dojoIoScript1._jsonpCallback&lt;/A&gt;.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you use version 3.2 of the API and see the same error?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 18:53:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504994#M46891</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-11-16T18:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504995#M46892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ahh, dang, I guess that's it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dpchallenge.com/testmaps.html"&gt;https://www.dpchallenge.com/testmaps.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.dpchallenge.com/testmaps32.html"&gt;https://www.dpchallenge.com/testmaps32.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any known work arounds for 2.6?&amp;nbsp; I'm stuck using it as this will be deployed to an network environment where only 2.6 exists.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 19:11:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504995#M46892</guid>
      <dc:creator>LangdonOliver</dc:creator>
      <dc:date>2012-11-16T19:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504996#M46893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We had a bug or two in the past where we had hard coded http URLs for certain resources. There isn't an easy one line workaround. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you really can't upgrade to 3.2, you can build &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi/basemap.htm"&gt;Basemaps&lt;/A&gt;&lt;SPAN&gt; manually using the services hosted on arcgis.com with https URLs and use those in the basemap gallery.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 19:41:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504996#M46893</guid>
      <dc:creator>derekswingley1</dc:creator>
      <dc:date>2012-11-16T19:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Properly consuming the API over SSL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504997#M46894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ahh OK.&amp;nbsp; I might try that or strip out the base map switching feature and use it as a carrot to maybe get a new version pushed through.&amp;nbsp; I'm sure I'll run up against other nice features and bug fixes that 3.2 offers over 2.6.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your assistance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2012 19:43:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/properly-consuming-the-api-over-ssl/m-p/504997#M46894</guid>
      <dc:creator>LangdonOliver</dc:creator>
      <dc:date>2012-11-16T19:43:15Z</dc:date>
    </item>
  </channel>
</rss>

