This is an archive related to a previous version of Esri Maps for IBM Cognos. If you need the current version go to http://doc.arcgis.com/en/maps-for-cognos/.

Work with proxies

Under some circumstances, Esri Maps for IBM Cognos uses an internal proxy mechanism to broker communication with the ArcGIS platform (in addition to any web services referenced by retrieved ArcGIS items). When required, Esri Maps for IBM Cognos sends HTTP requests to the proxy, and the proxy forwards the requests to the remote web server (such as ArcGIS). The proxy then relays the response back to Esri Maps for IBM Cognos.

internal proxy mechanism

The internal proxy is not used if Esri Maps for IBM Cognos and all the data and web services it uses are on the same domain, or if both the client browser and all servers support Cross-Origin Resource Sharing (CORS). In most production environments, however, this configuration is not common, and configuring the internal proxy is recommended.

Specify CORS-enabled servers (optional)

Most modern browsers use the recommended standard, Cross-Origin Resource Sharing (CORS). The CORS standard adds headers to the HTTP specification that allow servers to describe the set of origins that are permitted to read resources and services using a web browser.

Esri Maps for IBM Cognos automatically detects servers that use Cross-Origin Resource Sharing (CORS) and communicates with these servers without issue. In some cases, however, the initial request (an HTTP POST, for example) is automatically routed through the Esri Maps for IBM Cognos internal proxy, even though the server is CORS-enabled. As an Esri Maps for IBM Cognos administrator, you can list the URLs for known CORS-enabled servers in the Esri Maps for IBM Cognos configuration file (settings.js) to ensure that all calls originating from those locations are automatically considered CORS-enabled, thereby bypassing the proxy.

To specify CORS-enabled servers:

  1. Use a standard text editor to open the application's configuration file.

    The settings file is on the EM4C Gateway in the following location: <em4c_location>\webcontent\esrimap\configuration\settings.js

  2. In the corsEnabledServers property, specify the URLs of the servers to be automatically considered CORS-enabled.

    Each URL must be enclosed within quotation marks, with multiple URLs separated by commas.

    For example: corsEnabledServers: ["mapserver.mycompany.com", "otherserver.othercompany.com"]

  3. Save and close the settings.js file.

Configure the internal proxy

Although the internal proxy is designed to work with minimal custom configuration, you can customize its settings to allow only requests to specific servers; that is, you can specify the resources to which the proxy will forward requests.

To configure the internal proxy settings, modify the proxy configuration file using a standard text editor.

The proxy configuration file (proxy.conf) is located on the EM4C Gateway at em4c_location>\temp\proxy.conf.

To define the URLs that Esri Maps for IBM Cognos is allowed to access, specify each individual URL in a separate serverUrl property. Create a separate serverUrl property for every server that Esri Maps for IBM Cognos must access to retrieve map services.

For example:

matchUrls = true
serverUrl = http://www.arcgis.com
serverUrl = https://arcgis.com
serverUrl = http://myserver.mycompany.com

Test the proxy

To test the internal proxy, route an HTTP request through it. If the proxy returns the expected value, it is working correctly. The following steps provide examples of calls that simulate the HTTP traffic that Esri Maps for IBM Cognos would generate.

  1. To verify the location of the Esri Maps for IBM Cognos internal proxy, type its URL in a web browser's address bar.

    http://myibmcognosserver/ibmcognos/em4c/cgi-bin/em4c.cgi

    When you successfully access the internal proxy, the page displays a time stamp, for example, Thu Oct 02 07:34:52 PDT 2014. If you do not receive the expected response, verify your internal proxy configuration settings.

  2. Verify that you can connect to a known resource.

    For example, each of the following URLs should return a JSON object that describes the version of the software installed on the server.

    • ArcGIS Online: http://www.arcgis.com/sharing?f=pjson
    • Portal for ArcGIS instance: http://myPortal/gis/sharing/?f=pjson

  3. Route traffic through the internal proxy.

    For example, each of the following URLs should return a JSON object that describes the version of the software installed on the server:

    • ArcGIS Online: http://ibmcognosserver/ibmcognos/em4c/cgi-bin/em4c.cgi?http://www.arcgis.com/sharing?f=pjson
    • Portal for ArcGIS instance: http://ibmcognosserver/ibmcognos/em4c/cgi-bin/em4c.cgi?http://myPortal/gis/sharing/?f=pjson

    A successful result means that your proxies are properly configured and working as expected.

Configure an optional upstream proxy

In situations in which Esri Maps for IBM Cognos must use its internal proxy, the internal proxy must be able to forward HTTP requests to the intended target resources (such as map services). In some environments, firewall rules prevent these requests from being sent; for example, the firewall may prevent HTTP traffic from leaving the internal network.

To solve this problem, you can configure an upstream forwarding proxy.

An upstream proxy allows connections outside the network without compromising the security of the internal network. One common approach to using an upstream proxy is to place a proxy server in a perimeter network to protect the internal network.

Place the optional upstream proxy server in a perimeter network to protect the internal network

The upstream proxy itself represents an enterprise-level, third-party (non-Esri) solution. It is not part of Esri Maps for IBM Cognos.

The Esri Maps for IBM Cognos proxy configuration file contains properties that allow you to configure an upstream proxy.

To configure upstream proxy settings, modify the proxy configuration file using a standard text editor.

  1. Set the upStreamProxy property to true.
  2. Specify the upStreamProxyUrl using the following convention:
    http://<address>:<port>
    

    where:

    • address —The address of the proxy server, for example, proxy.mycompany.com
    • port—The port number assigned to the proxy server, for example, 8888

    For example:

    upStreamProxy = true
    upStreamProxyUrl = http://proxy.mycompany.com:8888
    

  3. To test the upstream proxy, route a request through the internal proxy, which will in turn route the call through the upstream proxy. For more information, see Test the proxy.