Admin engine
Contents
XP applications using the XP framework are essentially powered by the runtime’s HTTP engine.
Endpoint
Admin engine is responsible for processing of site requests on the endpoint :8080/admin/*
Request pipeline
The site pipeline is executed as a subset of the common pipeline:
- Tools handler
-
Tools are admin apps that extend the launcher menu. A tool’s endpoint is
:8080/admin/tool/<app-name>/<tool-name>
. The respective widget controller must be located in your project atsrc/main/resources/admin/tools/<tool-name>/<tool-name>.js
. - Widget handler
-
Widgets are admin extensions used by admin tools. The respective widget controller must be located in your project at
src/main/resources/admin/widgets/<widget-name>/<widget-name>.js
.