<?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: Print dijit, CORS error in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397451#M36620</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With that response, I wish I had been working with JavaScript longer than 3 weeks! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the first time I've created a print service, and the first time I've dealt with a proxy. So I'll have to do some research to be able to answer most of your questions. The print service is reachable and there are no typos. I have not tested the print service, though I'll see what I can do to accomplish that. And then I'll start going through the other things you've mentioned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Aug 2015 13:34:52 GMT</pubDate>
    <dc:creator>AshleyPeters</dc:creator>
    <dc:date>2015-08-21T13:34:52Z</dc:date>
    <item>
      <title>Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397447#M36616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having a very similar issue as is mentioned here: &lt;A _jive_internal="true" href="https://community.esri.com/message/399585"&gt;https://community.esri.com/message/399585&lt;/A&gt;. I've added in Print dijit and PrintTemplate task and get a print button. However, when I click it, it changes from Print to Printing, runs for a bit, then changes back to Print. When I check the Firefox developer tools, I get this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/123192_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;I've added in a proxy on my server and gone through the steps to enable CORS mentioned at &lt;A href="http://enable-cors.org/" title="http://enable-cors.org/"&gt;enable cross-origin resource sharing&lt;/A&gt;. I'm still getting the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At this point, I'm not sure if it is an issue in my code, or that I need to place the proxy on my local machine, where I'm building. I can't turn on IIS on my local machine, as our IT folks don't allow it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the code I added in for printing and the proxy:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;esriConfig.defaults.io.proxyUrl = "&lt;A href="http://myURL/DotNet/proxy.ashx"&gt;http://myURL/DotNet/proxy.ashx&lt;/A&gt;",&lt;BR /&gt;esriConfig.defaults.io.alwaysUseProxy = false;&lt;/P&gt;&lt;P&gt;//Create Printer Layouts Array&lt;BR /&gt;var myLayouts = [{&lt;BR /&gt; "name": "Print_Landscape",&lt;BR /&gt; "label": "Letter (Landscape Orientation)",&lt;BR /&gt; "format": "pdf"&lt;BR /&gt; }, {&lt;BR /&gt; "name": "Print_Portrait",&lt;BR /&gt; "label": "Letter (Portrait Orientation)",&lt;BR /&gt; "format": "pdf"&lt;BR /&gt; }];&lt;BR /&gt; &lt;BR /&gt;//Create Print Templates&lt;BR /&gt;var myTemplates = [];&lt;BR /&gt;dojo.forEach(myLayouts, function (lo) {&lt;BR /&gt; var printTemp = new PrintTemplate();&lt;BR /&gt;&amp;nbsp; printTemp.layout = lo.name;&lt;BR /&gt;&amp;nbsp; printTemp.label = lo.label;&lt;BR /&gt;&amp;nbsp; printTemp.format = lo.format&lt;BR /&gt;&amp;nbsp; myTemplates.push(printTemp);&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this portion after creation of my map:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Add Print Widget&lt;/P&gt;&lt;P&gt;var PrintWidget = new Print({&lt;/P&gt;&lt;P&gt; map: mapMain,&lt;/P&gt;&lt;P&gt; url: "&lt;A href="https://myURL/rest/services/CustomPrint/GPServer/Export%20Web%20Map"&gt;https://myURL/rest/services/CustomPrint/GPServer/Export%20Web%20Map&lt;/A&gt;",&lt;/P&gt;&lt;P&gt; templates: myTemplates&lt;/P&gt;&lt;P&gt; }, "PrintWidg");&lt;/P&gt;&lt;P&gt; PrintWidget.startup();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help/guidance would be much appreciated! Thank you in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 15:59:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397447#M36616</guid>
      <dc:creator>AshleyPeters</dc:creator>
      <dc:date>2015-08-20T15:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397448#M36617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like you've turned off alwaysUseProxy, (a good idea in my book), but that means you have to specify a proxy rule for your print server, something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;urlUtils.addProxyRule({&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "proxyUrl": "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http://myURL/DotNet/proxy.ashx​" rel="nofollow" target="_blank"&gt;http://myURL/DotNet/proxy.ashx​&lt;/A&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "urlPrefix": "&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https://myURL/rest/services/CustomPrint" rel="nofollow" target="_blank"&gt;https://myURL/rest/services/CustomPrint&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;});&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 18:11:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397448#M36617</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2015-08-20T18:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397449#M36618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. That seemed to clear up the CORS error, but now I'm getting another one:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/123201_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;I'll see what I can find on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 19:13:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397449#M36618</guid>
      <dc:creator>AshleyPeters</dc:creator>
      <dc:date>2015-08-20T19:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397450#M36619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, the .NET proxy provided by ESRI turns every HTTP error into a 500 InternalServerError.&amp;nbsp; Some things to check:&lt;/P&gt;&lt;P&gt;Is the URI for the print service reachable? Any typos in the path? Have you tested the print service before? Is there a way to test it without the proxy? Can you debug the proxy.ashx?&amp;nbsp; I usually put a breakpoint in where to 500 error is generated (I forget where it is, I just search for '500' in the file).&amp;nbsp; Then I can see what the actual error is.&amp;nbsp; If you're able to and comfortable changing it, you can also, just for debugging, change the proxy to pass on the original error code/text/etc, rather than creating the 500 error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 12:41:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397450#M36619</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2015-08-21T12:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397451#M36620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With that response, I wish I had been working with JavaScript longer than 3 weeks! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the first time I've created a print service, and the first time I've dealt with a proxy. So I'll have to do some research to be able to answer most of your questions. The print service is reachable and there are no typos. I have not tested the print service, though I'll see what I can do to accomplish that. And then I'll start going through the other things you've mentioned.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 13:34:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397451#M36620</guid>
      <dc:creator>AshleyPeters</dc:creator>
      <dc:date>2015-08-21T13:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397452#M36621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to test your print service by going back to your original error message (the XMLHttpRequest error), and copying the full URL in that message into the Firefox address bar.&amp;nbsp; If it you get an HTTP error, you know what to troubleshoot (the print service). If the print server gives you a message, you probably need to configure your print widget.&amp;nbsp; If you get a print image or document, it's probably a proxy config error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 16:43:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397452#M36621</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2015-08-21T16:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397453#M36622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So at this point, I've done a few different things. I took a working Flex app and changed the print widget in it to hit the service I created. It pulled the layout templates in correctly, so I moved forward with trying to print. It gave a 400 error. I then checked my logs on server and it told me that contact could not be made with my map server. I then did some searching on that and one of the suggestions was to be sure I had the newest version of the proxy. I downloaded it again and added it fresh to my server. I have not made any changes to it yet. I tried to ping the proxy and I'm getting a 403 error and it says I must log in to see the site. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe at this point my issue is with my proxy and possibly the settings in IIS. In IIS, anonymous authentication is enabled and everything else is disabled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 17:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397453#M36622</guid>
      <dc:creator>AshleyPeters</dc:creator>
      <dc:date>2015-08-21T17:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397454#M36623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need to check your proxy config to make sure it's allowing requests from your app and to your print service.&amp;nbsp; In the proxy.config file, make sure the &lt;STRONG&gt;allowedReferrers&lt;/STRONG&gt; attribute includes your javascript application.&amp;nbsp; By default, it uses *, meaning all apps from any location (including yours) can use the proxy. Next you want to make sure that if &lt;STRONG&gt;mustMatch&lt;/STRONG&gt; is set to true, that you add your print server url into the list of &lt;STRONG&gt;serverUrls&lt;/STRONG&gt;.&amp;nbsp; Otherwise it'll block it.&amp;nbsp; Actually, now that I think about it, that must've been your problem earlier, but I forgot about that, since I keep it disabled for testing -- in our dev environment only &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 18:24:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397454#M36623</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2015-08-21T18:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397455#M36624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been able to ping the new proxy, but still getting a 500 error when I try to print. After spending some time with tech support, we still haven't been able to resolve the problem. They feel its likely a setting on the server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Aug 2015 20:19:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397455#M36624</guid>
      <dc:creator>AshleyPeters</dc:creator>
      <dc:date>2015-08-21T20:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397456#M36625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you ensure that your proxy.config includes a serverUrls entry for your print server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 16:37:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397456#M36625</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2015-08-24T16:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397457#M36626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using https for your print service?&amp;nbsp; If so, do you have it set to run synchronous or asynchronous?&amp;nbsp; There is a bug with https print services running asynchronous.&amp;nbsp; Not sure if this applies, but you might just want to check out your settings.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 16:46:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397457#M36626</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2015-08-24T16:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397458#M36627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David, yes the proxy.config includes a serverUrl for the print server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael, I am using https for the print service. It is set to run synchronous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After talking with tech support last week and IT staff this morning, it looks like the issue might be caused by the server not recognizing it's public IP address. The IT folks are working on that now, so hopefully once they have that resolved it will resolve my print issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 17:12:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397458#M36627</guid>
      <dc:creator>AshleyPeters</dc:creator>
      <dc:date>2015-08-24T17:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397459#M36628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ashley, see if this answer&amp;nbsp; ​&lt;A href="https://community.esri.com/message/546283"&gt;Re: Print Widget Error Out&lt;/A&gt;&amp;nbsp;&amp;nbsp; helps out any.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I' m still out today, but wanted to make sure your tracking that discussion too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 22:41:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397459#M36628</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-08-25T22:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Print dijit, CORS error</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397460#M36629</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;This may help you. Replace your URL here ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;require&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;([&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"esri/config"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;],&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #333333; font-weight: bold;"&gt;function&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;esriConfig&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt; &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;{&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;
&amp;nbsp; esriConfig&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;defaults&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;io&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;corsEnabledServers&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;push&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"servicesbeta.esri.com"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;
&amp;nbsp; esriConfig&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;defaults&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;io&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;corsEnabledServers&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;push&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="str" style="color: #dd1144;"&gt;"server.organization.com"&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;);&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #595959;"&gt;
&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #666600;"&gt;});&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/jshelp/inside_defaults.html" rel="nofollow noopener noreferrer" target="_blank"&gt;more info&lt;/A&gt; .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Yusuf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:10:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/print-dijit-cors-error/m-p/397460#M36629</guid>
      <dc:creator>YousefQuran</dc:creator>
      <dc:date>2021-12-11T18:10:30Z</dc:date>
    </item>
  </channel>
</rss>

