Interlok comes bundled with an HTTP server (based on jetty) which can be used to as an entrypoint into a workflow.

One of the more common integration scenarios that we encounter is to use Interlok as an API gateway; whether it is to overlay caching or authentication on an existing API, or to handle API calls itself. Interlok comes bundled with Jetty which is used to serve the UI and can used as entrypoint into a workflow. The connection for any HTTP based workflow should be one of jetty-embedded-connection, jetty-http-connection, or jetty-https-connection. As the name would suggest jetty-embedded-connection makes use of the jetty management component if you have enabled it. If you aren’t using the this management component then you should use one of the other connection types which will allow you to configure specific embedded jetty instances on a per-connection basis. Enabling the jetty management component and using jetty-embedded-connection will allow you the greatest flexibility in terms of configuration as you have full access to the jetty.xml configuration file.

There is currently only a single message consumer type: jetty-message-consumer. The destination for the consumer should match the URI endpoint that you wish to listen on (e.g. /path/to/my/api); wildcards are supported and will be dependent on the servlet implementation of the underlying jetty instance. Parameters from the URI can be stored as metadata (or object metadata) with an optional prefix, as can any HTTP transport headers. If no jetty-standard-response-producer or jetty-response-service is configured as part of the workflow, then a standard HTTP OK response is sent back to the caller with no content.

There are a number of supporting components that make will help you configure a workflow that provides the behaviour you need.

Single or multi-threaded processing

If you use a standard-workflow then requests are processed sequentially in order that they are received (i.e. single-threaded); switch to using pooling-workflow as required. Because pooling-workflow uses an internal thread pool to process requests you will need to either explicitly configure a jetty-pooling-workflow-interceptor on the workflow instance or uniquely identify both the channel and workflow (via their respective unique-ids); this means that the HTTP response is not written prematurely before the response is available.

Using multiple workflows

If you intend on spreading the work across multiple workflows then since 3.7.3 you have jetty-async-workflow-interceptor that allows you to share the work over multiple workflows and supports either standard-workflow or pooling-workflow. It works in much the same fashion as the jetty-pooling-workflow-interceptor but caches the HttpServletResponse and other things in an expiring cache keyed against the unique message id. It has to be configured explicitly in either REQUEST or RESPONSE mode, depending on the type of workflow; REQUEST mode should always be configured on the workflow that is attached to the jetty-message-consumer, and RESPONSE mode on the workflow that will make the HTTP response to the client (it needs to be in the same Interlok instance).

<pooling-workflow>
  <unique-id>JettyHandler</unique-id>
  <jetty-async-workflow-interceptor>
    <mode>REQUEST</mode>
  </jetty-async-workflow-interceptor>
  <consumer class="jetty-message-consumer">
    <destination class="configured-consume-destination">
      <destination>/dummy/index.html</destination>
    </destination>
  </consumer>

  <service-collection class="service-list">
    <services>
      <standalone-producer>
        ... produce to JMS.
        <producer class="jms-queue-producer">
          <correlation-id-source class="message-id-correlation-id-source"/>
        </producer>
      </standalone-producer>
    </services>

  </service-collection>
</pooling-workflow>

<pooling-workflow>
  <unique-id>SendResponseToJetty</unique-id>
  <jetty-async-workflow-interceptor>
    <mode>RESPONSE</mode>
  </jetty-async-workflow-interceptor>
  <consumer class="jms-queue-consumer">
    <correlation-id-source class="message-id-correlation-id-source"/>
  </consumer>

  <service-collection class="service-list">
    <services>
      <jetty-response-service>
        <http-status>200</http-status>
        <content-type>application/json</content-type>
      </jetty-response-service>
    </services>

  </service-collection>
</pooling-workflow>
  1. JettyHandler just receives a request, and immediately hands off to a JMS queue. We use the new message-id-correlation-id-source to record the current message-id as the JMSCorrelationID
  2. Some processing happens elsewhere.
  3. SendResponseToJetty listens on queue; again we use message-id-correlation-id-source so that JMSCorrelationID becomes the message-id of the message.
  4. We write the response.

Long lived requests

