Install notes for the ArcGIS API for JavaScript™

Installing the ArcGIS API for JavaScript™ Library

The instructions below assume that you are installing the ArcGIS JavaScript API library in the following location on an IIS Web Server, "http://<myserver>/arcgis_js_api/library/1.5/arcgis/" where <myserver> is the domain name of your Web site. After copying files to your Web server, you will need to edit some files to include the URL to the server and directory that you are planning to install to.

Your directions may differ depending on your server configuration or Web server, but the process is the same.

  1. Copy \arcgis_js_api\library and all its contents from the DVD to your Web server. In this example the files are copied to

    C:\Inetpub\wwwroot\arcgis_js_api\library

  2. Open C:\Inetpub\wwwroot\arcgis_js_api\library\1.5\arcgis\js\esri\esri.js in a text editor.
  3. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]', and replace this text with "<myserver>/arcgis_js_api/library/1.5/arcgis/"
  4. Open C:\Inetpub\wwwroot\arcgis_js_api\library\1.5\arcgis\js\dojo\dojo\dojo.xd.js in a text editor.
  5. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]js/dojo/dojo' located on line 16 starting at character 6280, and replace this text with '<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dojo'
  6. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]js/dojo/dijit' located on line 16 starting at character 6383, and replace this text with '<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dijit'
  7. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]js/dojo/dojox' located on line 16 starting at character 6487, and replace this text with '<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dojox'
  8. Open C:\Inetpub\wwwroot\arcgis_js_api\library\1.5\arcgis\js\dojo\dojo\dojo.xd.js.uncompressed.js in a text editor.
  9. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]js/dojo/dojo' located on line 924, and replace this text with '<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dojo'
  10. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]js/dojo/dijit' located on line 925, and replace this text with '<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dijit'
  11. Search for the text '[HOSTNAME_AND_PATH_TO_JSAPI]js/dojo/dojox' located on line 926, and replace this text with '<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dojox'
  12. Deploy a handler. The JavaScript APIs stream multiple JavaScript files. In order to have one URL that delivers all the JavaScript content you must deploy a handler that simultaneously streams the appropriate files to the browser. Included in the library directory are three handlers that you can use. Use Default.ashx for IIS, index.jsp for a Java Application server (such as Tomcat), or index.php for a php application server.

    For example, to deploy on IIS you need to modify the default content page to include Default.ashx. Steps include:

    • Open IIS Manager.
    • Navigate to folder that contains Default.ashx (in this example this is C:\Inetpub\wwwroot\arcgis_js_api\library\1.5\arcgis).
    • Open properties dialog (right click, properties).
    • Click the Documents Tab.
    • Ensure Enable default content page has been clicked.
    • Click Add... Button.
    • Enter "Default.ashx" and Add.
    • Press OK and Exit.
  13. Access the ArcGIS JavaScript library from your Web server using the following URL:

    http://<myserver>/arcgis_js_api/library/1.5/arcgis/

  14. Change the ArcGIS Services Directory "View In JavaScript" URL. Instructions are given in "Configuring the REST API" in the ArcGIS Server REST SDK. On Windows, the location is <Installation Location>\DeveloperKit\Help\REST\index.html. On UNIX and Linux, the location is http://<myserver>:8399/<instance>/sdk/rest/index.html where myserver is your server name and instance is the instance name (arcgis is the default).
    • Find the "JavaScript API" section for either .NET or Java for more information about parameter values.
    • For .NET, the parameters to change in rest.config are <ArcGIS> and <ArcGISCSS>. Replace serverapi.arcgisonline.com with your server domain name.
    • For Java, the parameters to change in rest-config.properties are jsapi.arcgis and jsapi.arcgis.css. Replace serverapi.arcgisonline.com with your server domain name.
  15. Test your install. You can use the following test code to validate your JSAPI library install.

Test Code

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Simple Map</title>
    <link rel="stylesheet" type="text/css" href="http://<myserver>/arcgis_js_api/library/1.5/arcgis/js/dojo/dijit/themes/tundra/tundra.css">
    <script type="text/javascript" src="http://<myserver>/arcgis_js_api/library/1.5/arcgis/"></script>
    <script type="text/javascript">
      dojo.require("esri.map");
      function init() {
        var myMap = new esri.Map("mapDiv");
        //note that if you do not have public Internet access then you will need to point this url to your own locally accesible cached service.
        var myTiledMapServiceLayer = new esri.layers.ArcGISTiledMapServiceLayer("http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer");
        myMap.addLayer(myTiledMapServiceLayer);
      }
      dojo.addOnLoad(init);
    </script>
  </head>
  <body class="tundra">
    <div id="mapDiv" style="width:900px; height:600px; border:1px solid #000;"></div>
  </body>
</html>

Installing the ArcGIS JavaScript API SDK

The ArcGIS JavaScript API SDK can be copied in its entirety to your Web server directory. This SDK is equivalent to the version found on the ArcGIS Resource Center:

http://resources.esri.com/arcgisserver/apis/javascript/arcgis/index.cfm?fa=home

  1. Copy \arcgis_js_api\sdk and all its contents from the DVD to your Web server. In this example the files are copied to

    C:\Inetpub\wwwroot\arcgis_js_api\sdk

  2. The start page is "home.htm". If you chose to do so, you can rename this page.