Name

Gateway Servlet — entry point for all incoming requests

Description

The gateway servlet is the entry point for all incoming requests. It is responsible for initializing a heap of objects, and dispatching all requests to a configured servlet (which is itself a heap object). The configuration of the gateway servlet is loaded from a JSON-encoded configuration file, typically located at ~/.ForgeRock/OpenIG/config.json.

Usage

{
     "heap": { heap-configuration object },
     "servletObject": string
}

Properties

"heap": object, required

The heap object configuration.

"servletObject": string, required

The name of the servlet heap object to dispatch all requests to.

Javadoc

org.forgerock.openig.gateway.GatewayServlet