Map Drawer printing
Issue: Printing in Infor Public Sector doesn't
work when the map services are hosted in a different domain.
Solution: Enable CORS for map services. Add this code to the web.config file in your map services directory:
<configuration>
….
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>