Skip To Content

Use a geoprocessing service in ArcMap

A geoprocessing service contains one or more tasks. A task is similar to a geoprocessing tool in that it accepts parameters and returns results; it is a term that ArcGIS API for JavaScript uses to describe routines that perform work on a server and return results. There is no major difference between geoprocessing services and toolboxes or tasks and tools. It is only for other clients of ArcGIS Server (such as web browsers and other Internet-based software) that a distinction is made between services and toolboxes, as well as tasks and tools.

Connect to a GIS Server site

Your first step is to connect to an ArcGIS Server site. Do the following in the Catalog window:

  1. Create a publisher GIS Server connection from the GIS Servers node.
  2. Create a connection in a folder by right-clicking the folder and clicking New > ArcGIS Server Connection.

Find the URL to a geoprocessing service

When you connect to ArcGIS Server, you need a URL, user name, and password. All services, including geoprocessing services, must use a SOAP URL to work with ArcMap. You can obtain the URL to a service in any of the following ways:

  • The GIS Server site is hosted by your organization, and you know the URL.
  • You obtained the URL from a colleague.
  • You searched ArcGIS Online for geoprocessing services and found a service containing tasks you want to use. You can obtain the URL to the server hosting the service as follows:
    • The description of the service in ArcGIS Online has an ArcGIS Web API REST Connection entry that contains a URL. This URL is for connecting to the service using REST. To connect to the server in ArcGIS Desktop, you need a SOAP URL.
    • You can derive a SOAP URL from the REST URL. For example, if the REST URL is http://sampleserver.esri.com/arcgis/rest/services/SupplyDemandService/gpserver, the corresponding SOAP URL for creating server connections is http://sampleserver.esri.com/arcgis/services (rest, the name of the service, and gpserver are removed from the SOAP URL).
    • Use the SOAP URL to create a user connection to the server. Once you create the connection, browse through the server catalog in the Catalog tree to find geoprocessing services and tasks.

Execute geoprocessing tasks

You execute geoprocessing service tasks as you do with any other tool—from the tool dialog box, in ModelBuilder, or in a script. The only difference is if you're executing tools in the foreground. Some tasks wait for the results to be sent back from the server, while others don't wait; they submit the task to the server and occasionally query the server for the result. Use the Results window to observe the status of tasks submitted to the server. The Synchronous and asynchronous tasks section below describes this in more detail.

Work with task results

The result of a geoprocessing service is added to the Current Session of the Result window. If the result output data type is a file or raster dataset, the output is saved to a local scratch directory. For other data types, such as a feature class, the result is written to the current session displaying the name or status of its output datasets. The following are the five status values:

<empty>

The tool is still executing on the server and no output has been written, or the task was not run successfully and no result is returned. This status only applies to asynchronous tools. See Synchronous and asynchronous tasks below for more information.

<data in local temp location>

The tool finished executing and the output data resides in either your computer's memory or your system temp directory. The data will not be deleted as long as you have an ArcMap layer that references the data. If you want to preserve the data, copy it from this temporary location to a known location. One way to do this is to use the Copy tool, and drag the dataset from the result into the input features parameter of the tool. You can also right-click the output and click Copy Location, which copies the path of the feature class to the clipboard, allowing you to paste it anywhere that accepts text, such as the input features parameter to the Copy tool.

<data on server>

The data resides on the server, and there is a result map service that will draw the data in ArcMap, ArcGlobe, or ArcScene. This result map is automatically added to the table of contents when the tool finishes executing on the server. If you need to add this result map service to the table of contents, right-click the result tool and click Add Server Layer.

You can also right-click the result tool and click Get Data, which copies the data from the server to your computer. After copying, the status will be <data in local temp location>, <data exceeds transfer limit>, or <data unavailable>.

<data exceeds transfer limit>

The Get Data action could not transfer all the data from the server to your computer because the maximum number of features to transfer was exceeded. Copying large datasets degrades the server's ability to execute other GIS services and clogs the network. Therefore, the service author specifies a maximum number of features that can be copied from the server to a client computer. If you need to copy data that exceeds the limit, you need to contact the service author or server administrator and arrange for other ways to get the data.

<data unavailable>

The Get Data action could not find the data on the server. The most likely cause is that the server administrator determined that the task results were obsolete and deleted the data to free up space on the server.

Environment settings are ignored

Geoprocessing services explicitly set any environment settings on the server that affect execution. Your local environment settings in ArcGIS Desktop that you set in your current session have no effect on the environment settings used by services.

Exit an application before a server tool completes execution

Once you've submitted an asynchronous tool (see the next section), you can exit the application you are working in. For example, if you're working in ArcMap, you can start execution, save the map document, and exit ArcMap. When you open the document later, ArcMap will query the server, check the result status, and update the result in the Results window. If you will use this method of starting execution and exiting ArcMap (or ArcGlobe or ArcScene), be sure to save the map document to save the result for later inspection.

Synchronous and asynchronous tasks

Geoprocessing services and their tasks are either synchronous or asynchronous. Synchronous means that your computer will wait while the task executes on the server. Asynchronous means that your computer doesn't have to wait for the tool to finish execution and you can move on to other tasks.

The publisher of the service determines whether a task executes synchronously or asynchronously. Only tasks that execute quickly and have small output datasets should be published as synchronous tools.

To determine whether a server tool is synchronous or asynchronous, do one of the following:

  • If you create an administrator connection to ArcGIS Server, browse to the server in the Catalog window, right-click the geoprocessing service, and click Service Properties. The execution type of the tool is listed on the Parameters tab.
  • Execute the tool and observe the messages it writes. When an asynchronous service is executed, the first message written will be Server Messages. These types of geoprocessing services always run as a background process in ArcMap. A synchronous tool will start by displaying executing messages. The two results below were executed asynchronously and synchronously (as set by the ArcGIS Server administrator).
Asynchronous compared to synchronous execution

When you execute an asynchronous tool in ArcMap and enable the adding of tool results to the display, a layer is added to the display but is not visible (checked on). This is because ArcMap doesn't recognize when the tool will finish executing and have output to draw.

You are not automatically informed when an asynchronous tool finishes execution. You can track the progress of an asynchronous tool in the Results window. When the tool is executing, an hourglass appears next to the result. You can cancel execution by right-clicking the result and clicking Cancel. When the task is finished, a Succeeded message appears and a tool icon is displayed next to the task name of the result.