Testing a clearing-house structure with the IDS-Messaging-Service #427
-
Hey, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello and welcome! The idea of the system behind it is actually quite simple: Receiving IDS-messages -> receiving a request and sending a response (Step 4): Sending of IDS-messages -> sending a request (Step 5): An example of implementations of handlers and how to send IDS-messages has been implemented in the Dataspace Connector:
For sending test messages to a ClearingHouse please contact the colleagues of the corresponding repo directly: |
Beta Was this translation helpful? Give feedback.
Hello and welcome!
The idea of the system behind it is actually quite simple:
Receiving IDS-messages -> receiving a request and sending a response (Step 4):
In order to receive and process incoming IDS-messages, in addition to an IDS-endpoint (/api/ids/data), so-called message-handlers are also required, which take care of processing of the incoming messages. The sample implementation shown in step 4 can handle incoming IDS-messages of type RequestMessage, see the SupportedMessageType annotation. The handleMessage method must be implemented, which executes certain logic when an IDS-message of this RequestMessage-type arrives. Once the logic has been processed, a response must be returned …