How to use
See How to use ArcGIS samples for help on compiling, setting up the debugger, and running the sample. If the sample has associated data, you will find that the sample's zip file includes a "data" folder alongside the language folders. However, you will need to update the sample to point to the location of the data once you have extracted all the files.
Deploy the SOE
- Log in to ArcGIS Server Manager and click Site.
- Click Extensions.
- Click Add Extension.
- Click Browse and navigate to the .soe file, which by default is located at <ArcGIS DeveloperKit install location>\Samples\ArcObjectsNet\ServerFindNearRESTSOE\CSharp\FindNearFeaturesRestSOE\bin\Debug\NetFindNearFeaturesRESTSOE.soe.
- Click OK.
Enable the SOE on a service
- Start ArcMap and click File > Open.
- Browse to or type the location of USA.mxd, which is located in <ArcGIS Developer Kit Location>\Samples\data\Usa.
- Click File > Share As > Service.
- Click Save a service definition and click Next.
- Choose "No available connection" and check "Include data in service definition when publishing".
- Change the Server type to ArcGIS Server.
- Leave the Service name as USA and click Next.
- Choose a location where you want to save the service definition, then click Continue.
- Click Stage to create the service definition. In the success message, note the path of your service definition (.sd).
- Copy the USA.sd file to the machine running ArcGIS Server Manager.
- On the machine running ArcGIS Server Manager, log in to Manager and click Services.
- If necessary, click the Manage Services tab.
- Click Publish Service.
- Click Browse, browse to the location of USA.sd on the local machine, and click Open. Then click Next.
- Accept the default properties for the service by clicking Next.
- Click Publish. This creates the USA map service.
- On the Services tab of Manager, select the USA map service, then select Capabilities. In the list of available capabilities, find ".NET Find Near Features REST SOE" and check the box to enable it. If there is a list of available operations allowed, select all of them.
- Click Save, then click Restart to restart the service.
Test the SOE in the ArcGIS Server Services Directory
- Open a browser and navigate to the root REST services endpoint for ArcGIS Server (for example: http://<server name>:6080/arcgis/rest/services). You'll see a list of services, including the USA map service created in the previous section.
- Click the USA map service created in the previous section and scroll to the bottom of the map service description page. The section titled Supported Extensions includes the SOE NetFindNearFeaturesRestSOE.
- Click the SOE name. The REST SOE description page displays a list of layers in the map service.
- Click a layer to display a layer description and a list of supported operations. One supported operation is listed: findNearFeatures.
- Click the operation to display the interactive dialog box to define a location and distance to use when searching for features in this layer.
- Define a location in ArcGIS JavaScript Object Notation (JSON) format; for example: {x:-112,y:35}. Do not include spatial reference in the location JSON.
- Define a distance in map units; for example: 1.
- Click either the findNearFeatures (GET) or findNearFeatures (POST) button to initiate the request. A response containing the features and attributes for features within the search distance is returned.
NetFindNearFeaturesRestSOE\NetFindNearFeaturesRestSOE.cs | Core SOE implementation for REST Web service |
NetFindNearFeaturesRestSOE\CustomLayerInfo.cs | Custom layer type that describes feature layers in a map service host |
FindNearFeaturesRestSOE\bin\Debug\NetFindNearFeaturesRESTSOE.soe | The deployable SOE file |
Download the files for all languages