Geoprocessing service GetResultMapServerName method

Gets the name of the map service that may be used to render results.

GetResultMapServerName()

Return Value

A string that contains name of the map service which can be used to draw results.

Remarks

The map service can be used to draw the results generated by a tool in a geoprocessing service.

Examples

C#

string endpoint = "http://sampleserver1.arcgisonline.com/ArcGIS/services/Elevation/ESRI_Elevation_World/GPServer";

ESRI.ArcGIS.SOAP.GPServerProxy gpserver = new ESRI.ArcGIS.SOAP.GPServerProxy();

gpserver.Url = endpoint;

string mapservername = gpserver.GetResultMapServerName();

2/28/2020