geocoderip

This configuration is required when using the plugin Geocoder_IP.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<geocoderIpConfiguration
>
required

configuration for the possible Geocoder IP Services

<geocoderIpServices
>
required
<geocoderIpService
id
required
=
string
<server
<url
>
required
string

the url of the Geocoder IP server

</url>
<timeout
>
optional
duration

ISO 8601 Duration Format

Format: P[n]Y[n]M[n]DT[n]H[n]M[n]S

  • P is the duration designator (period) placed at the start of the duration representation
  • Y is the number of years
  • M is the number of months
  • D is the number of days
  • T is the time designator that precedes the time components
  • H is the number of hours
  • M is the number of minutes
  • S is the number of seconds

Examples:

  • PT5M - 5 minutes
  • PT1H30M - 1 hour and 30 minutes
  • P1D - 1 day
  • P1Y2M3DT4H5M6S - 1 year, 2 months, 3 days, 4 hours, 5 minutes, and 6 seconds

the timeout as duration

Default: PT30S

</timeout>
>
required
</server>
>
optionalmax. unbounded
</geocoderIpService>
</geocoderIpServices>
</geocoderIpConfiguration>
This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
cadenzaconfig:
  settings:
    geocoderip:
      geocoderIpServices:
      - id: "text"
        server:
          url: "text"
          timeout: "P2DT3M"
      - id: "text"
        server:
          url: "text"
          timeout: "P2DT3M"

Filename: geocoderip-config.xml

This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<geocoderIpConfiguration>
  <geocoderIpServices>
    <geocoderIpService id="text">
      <server>
        <url>text</url>
        <timeout>P2DT3M</timeout>
      </server>
    </geocoderIpService>
    <geocoderIpService id="text">
      <server>
        <url>text</url>
        <timeout>P2DT3M</timeout>
      </server>
    </geocoderIpService>
  </geocoderIpServices>
</geocoderIpConfiguration>