If the workflow is doing something that exceeds some arbitrary length (generally 30 seconds or a minute seem to be magic) then you may find that the HTTP connection is terminated before a response can be sent back to client. The adapter has support for the 102 response code defined by RFC2518; the client can send Expect: 102-Processing as a header which will cause a 102 response code to be sent intermittently to the client (the time defaults to every 20 seconds, but this is configurable via send-processing-interval).

This is supported quite nicely by curl; so if you added the header, then you can expect this kind of logging :

$ curl -vvv --header "Expect: 102-Processing" http://localhost:8080/mockActivity
* timeout on name lookup is not supported
*   Trying ::1...
* TCP_NODELAY set
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0* Connected to localhost (::1) port 8080 (#0)
> GET /mockActivity HTTP/1.1
> Host: localhost:8080
> User-Agent: curl/7.51.0
> Accept: */*
> Expect: 102-Processing
>
  0     0    0     0    0     0      0      0 --:--:--  0:00:19 --:--:--     0< HTTP/1.1 102 Processing
  0     0    0     0    0     0      0      0 --:--:--  0:00:39 --:--:--     0< HTTP/1.1 102 Processing
  0     0    0     0    0     0      0      0 --:--:--  0:00:59 --:--:--     0< HTTP/1.1 102 Processing
  0     0    0     0    0     0      0      0 --:--:--  0:01:05 --:--:--     0< HTTP/1.1 200 OK
< Content-Type: application/json
< Transfer-Encoding: chunked
< Server: Jetty(9.4.8.v20171121)
<
{ [65 bytes data]
* Curl_http_done: called premature == 0
100    61    0    61    0     0      0      0 --:--:--  0:01:05 --:--:--    14
                  {"activity" : "complete"}

* Connection #0 to host localhost left intact

Cross Origin Requests / Additional Filters.

If you need support for W3C’s Access Control for Cross-Site Requests specification then you can enable it using the CrossOriginFilter that is available as part of jetty-servlets.jar (this should be bundled as part of the installation automatically, or if not, depend on it explicitly when building runtime libraries). You will need to use jetty-embedded-connection as the connection as it relies on the webdefault.xml that is applied to all web application contexts.

If you have a ROOT.war in your installation, and intend on having that in production, then just edit the existing webdefault.xml that is referenced by your jetty configuration files (usually config/webdefault.xml) and add the filter (as per the jetty cross origin filter documentation). You can add any filter you wish

If you will not have ROOT.war in your production environment; then you need to create a jetty-webdefault.xml that is available on the classpath (assuming a standard installation, putting it into the config directory should be enough) and add the filter as per the jetty documentation.

Access Control

JettyLoginServiceFactory

This component allows you to plugin an LoginService implementation that can restrict access specific URLs. The only implementation is jetty-hash-login-service which creates the standard Jetty HashLoginService that is an implementation of a UserRealm that stores users and roles in-memory via a HashMap (for instance using realm.properties from the jetty distribution). This only protects a given URL on a username/password basis (as opposed to checking other HTTP transport headers or similar).

VerifyIdentityService

The verify-identity-service service is not dissimilar in scope to jetty-hash-login-service; it provides access control to your workflow but happens within your workflow, not outside it. It allows you to allow/deny access based on the payload content and associated metadata (which may have been derived from URI parameters or HTTP transport headers). We consider it generally more flexible that jetty-hash-login-service as you are within a workflow, so the full power of Interlok is at your disposal. In a rather contrived example we can unpick the standard HTTP transport header Authorization: Basic base64(username:password) and cross reference that against a user in an arbitrary database. Ultimately, verify-identity-service simply checks that the associated metadata keys match each other (i.e. the value associated with requestUser must match that stored against db_user, ditto requestPassword + db_password).

<copy-metadata-service>
  <metadata-keys>
    <key-value-pair>
      <key>Authorization</key>
      <value>__DecodedAuth</value>
    </key-value-pair>
  </metadata-keys>
</copy-metadata-service>
<replace-metadata-value>
  <metadata-key-regexp>__DecodedAuth</metadata-key-regexp>
  <search-value>Basic\s+(.*)$</search-value>
  <replacement-value>$1</replacement-value>
</replace-metadata-value>
<metadata-base64-decode>
  <metadata-key-regexp>__DecodedAuth</metadata-key-regexp>
</metadata-base64-decode>
<copy-metadata-service>
  <metadata-keys>
    <key-value-pair>
      <key>__DecodedAuth</key>
      <value>requestUser</value>
    </key-value-pair>
    <key-value-pair>
      <key>__DecodedAuth</key>
      <value>requestPassword</value>
    </key-value-pair>
  </metadata-keys>
</copy-metadata-service>
<replace-metadata-value>
  <metadata-key-regexp>requestUser</metadata-key-regexp>
  <search-value>^(.*):.*$</search-value>
  <replacement-value>$1</replacement-value>
</replace-metadata-value>
<replace-metadata-value>
  <metadata-key-regexp>requestPassword</metadata-key-regexp>
  <search-value>^.*:(.*)$</search-value>
  <replacement-value>$1</replacement-value>
</replace-metadata-value>
<!-- Now we have the requestUser and requestPassword let's look up the user in the database
     Assume that db_user + db_password is populated by JdbcDataQueryService as metadata.
-->
<verify-identity-service>
  <unique-id>VerifyUsernamePassword</unique-id>
  <builder class="metadata-identity-builder">
    <metadata-key>requestUser</metadata-key>
    <metadata-key>requestPassword</metadata-key>
  </builder>
  <verifier class="simple-metadata-user-identity-verifier">
    <metadata-map>
      <key-value-pair>
        <key>requestUser</key>
        <value>db_user</value>
      </key-value-pair>
      <key-value-pair>
        <key>requestPassword</key>
        <value>db_password</value>
      </key-value-pair>
    </metadata-map>
  </verifier>
</verify-identity-service>

JettyRoutingService

The jetty-routing-service (3.6.4+) service allows you to listen on a wildcard URI, and based on the HTTP method / URI pattern, route messages within a branching-service-collection. So, if we have a consumer that is configured to listen on /contacts/*; based on the HTTP method, and the pattern, we want to have different behaviour, simulating a simplified CRUD api. This type of configuration is simplified using jetty-routing-service which would previously have been possible using embedded-scripting-service or similar.

<branching-service-collection>
  <unique-id>HTTP Router</unique-id>
  <first-service-id>route</first-service-id>
  <services>
    <jetty-routing-service>
      <unique-id>route</unique-id>
      <route>
        <url-pattern>^/contacts$</url-pattern>
        <method>GET</method>
        <service-id>list</service-id>
      </route>
      <route>
        <url-pattern>^/contacts/(.*)$</url-pattern>
        <method>GET</method>
        <metadata-key>ContactId</metadata-key>
        <service-id>retrieve</service-id>
      </route>
      <route>
        <url-pattern>^/contacts/(.*)$</url-pattern>
        <method>DELETE</method>
        <metadata-key>ContactId</metadata-key>
        <service-id>delete</service-id>
      </route>
      <default-service-id>NotHandled</default-service-id>
    </jetty-routing-service>
    <service-list>
       <unique-id>list</unique-id>
       ...
    </service-list>
    <service-list>
       <unique-id>retrieve</unique-id>
       ...
    </service-list>
    <service-list>
       <unique-id>delete</unique-id>
       ...
    </service-list>
    <service-list>
       <unique-id>NotHandled</unique-id>
       ...
    </service-list>
  </services>
</branching-service-collection>
  • If the URI is /contacts and the method is GET then we branch to the list service; which can then list all the contacts in the database.
  • If the URI is /contacts/12345 and the method is GET then we branch to the retrieve service; which can retrieve the contact details. The metadata key ContactId will contain 12345
  • If the URI is /contacts/12345 and the method is DELETE then we branch to the delete service; which can delete the contact where ContactId=12345
  • If the URI doesn’t match, then we branch to the NotHandled service; which can just return a 404 or similar code.

JettyResponseService / StandardResponseProducer

Both jetty-standard-response-producer and jetty-response-service (3.6.5+) perform the same function. The first is a producer (which can be wrapped by StandaloneProducer for insertion into a service list), and the second is just a service that abstracts that wrapping away from you (to avoid XML bloat, and to have cleaner UI representation). Under the covers jetty-response-service simply wraps jetty-standard-response-producer, and supports the %message{metadata-key} syntax for content-type and http-status. If you need full control over configuration then use jetty-standard-response-producer. A special service jetty-commit-response is available to commit the response before the workflow finishes with the message.