<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic REST based locator/geocoding in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704358#M4804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a REST geocoding web service accepting single field as a query string, and I would like it to be available in ArcMap for "geocoding addresses". What do I need to do to get it there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was looking around for documentation but I haven't found any that would implement and/or publish a geocoding service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;have found the &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/guide-books/geocoding/setting-default-locators-in-arcmap.htm"&gt;http://desktop.arcgis.com/en/arcmap/10.3/guide-books/geocoding/setting-default-locators-in-arcmap.htm&lt;/A&gt;&amp;nbsp;guide but if I am not mistaken, there is no factory that would allow to use REST services. I haven't found and documentation on how to create my own factory either&amp;nbsp;-&amp;nbsp;any hints welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Nov 2016 16:18:46 GMT</pubDate>
    <dc:creator>JK6</dc:creator>
    <dc:date>2016-11-29T16:18:46Z</dc:date>
    <item>
      <title>REST based locator/geocoding</title>
      <link>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704358#M4804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a REST geocoding web service accepting single field as a query string, and I would like it to be available in ArcMap for "geocoding addresses". What do I need to do to get it there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was looking around for documentation but I haven't found any that would implement and/or publish a geocoding service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I&amp;nbsp;have found the &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/guide-books/geocoding/setting-default-locators-in-arcmap.htm"&gt;http://desktop.arcgis.com/en/arcmap/10.3/guide-books/geocoding/setting-default-locators-in-arcmap.htm&lt;/A&gt;&amp;nbsp;guide but if I am not mistaken, there is no factory that would allow to use REST services. I haven't found and documentation on how to create my own factory either&amp;nbsp;-&amp;nbsp;any hints welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Nov 2016 16:18:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704358#M4804</guid>
      <dc:creator>JK6</dc:creator>
      <dc:date>2016-11-29T16:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: REST based locator/geocoding</title>
      <link>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704359#M4805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;JK:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The information in the help topic you found does contain the information that you need to include your geocode service as a default locator in ArcMap. The example just above "Editing system default locators" in the &lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/manage-data/geocoding/setting-default-locators-in-arcmap.htm" title="http://desktop.arcgis.com/en/arcmap/latest/manage-data/geocoding/setting-default-locators-in-arcmap.htm"&gt;Setting default locators in ArcMap—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;help topic is the format you need to use and there is no need to create a new workspace factory. Also, within the DefaultLocators.xml file there is an example for ArcGIS Server locator that you can use to setup a REST geocode service in ArcMap. Below is the example from the DefaultLocators.xml.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!-- ArcGIS Server locator--&amp;gt;&lt;BR /&gt;&amp;lt;!--&lt;BR /&gt; &amp;lt;locator_ref&amp;gt;&lt;BR /&gt; &amp;lt;name&amp;gt;MyArcGISServer&amp;lt;/name&amp;gt;&lt;BR /&gt; &amp;lt;display_name&amp;gt;My ArcGIS Server&amp;lt;/display_name&amp;gt;&lt;BR /&gt; &amp;lt;workspace_properties&amp;gt;&lt;BR /&gt; &amp;lt;factory_progid&amp;gt;esriGISClient.AGSServerConnectionFactory&amp;lt;/factory_progid&amp;gt;&lt;BR /&gt; &amp;lt;ags_connection_properties&amp;gt;&lt;BR /&gt; &amp;lt;machine&amp;gt;ServerMachine&amp;lt;/machine&amp;gt;&lt;BR /&gt; &amp;lt;user&amp;gt;ServerUser&amp;lt;/user&amp;gt;&lt;BR /&gt; &amp;lt;encrypted_password&amp;gt;EncryptedPassword&amp;lt;/encrypted_password&amp;gt;&lt;BR /&gt; &amp;lt;/ags_connection_properties&amp;gt;&lt;BR /&gt; &amp;lt;/workspace_properties&amp;gt;&lt;BR /&gt; &amp;lt;/locator_ref&amp;gt;&lt;BR /&gt;--&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 17:41:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704359#M4805</guid>
      <dc:creator>ShanaBritt</dc:creator>
      <dc:date>2016-12-29T17:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: REST based locator/geocoding</title>
      <link>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704360#M4806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In ArcMap you should be able to use this geocode service with the Find Tool on the Tools toolbar. &amp;nbsp;Click on the Locations tab and click on the folder next to Choose a locator and then navigate to a GIS Server connection that contains your geocode service. &amp;nbsp;You should then just need to enter your address parameters and hit Find to execute the search.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2016 17:48:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/rest-based-locator-geocoding/m-p/704360#M4806</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2016-12-29T17:48:21Z</dc:date>
    </item>
  </channel>
</rss>

