<?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  is not working in WebAppBuilder in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636894#M16909</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/22571"&gt;mohan nainar&lt;/A&gt;&amp;nbsp; I'm having a similar issue with my basemap not showing up in my printout, but the rest of my layers do appear. Mine is not in WAB in this case, but is a JS web page. Just in case it is related or if there are common items, may be we can see a pattern&amp;nbsp;&lt;A href="https://community.esri.com/thread/212385"&gt;Print GP service not printing cached basemap (AGS 10.5.1)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW&amp;nbsp; &lt;A href="https://community.esri.com/people/rscheitlin"&gt;rscheitlin&lt;/A&gt;&amp;nbsp;, I did try the "alwaysUseProxy":false as you recommended, but no change, and the &lt;EM&gt;proxy is working for display &lt;/EM&gt;of all tiled and dynamic the services.&amp;nbsp; The print GP tool is not throwing any errors and seems to be working for all except the tiled basemap.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tested some addition things and will include them on my thread I link to above.&amp;nbsp; In my case, I think this is a bug with the basemap tiled service in 10.5.1 ....maybe it doesn't like the v2 compact format of 10.5.1?&amp;nbsp; The 10.2.2 basemap uses the v1 compact version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Apr 2018 02:05:22 GMT</pubDate>
    <dc:creator>RebeccaStrauch__GISP</dc:creator>
    <dc:date>2018-04-05T02:05:22Z</dc:date>
    <item>
      <title>Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636886#M16901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/400103_pastedImage_1.png" style="width: 620px; height: 62px;" /&gt;&lt;/P&gt;&lt;P&gt;1. It says "No Access-Control-Allow-Orgin" , my mapservice is not secured . I am using the web adaptor URL for print task .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ArcGIS Server and application both are running same machine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. I tried including this is code (&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;esriConfig.request.corsEnabledServers.push(&lt;/SPAN&gt;&lt;SPAN class="" style="color: #c41a16;"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fmyserver" rel="nofollow" target="_blank"&gt;https://myserver&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;);&lt;/SPAN&gt;) in startup function of the widget , same error message I am getting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is code am using for printing&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;_onBtnPrintClicked: function(){&lt;BR /&gt; var legendLayer = new LegendLayer();&lt;BR /&gt; legendLayer.layerId = "WidgetName";&lt;BR /&gt; legendLayer.subLayerIds = [0];&lt;BR /&gt; legendLayer.subLayerIds = [1];&lt;BR /&gt;&lt;SPAN&gt; var url = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fservername%2Farcgis%2Frest%2Fservices%2FExportWebMap5%2FGPServer%2FExport%2520Web%2520Map" rel="nofollow" target="_blank"&gt;https://servername/arcgis/rest/services/ExportWebMap5/GPServer/Export%20Web%20Map&lt;/A&gt;&lt;SPAN&gt;";&lt;/SPAN&gt;&lt;BR /&gt; var printTask = new PrintTask(url);&lt;BR /&gt; var params = new PrintParameters();&lt;BR /&gt; var template = new PrintTemplate();&lt;BR /&gt; template.format = "PDF";&lt;BR /&gt; template.layout = "Layout";&lt;BR /&gt; template.layoutOptions = {//"legendLayers": [legendLayer], // empty array means no legend&lt;BR /&gt; "titleText": "Map Print",&lt;BR /&gt; "authorText": "xxxxxx",&lt;BR /&gt; "copyrightText": "yyyyy",&lt;BR /&gt; "scalebarUnit": "Kilometers",&lt;BR /&gt; "customTextElements": [{"titleID": "Map Reports"}, {"genderID": "All"}]&lt;BR /&gt; };&lt;BR /&gt; template.preserveScale = false;&lt;BR /&gt; debugger; &lt;BR /&gt; template.exportOptions = {&lt;BR /&gt; width:500,&lt;BR /&gt; height:600,&lt;BR /&gt; dpi:96&lt;BR /&gt; };&lt;BR /&gt; params.map = this.map;&lt;BR /&gt; params.template = template;&lt;BR /&gt; printTask.on("error",lang.hitch(this, this._printResultError));&lt;BR /&gt; printTask.execute(params, lang.hitch(this, this._printResult));&lt;BR /&gt; },&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2018 12:51:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636886#M16901</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-03-29T12:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636887#M16902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;If your map services and print service are using the web adaptor then there would not be the :3344 in the URL. You error like a url with :3344 in the url, so some url in your app is not using the web adaptor url and thus the app see that url as coming from a different machine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2018 13:02:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636887#M16902</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-03-29T13:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636888#M16903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am running the application from web app builder that is the reason it is using 3344 , I will host the application in IIS and will let you know the output.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2018 05:19:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636888#M16903</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-02T05:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636889#M16904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now I have hosted the application in IIS, getting different error now. &amp;nbsp;For smaller area( number of polygon geometry may be 5 or 10) the print works fine . For larger area (more number of polygon geometry) print is not working .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proxy used in config.json file is&amp;nbsp;&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/400466_pastedImage_2.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting an error like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/400467_pastedImage_3.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For smaller area the code works fine , for larger area the issue is there .&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 10:59:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636889#M16904</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-03T10:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636890#M16905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I almost never use localhost. And you should not be using it in this situation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 12:58:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636890#M16905</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-04-03T12:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636891#M16906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same error I am getting, if i use server name also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 06:57:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636891#M16906</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-04T06:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636892#M16907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far I am using map service as BaseMap and I am able see the print &amp;nbsp;output for smaller area . &amp;nbsp;If I use the actual basemap (which I created ) , the&amp;nbsp;print output is coming as blank.&amp;nbsp;&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/400541_pastedImage_4.png" style="width: 620px; height: 310px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 09:37:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636892#M16907</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-04T09:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636893#M16908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;I am not sure why you are having such a hard time with this. So do you get any proxy errors in the console now?&lt;/P&gt;&lt;P&gt;You have your config.json set to always use proxy, that is not a good setting as everything does not need the extra step of going through the proxy (change to "alwaysUseProxy": false,). Is you app public yet, were I can test?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 12:37:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636893#M16908</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-04-04T12:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636894#M16909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/22571"&gt;mohan nainar&lt;/A&gt;&amp;nbsp; I'm having a similar issue with my basemap not showing up in my printout, but the rest of my layers do appear. Mine is not in WAB in this case, but is a JS web page. Just in case it is related or if there are common items, may be we can see a pattern&amp;nbsp;&lt;A href="https://community.esri.com/thread/212385"&gt;Print GP service not printing cached basemap (AGS 10.5.1)&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW&amp;nbsp; &lt;A href="https://community.esri.com/people/rscheitlin"&gt;rscheitlin&lt;/A&gt;&amp;nbsp;, I did try the "alwaysUseProxy":false as you recommended, but no change, and the &lt;EM&gt;proxy is working for display &lt;/EM&gt;of all tiled and dynamic the services.&amp;nbsp; The print GP tool is not throwing any errors and seems to be working for all except the tiled basemap.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tested some addition things and will include them on my thread I link to above.&amp;nbsp; In my case, I think this is a bug with the basemap tiled service in 10.5.1 ....maybe it doesn't like the v2 compact format of 10.5.1?&amp;nbsp; The 10.2.2 basemap uses the v1 compact version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 02:05:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636894#M16909</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2018-04-05T02:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636895#M16910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed to alwaysUseProxy as false , even though I am getting&amp;nbsp;empty base map in print. No proxy errors in console.Due to some restriction I&amp;nbsp;can not publish the app in public.&amp;nbsp;&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/400638_pastedImage_1.png" style="width: 620px; height: 154px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2018 09:02:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636895#M16910</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-05T09:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636896#M16911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;So do you have anything but the base map that is suppose to print in your web map?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 03:21:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636896#M16911</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-04-06T03:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636897#M16912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basemap and dynamically created layer (output of some process) . I want to print both but only dynamically created layer is appearing in print , base map coming as blank.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 07:11:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636897#M16912</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-06T07:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636898#M16913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; What happens when you use the print widget and not your custom print code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 14:14:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636898#M16913</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-04-06T14:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636899#M16914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My basemap is cached service, and its working from the print widget but&amp;nbsp;not from custom print code. Whereas if I keep my basemap&amp;nbsp;other than cached service (i.e.&amp;nbsp;non-cached service), I can see the base map from custom print code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 14:44:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636899#M16914</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-06T14:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636900#M16915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/esrimohan"&gt;esrimohan&lt;/A&gt;&amp;nbsp; &amp;nbsp;As mentioned above, I am having general issues with my cached basemaps not printing (10.5.1 in my case....my 10.2.2 serevice print just fine).&amp;nbsp; &amp;nbsp; I am working with tech support and have found a few things.&amp;nbsp; Just in case these help you at all.&amp;nbsp; FYI - we have several basemaps that we cache, and then turn off the layers in the mxd since the cache is what we want to use.&amp;nbsp; So, check these things...&lt;/P&gt;&lt;P&gt;- Make sure all the layers in the mxd for your cache map service turned on (checked).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Make sure all the datasources for your cached service still available&lt;/P&gt;&lt;P&gt;- if you have a mix of raster and vector data in the cached service, make sure they are all using the same spatial reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned, our 10.2.2 services work fine.&amp;nbsp; Some of our cached services no longer have access to the source, which is ok since we just need the cache.&amp;nbsp; We also have our services in the same SR as the raster layer, but had a few vector layers that projected on the fly.&amp;nbsp; Again, it didn't matter in 10.2.2 since it would print from the cache.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it seems that the print itself is trying to be dynamic. I'm hoping they will have a workaround to force the print from the cache.&amp;nbsp; I hope to know more in a few days.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is all independent of the actual ArcGIS Print Service used (the out-of-the-box or custom, or the version), and independent of the API used.&amp;nbsp; That is, we tested using the REST endpoint to take any API like JavaScript out of the equation.&amp;nbsp; It also is independent of external vs internal-only, web-adaptor or not, etc.&amp;nbsp; It appears to be the way the services and their caches are dealing with printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;II'm not sure if this is relevant to your situation, but wanted to pass this along.&amp;nbsp; Once I have a resolution, I will post on the thread link I mentioned above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2018 00:45:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636900#M16915</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2018-04-11T00:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636901#M16916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cross verified the mxd file&lt;/P&gt;&lt;P&gt;1.All &amp;nbsp;layers are turned on.&lt;/P&gt;&lt;P&gt;2. Datasources are valid&lt;/P&gt;&lt;P&gt;3.We have only one type of data(Vector)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We will wait for your response.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2018 06:33:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636901#M16916</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-04-12T06:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Print  is not working in WebAppBuilder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636902#M16917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rebecca ,did you get any update ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2018 10:49:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/print-is-not-working-in-webappbuilder/m-p/636902#M16917</guid>
      <dc:creator>mohannainar1</dc:creator>
      <dc:date>2018-06-19T10:49:50Z</dc:date>
    </item>
  </channel>
</rss>

