Using SAP Cloud Application Event Hub in Cloud Foundry
SAP Cloud Application Event Hub is the new default offering for messaging in SAP Business Technology Platform (SAP BTP). CAP provides out-of-the-box support for SAP Cloud Application Event Hub, and automatically handles many things behind the scenes, so that application coding stays agnostic and focused on conceptual messaging.
WARNING
The following guide is based on a productive (paid) account on SAP BTP.
Prerequisite: Set up SAP Cloud Application Event Hub
Follow guides Initial Setup as well as Integration Scenarios → CAP Application as a Consumer to set up SAP Cloud Application Event Hub in your account.
Configuration
Use event-broker
in Node.js
Install plugin @cap-js/event-broker
:
npm add @cap-js/event-broker
And add the following to your package.json to use SAP Cloud Application Event Hub:
"cds": {
"requires": {
"messaging": {
// kind "event-broker" is derived from the service's technical name
"[production]": { "kind": "event-broker" }
}
}
}
Learn more about configuring SAP Cloud Application Event Hub in CAP Node.js.
Learn more about cds.env
profiles.
Use event-hub
in Java
Install plugin com.sap.cds:cds-feature-event-hub
and add the following to your application.yaml to use SAP Cloud Application Event Hub:
<dependency>
<groupId>com.sap.cds</groupId>
<artifactId>cds-feature-event-hub</artifactId>
<version>${latest-version}</version>
</dependency>
cds:
messaging.services:
- name: "messaging-name"
kind: "event-hub"
Find the latest version on Maven central.Learn more about configuring SAP Cloud Application Event Hub in CAP Java.
Hybrid Testing
Since SAP Cloud Application Event Hub sends events via HTTP, you won't be able to receive events on your local machine unless you use a tunneling service. Therefore we recommend to use a messaging service of kind local-messaging
for local testing.
Prepare for MTA Deployment
A general description of how to deploy CAP applications to SAP BTP Cloud Foundry, can be found in the Deploy to Cloud guide. As documented there, MTA is frequently used to deploy to SAP BTP.
Follow these steps to ensure proper binding of your deployed application to the SAP Cloud Application Event Hub instance. The guide makes use of the @capire/incidents reference application.
We'll start with the definition of the app itself:
modules:
- name: incidents-srv
provides:
- name: incidents-srv-api
properties:
url: ${default-url} #> needed in references below
Add SAP Cloud Application Event Hub Instance
Your SAP Cloud Application Event Hub configuration must include your system namespace as well as the webhook URL.
resources:
- name: incidents-event-broker
type: org.cloudfoundry.managed-service
parameters:
service: event-broker
service-plan: event-connectivity
config:
# unique identifier for this event broker instance
# should start with own namespace (i.e., "foo.bar") and may not be longer than 15 characters
systemNamespace: cap.incidents
webhookUrl: ~{incidents-srv-api/url}/-/cds/event-broker/webhook
requires:
- name: incidents-srv-api
resources:
- name: incidents-event-broker
type: org.cloudfoundry.managed-service
parameters:
service: event-broker
service-plan: event-connectivity
config:
# unique identifier for this event broker instance
# should start with own namespace (i.e., "foo.bar") and may not be longer than 15 characters
systemNamespace: cap.incidents
webhookUrl: ~{incidents-srv-api/url}/messaging/v1.0/eb
requires:
- name: incidents-srv-api
Add Identity Authentication Service Instance
Your Identity Authentication service instance must be configured to include your SAP Cloud Application Event Hub instance under consumed-services
in order for your application to accept requests from SAP Cloud Application Event Hub. For this purpose, the Identity Authentication service instance should further be processed-after
the SAP Cloud Application Event Hub instance.
resources:
- name: incidents-ias
type: org.cloudfoundry.managed-service
requires:
- name: incidents-srv-api
processed-after:
# for consumed-services (cf. below), incidents-event-broker must already exist
# -> ensure incidents-ias is created after incidents-event-broker
- incidents-event-broker
parameters:
service: identity
service-plan: application
config:
consumed-services:
- service-instance-name: incidents-event-broker
xsuaa-cross-consumption: true #> if token exchange from IAS token to XSUAA token is needed
display-name: cap.incidents #> any value, e.g., reuse MTA ID
home-url: ~{incidents-srv-api/url}
Bind the Service Instances
Finally, we can bring it all together by binding the two service instances to the application. The bindings must both be parameterized with credential-type: X509_GENERATED
and authentication-type: X509_IAS
, respectively, to enable Identity Authentication service-based authentication.
modules:
- name: incidents-srv
provides:
- name: incidents-srv-api
properties:
url: ${default-url}
requires:
- name: incidents-ias
parameters:
config:
credential-type: X509_GENERATED
app-identifier: cap.incidents #> any value, e.g., reuse MTA ID
- name: incidents-event-broker
parameters:
config:
authentication-type: X509_IAS