Skip To Content

Receive Features on a REST Endpoint

The Receive Features on a REST Endpoint Input Connector can be used to receive and adapt event data, formatted as feature JSON, on a REST endpoint hosted by ArcGIS GeoEvent Server. Given a standard GeoEvent Server configuration, data providers should expect to send data via HTTP/POST to an endpoint formatted as https://<machine_name>.<domain>:6143/geoevent/rest/receiver/name where name is the name of the configured input connector.

Feature JSON with two feature records, with point geometry, organized in an array

Usage notes

  • Use this connector to receive data formatted to include attributes and geometry as described at Features and Geometries.
  • This input connector pairs the Feature JSON Inbound Adapter with the HTTP Inbound Transport.
  • An example of typical feature JSON is illustrated above. This example organizes two feature records, with point geometry, in an array.
  • The adapter will handle each object in an array as a separate event record.
  • Like GeoJSON, feature JSON is a subtype of generic JSON. Different GeoEvent Server adapters are used to process these specific formats.
  • This connector can adapt point, multipoint, polyline, and polygon features. It does not handle Feature Sets or Feature Collections.
  • Configuring and saving a new Receive Features on a REST Endpoint input creates a GeoEvent Server hosted REST endpoint.
  • Data providers send feature JSON to a GeoEvent Server hosted REST endpoint as part of an HTTP/POST request.
  • You can recover the fully-qualified path to the GeoEvent Server hosted REST endpoint by editing the input after it has been saved.
  • GeoEvent Server can be configured to use a different base URL for its REST receiver and/or connect through a port other than 6143.
  • A data provider must include, in the header of their HTTP/POST, the MIME type associated with data being sent.
  • The input you configure should specify which MIME types the transport will accept.
  • This connector expects the MIME type application/json, which is a default MIME type for the exchange of JSON between a client and server.
  • Feature JSON is generally expected to include geometry, rather than coordinate values from which geometry can be constructed.
  • This input connector does not construct a geometry from coordinates received as attributes values.
  • Data formatted as feature JSON must include a spatial reference. You should not specify a Default Spatial Reference when using this connector.
  • The transport will accept both HTTP/GET and HTTP/POST requests. A data provider is typically expected to make an HTTP/POST request to send event data to GeoEvent Server with feature JSON in the request’s body and no query parameters. This input connector, however, can also extract feature JSON included as the value of a specified query parameter in an HTTP/GET request’s URL. Use the Parameter Name for the Raw Data property to leverage this capability.

Parameters

ParameterDescription

Name

A descriptive name for the input connector used for reference in GeoEvent Manager.

Create GeoEvent Definition

Specifies whether a new or existing GeoEvent Definition should be used for the inbound event data. A GeoEvent Definition is required for GeoEvent Server to understand the inbound event data attribute fields and data types.

  • Yes – A new GeoEvent Definition will be created based on the schema of the first event record received.
  • No – A new GeoEvent Definition will not be created. Select an existing GeoEvent Definition that matches the schema of the inbound event data.

GeoEvent Definition Name (New)

(Conditional)

The name assigned to a new GeoEvent Definition. If a GeoEvent Definition with the specified name already exists, the existing GeoEvent Definition will be used. The first data record received will be used to determine the expected schema of subsequent data records, a new GeoEvent Definition will be created based on that first data record's schema.

Property is shown when Create GeoEvent Definition is set to Yes and is hidden when set to No.

GeoEvent Definition Name (Existing)

(Conditional)

The name of an existing GeoEvent Definition to use when adapting received data to create event data for processing by a GeoEvent Service.

Property is shown when Create GeoEvent Definition is set to No and is hidden when set to Yes.

Expected Date Format

The pattern used to match expected string representations of date/time values and convert them to Java Date values. The pattern's format follows the Java SimpleDateFormat class convention. This property has no default value.

While GeoEvent Server prefers date/time values to be expressed in the ISO 8601 standard, several string representations of date/time values commonly recognized as date values can be converted to Java Date values without specifying an Expected Date Format pattern. These include:

  • "2019-12-31T23:59:59" - The ISO 8601 standard format
  • 1577836799000 - Java Date (epoch long integer; UTC)
  • "Tue Dec 31 23:59:59 -0000 2019" - A common web services string format
  • "12/31/2019 11:59:59 PM" - Common format used in the United States (12-hour clock)
  • "12/31/2019 23:59:59" - Common format used in the United States (24-hour clock)

If the date/time values received are expressed using a convention other than one of the five shown above, you will have to specify an Expected Date Format so GeoEvent Server knows how the date/time values should be adapted.

Acceptable MIME Types (Server Mode)

Specifies the MIME types the input connector will accept. Use commas to separate values, for example: text/plain,application/xml,text/xml. MIME types typically consist of a type/subtype structure and are used when a server wants to specify the internet media type(s) of data it will accept from clients. The default is application/json which is the official MIME type for the exchange of JSON between a client and server.

For more information on official MIME types, see Internet Assigned Numbers Authority (IANA). For more information on the MIME types not used by ArcGIS Server, see MIME types not used by ArcGIS Server.

Default Spatial Reference

The well-known ID (WKID) of a spatial reference to be used when a geometry is constructed from attribute field values whose coordinates are not latitude and longitude values for an assumed WGS84 geographic coordinate system, or geometry strings are received that do not include a spatial reference. A well-known text (WKT) value or the name of an attribute field containing the WKID or WKT may also be specified.

Parameter Name for the Raw Data

The name of the query parameter whose value provides the raw data for inbound HTTP/GET requests. The query parameter’s value should be a single string formatted as generic JSON.


In diesem Thema
  1. Usage notes
  2. Parameters