This route emulates a back-end system that serves data (a static dummy 101 transaction) through an OAuth2-protected RESTful endpoint. All HTTP requests that come to this endpoint must carry a security token in the Authorization header to prove the request sender's identity, otherwise the request authorization fails.
Route Structure
Route Components Description
| Secured REST Inbound
|
RESTful Web Service Inbound |
Receives HTTP requests sent to http://{YourHostName}:9108/server/. The RESTful Web Service that listens for HTTP requests on port 9108 uses the OAuth2 authorization type (see the Jetty tab of Restful Web Service Server) to authorize incoming HTTP requests. |
| Secured Call
|
REST Client |
Generates a response from the Velocity template. |
| REST Out
|
RESTful Web Service Outbound |
Returns a response to the caller. |