HTTP Endpoint Component
The HTP Endpoint Component listens for incoming HTTP Requests on a specified path and returns those requests to the pipeline. It expects to receive an HTTPResponse for that request that will be returned to the requestor. The HTTPRequest object is assigned a tag, “httpEndpointRequestID”, that should be attached to the HTTPResponse object so that it can be delivered to the correct client.
The component is reachable by sending a request to the webservice URL on the runtime, https://<runtimeAddress>:<port>/webserivce/<path>, where “path” is the configured path of the component.
Data Governance
This component does not modify the Data Governance status of any items.
Input Channels
responses — Accepts an HTTPResponse object that is returned to the client that matching the “httpEndpointRequestID” tag.
Output Channels
requests — Returns an HTTPRequest object representing a request that was made to the HTTP Endpoint Component. The object contains an “httpEndpointRequestID” tag that must be copied to the HTTPResponse object to match the response to the appropriate request.
Parameters
path — (String) The path on which this component will receive requests. This is a partial path that will be appended to the runtimes URL, https://<runtimeAddress>:<port>/webserivce/<path>