Dictionaries XML Request & Response

XML Request

The following is an example of an XML request for the Dictionaries service. In this example, the request is for a list of configured geocoding datasets for Germany.

GET http://myserver:8080/rest/GlobalGeocode/dictionaries.xml?
country=DEU HTTP/1.1

XML Response

The following shows the XML response returned by the previous request.

<?xml version="1.0" encoding="UTF-8"?>
<ConfiguredDictionaryResponse>
   <dictionaries>
      <customDictionary>false</customDictionary>
      <repositoryName>MAPMARKER_DE_Standard_2014_09</repositoryName>
      <vintage>2014.09</vintage>
      <source>Standard</source>
      <description>MAPMARKER_DE_Standard_2014_09</description>
      <countrySupportInfos>
         <supportedCountries>DEU</supportedCountries>
         <supportedDataTypes>POST_CODE_1</supportedDataTypes>
         <supportedDataTypes>AREA_NAME_3</supportedDataTypes>
         <supportedDataTypes>STREET</supportedDataTypes>
      </countrySupportInfos>
   </dictionaries>
   <dictionaries>
      <customDictionary>false</customDictionary>
      <repositoryName>
          MAPMARKER_DE_AddressPoint_2014_09
      </repositoryName>
      <vintage>2014.09</vintage>
      <source>AddressPoint</source>
      <description>
          MAPMARKER_DE_AddressPoint_2014_09
      </description>
      <countrySupportInfos>
         <supportedCountries>DEU</supportedCountries>
         <supportedDataTypes>POINT</supportedDataTypes>
         <supportedDataTypes>POST_CODE_1</supportedDataTypes>
         <supportedDataTypes>AREA_NAME_3</supportedDataTypes>
      </countrySupportInfos>
   </dictionaries>
</ConfiguredDictionaryResponse>