selfserviceoperationgeocoderip

This configuration is optional 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.
<operationGeocoderIp
<geocoderIpService
id
required
=
string

ID of the geocoderIpService defined in the geocoderip configuration

batchSize
optional
=
int

Batch size for the IP geocoding, at most this many IP addresses will be sent to the geocoderIpService at once for geocoding using this geocoder-ip. For non-positive values multiple IP addresses are geocoded within one request. The number of IP addresses within one request depends on other configurations (eg request size when reading source data from database).

Default: 100

>
required

Geocoding service to be used for the import of IP addresses.

</geocoderIpService>
<geocodingLimit
>
optional
int

Maximum number of data records to be geocoded in one geocoding process, not to be confused with the batch size which is the number of data records to be geocoded in one single geocoding request.

Default: 10000

</geocodingLimit>
<attributeMappings
<ipAddress
<attributeName
>
optionalmax. unbounded
string

Name of a source attribute which is suggested to be used for a specific geocoding request attribute.

</attributeName>
>
optional
</ipAddress>
>
required
</attributeMappings>
>
required
</operationGeocoderIp>
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:
    selfserviceoperationgeocoderip:
      geocoderIpService:
        id: "text"
        batchSize: 15
      geocodingLimit: 15
      attributeMappings:
        ipAddress:
        - "text"
        - "text"

Filename: selfserviceoperationgeocoderip-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"?>
<operationGeocoderIp>
  <geocoderIpService id="text" batchSize="15"/>
  <geocodingLimit>15</geocodingLimit>
  <attributeMappings>
    <ipAddress>
      <attributeName>text</attributeName>
      <attributeName>text</attributeName>
    </ipAddress>
  </attributeMappings>
</operationGeocoderIp>