Difference between revisions of "DE4A Connector"

From DE4A
Jump to navigation Jump to search
Line 216: Line 216:
 
In addition to the core architecture, the XML Schemas defined to model the exchanged information, data constraints, interfaces, etc. are also important. All this is part of the Connector core through the de4a-commons library, which contains the above-mentioned model as well as utilities and conversion tools.
 
In addition to the core architecture, the XML Schemas defined to model the exchanged information, data constraints, interfaces, etc. are also important. All this is part of the Connector core through the de4a-commons library, which contains the above-mentioned model as well as utilities and conversion tools.
  
*Author: DE4A (WP5)
+
*Author: ''DE4A (WP5)''
 
*Repository: https://github.com/de4a-wp5/de4a-commons
 
*Repository: https://github.com/de4a-wp5/de4a-commons
  
Line 222: Line 222:
 
As part of the bunch of libraries used by the Connector there are some of the related with the core features and which represent a starting point for the functionalities provided by the Connector.
 
As part of the bunch of libraries used by the Connector there are some of the related with the core features and which represent a starting point for the functionalities provided by the Connector.
  
====TOOP Connector====
+
==== TOOP Connector====
 
The TOOP Connector is a set of shared utility functions used in the Connector to perform common tasks that are required for a safe and interoperable data exchange. In the initial iteration the latest version of the TOOP Connector technical components were reused mainly for the usage of the built-in phase4 AS4 Gateway. Other elements of the TOOP Connector are currently ignored.
 
The TOOP Connector is a set of shared utility functions used in the Connector to perform common tasks that are required for a safe and interoperable data exchange. In the initial iteration the latest version of the TOOP Connector technical components were reused mainly for the usage of the built-in phase4 AS4 Gateway. Other elements of the TOOP Connector are currently ignored.
  
Line 240: Line 240:
 
*Repository: https://github.com/phax/peppol-commons
 
*Repository: https://github.com/phax/peppol-commons
  
===Data management===
+
=== Data management===
 
To manage the model and the data stored by the Connector the following technologies are used:
 
To manage the model and the data stored by the Connector the following technologies are used:
  
Line 256: Line 256:
 
*'''In-house solutions'''
 
*'''In-house solutions'''
 
The Connector project includes some utilities that allow the data processing and internal tools to perform all the Connector tasks. Those utilities are within the Connector project as a module called ''de4a-commons.''
 
The Connector project includes some utilities that allow the data processing and internal tools to perform all the Connector tasks. Those utilities are within the Connector project as a module called ''de4a-commons.''
 +
 +
==Installation and configuration==
 +
 +
===Installation===
 +
As a prerequisite to build the Connector is to have at least Java 11 and Apache Maven 3.6 or later installed.
 +
 +
You should be able to compile entire packages from the parent POM file:
 +
 +
mvn clean install
 +
 +
It is also possible to compile each package separately by browsing to the folder and running the command above.
 +
 +
====Package====
 +
The compilation process will be packaging the project into a <code>.war</code> file located on <code>/target/</code> path, which should be deployable on any applications server. If you compile the parent pom, the IDK and Connector target paths will be created with their corresponding <code>war</code> files.
 +
 +
*'''de4a-commons'''
 +
 +
de4a-commons project is now on maven central OSS Sonatype repository
 +
 +
*'''Toop version v2.1.2-SNAPSHOT'''
 +
 +
Due to the lastest changes on de4a-commons Toop-connector-ng version should be <code>2.1.2-SNAPSHOT</code>, so you may need to add following repo server on your maven settings
 +
 +
https://oss.sonatype.org/content/repositories/snapshots/
 +
 +
===Connector configuration guide===
 +
For a correct configuration of the Connector, three main property files must be considered:
 +
 +
*<code>application.properties</code>: main system configuration
 +
*<code>phase4.properties</code>: AS4 gateway configurations
 +
*<code>log4j2.xml</code>: logging configuration
 +
 +
Bellow, a working example of the <code>application.properties</code> file:
 +
 +
'''# Database properties'''<span class="Codeinline"></span>
 +
 +
database.datasourceConf.url=jdbc:h2:mem:testdb<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.driverClassName=org.h2.Driver<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.username=sa<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.password=password<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.initializationMode=always<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.jpaHibernate.dialectPlatform=org.hibernate.dialect.H2Dialect<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.jpaHibernate.ddlauto=create-drop<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.jpaHibernate.generateddl=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.jpaHibernate.namingStrategy=org.hibernate.cfg.ImprovedNamingStrategy<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.jpaHibernate.showSql=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
database.datasourceConf.jpaHibernate.formatSql=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# H2 in-memory database console port (default 21080)'''<span class="Codeinline"></span>
 +
 +
h2.console.port=21080<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# i18n properties'''<span class="Codeinline"></span>
 +
 +
spring.messages.basename=messages/messages<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
spring.messages.default_locale=en<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Spring allowing override beans'''<span class="Codeinline"></span>
 +
 +
spring.main.allow-bean-definition-overriding=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Charset encoding'''<span class="Codeinline"></span>
 +
 +
server.servlet.encoding.charset=UTF-8<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
server.servlet.encoding.enabled=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
server.servlet.encoding.force=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# SSL context enabled (true|false)'''<span class="Codeinline"></span>
 +
 +
ssl.context.enabled=false<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# SSL configuration (optional when ssl.context.enabled is false, otherwise, it must be configured)'''<span class="Codeinline"></span>
 +
 +
<nowiki>#</nowiki>ssl.keystore.type=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>ssl.keystore.path=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>ssl.keystore.password=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>ssl.truststore.path=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>ssl.truststore.password=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Global flags for initializer'''<span class="Codeinline"></span>
 +
 +
global.debug = true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
global.production = false<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Instance name for logging'''<span class="Codeinline"></span>
 +
 +
global.instancename = dev-from-ide<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# DE4A Kafka settings'''<span class="Codeinline"></span>
 +
 +
de4a.kafka.enabled=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
'''# Enables the standard logging separately of the Kafka messages. It is necessary for print metrics messages - (default: true)'''<span class="Codeinline"></span>
 +
 +
de4a.kafka.logging.enabled=true<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
'''# Enables Kafka connection via HTTP (Only enable HTTP mode if outbound TCP connections are blocked from your internal network)'''<span class="Codeinline"></span>
 +
 +
de4a.kafka.http.enabled=false<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Kafka server address (Eg.: de4a-dev-kafka.egovlab.eu:9092)'''<span class="Codeinline"></span>
 +
 +
de4a.kafka.url=de4a-dev-kafka.egovlab.eu:9092<span class="Codeinline"><span lang="PT-BR"></span></span>
 +
 +
'''# Uncomment the following property and remove the above one if HTTP mode is enabled'''<span class="Codeinline"></span>
 +
 +
<nowiki>#</nowiki> de4a.kafka.url=<nowiki>https://de4a-dev-kafka.egovlab.eu</nowiki><span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Establish a topic on kafka tracker - Pattern: de4a-<country-code>-<partner-name> - Eg.: de4a-se-egovlab - (default: de4a-connector)'''<span class="Codeinline"></span>
 +
 +
de4a.kafka.topic=de4a-connector<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Logging metrics messages prefix - Default: DE4A METRICS'''<span class="Codeinline"></span>
 +
 +
log.metrics.prefix=DE4A METRICS<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# toop legacy kafka properties (Do not touch)'''<span class="Codeinline"></span>
 +
 +
toop.tracker.enabled = false<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# DSD base URL (Do not modify)'''<span class="Codeinline"></span>
 +
 +
toop.dsd.service.baseurl = <nowiki>http://dsd.dev.exchange.toop.eu</nowiki><span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# What AS4 implementation to use?'''<span class="Codeinline"></span>
 +
 +
toop.mem.implementation = phase4<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Our AS4 sending AP endpoint (holodeck)'''<span class="Codeinline"></span>
 +
 +
<nowiki>#</nowiki>toop.mem.as4.endpoint = <nowiki>http://localhost:8083/tc-webapp/as4</nowiki><span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Domibus server endpoint'''<span class="Codeinline"></span>
 +
 +
<nowiki>#</nowiki> domibus.endpoint=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# SMP Client configuration stuff - Do not modify (default values)'''<span class="Codeinline"></span>
 +
 +
smpclient.truststore.type = JKS<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
smpclient.truststore.path = truststore/de4a-truststore-test-smp-pw-de4a.jks<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
smpclient.truststore.password = de4a<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Spring As4 gateway implementation bean(provided: phase4GatewayClient and domibusGatewayClient).Implements eu.toop.as4.client.As4GatewayInterface'''<span class="Codeinline"></span>
 +
 +
as4.gateway.implementation.bean=phase4GatewayClient<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# External endpoints'''<span class="Codeinline"></span>
 +
 +
'''# SMP endpoint Eg.: <nowiki>https://de4a-smp.egovlab.eu/</nowiki>'''<span class="Codeinline"></span>
 +
 +
smp.endpoint=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
'''# IDK endpoint Eg.: <nowiki>https://de4a-dev-idk.egovlab.eu/</nowiki>'''<span class="Codeinline"></span>
 +
 +
idk.endpoint=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# IM response timeout'''<span class="Codeinline"></span>
 +
 +
as4.timeout.miliseconds=30000<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Properties to create the http client connection through a proxy (optional)'''<span class="Codeinline"></span>
 +
 +
<nowiki>#</nowiki>http.proxy.enabled=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.proxy.address=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.proxy.port=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.proxy.non-proxy=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.proxyUsername=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.proxyPassword=<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
 +
'''# Required renamed proxy configuration for BDXRClient (if is needed, only uncomment)'''<span class="Codeinline"></span>
 +
 +
<nowiki>#</nowiki>http.proxyHost=${http.proxy.address}<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.proxyPort=${http.proxy.port}<span class="Codeinline"><span lang="EN-GB">mvn clean install</span></span>
 +
 +
<nowiki>#</nowiki>http.nonProxyHosts=${http.proxy.non-proxy}
 +
 +
 +
From now on, we will explain the main and most critical configuration.

Revision as of 10:39, 20 October 2021

Introduction

The DE4A Connector is a technical proxy that allows the final participants (DE or DO) to send requests for evidence or responses to other final participants over an eDelivery communication environment. In addition, to handle the message exchange process, the Connector is responsible for obtaining the message routing information, by exchanging information with external components such as the IDK, the SML/DNS or the SMP.

To do so, it provides a common interface to DEs and DOs, making the complexity of the system transparent to the final participants and integration easier.

The Connector component provides the AS4 Gateway functionality, so it can assume both the role of Data Requestor and Data Transferor. This first approach makes the Connector a stand-alone web application that can be deployed on any suitable application server. As an alternative, the Connector can make used of an external AS4 Gateway to provide the message exchange feature, in which case two components should be deployed: the DE4A Connector along with the chosen AS4 Gateway (i.e. Domibus).

The security and integrity of messages, as well as the unique identification of the participants involved, are the cornerstones of the Connector component.

Conceptual schema of the target DE4A system for the first iteration

Functionalities provided

The main purpose of the DE4A Connector is sending and receiving of evidence requests and their responses. The message exchange process is described in the DE4A deliverables D2.4 Project Start Architecture and D5.3 Initial technical design of interfaces.

Routing information lookup

The Connector is responsible for obtaining the Data Provider information from the IDK. It exposes a REST API /lookupRoutingInformation to get information about the Data Owners that provide a specific Canonical Evidence Type and further related information. That information is used to construct a request message to be sent through the Connector. Thus, the Data Evaluator is the only consumer of the mentioned API method.

Dynamic discovery of Services

In order for the Connector to be able to send a message to the corresponding endpoint, the eDelivery dynamic discovery mode of operation is used. This operation mode is based on the use of the SML/DNS and SMP components of the eDelivery infrastructure. The main elements stored in the SML/DNS and SMPs for this purpose are the following:

  • ParticipantIdentifier: The Data Owner/Data Evaluator identifier who is publishing its AS4 communication point (of the Connector linked to it).
  • DocumentTypeIdentifier: Canonical evidence type.
  • ProcessIdentifier: Orchestration type (request/response).
  • AS4 endpoint: AS4 service endpoint URL.
  • Certificate: The X.509 certificate of the AS4 server, used to encrypt the transmitted data for this specific participant.

The information described above is managed by the SML/DNS and SMP components and is used by the Connector when working with the phase4 implementation of AS4. In cases where the Connector runs with external AS4 implementations such as Domibus, the end-to-end AS4 communication will be handled by the configuration of that external platform.

Focusing on the SML/DNS/SMP data retrieval, the process will take place according to the following features:

  • SSL/TLS communication is mandatory.
  • Response signature validation is mandatory.
  • The communication between SMP and SML requires the usage of a client certificate.

The service metadata lookup will be performed as a step prior to the AS4 message exchange. Therefore, the participant IDs and other related information must be known by the Connector in advance.

Supported interaction patterns

Interaction patterns define the flow of data through the Connector and the intercommunication between the different components. Each pattern exchanges certain types of messages, and the incoming/outgoing information will depend on the processes occurring in the external components [3].

The Connector currently supports two interaction patterns:

  • Intermediation (IM) pattern
    • ­Synchronous communication between the Connector and final participant (DE or DO).
    • Data Owner endpoint must be known by the Data Transferor.
    • Since the communication is synchronous, the Data Requestor does not need to know the identifier and endpoint of the Data Evaluator.
  • User supported intermediation (USI) pattern
    • Asynchronous communication between the Connector and final participant (DE or DO).
    • Data Owner endpoint must be known by the Data Transferor.
    • Since the communication is asynchronous, the Data Evaluator endpoint must be known by the Data Requestor. In addition, the Data Evaluator identifier is recovered from the request, since it is not sent in the response from the Data Transferor.

Most of the specific behaviour of each interaction pattern is independent of the Connector itself, as the Connector component is just designed to exchange messages and the main differences between the patterns take place in the external components such as the Data Evaluator and the Data Owner.

Connector roles

A Connector instance can play two different roles:

  • Data Requestor (DR)
  • Data Transferor (DT)

No configuration is needed to differentiate the roles, it only depends on the usage, i.e., the behaviour will be according to the messages sent.

Also, in a functional scenario the SMP data will determine which Connector is playing the DR or DT role.

AS4 implementations

The message exchange is built on the AS4 protocol, which is an open standard for secure, payload-agnostic business-to-business document exchange via web services. Secure document exchange is governed by WS-Security aspects, including XML Encryption and XML Digital Signatures. There are many implementations of AS4, but the Connector currently implements phase4 and Domibus.

Phase4

  • Main features
    • It is a generic AS4 solution.
    • It can be integrated in basically any Servlet-based application server.
    • It can easily be used with Peppol.
    • It can be used with other Dynamic Discovery solutions.
    • It supports a high degree of customization.
    • It is not limited to the CEF/e-SENS profile.
  • Implementation
    • The Connector implements phase4 as a gateway to perform the AS4 message exchange.

All necessary configuration parameters are provided by the properties file of the Connector.

Domibus

  • Main features
    • ­It ensures interoperable, secure and reliable data exchange.
    • It is maintained by the European Commission.
    • It manages the participants’ information and the end-to-end communication parameters.
    • It is conceived as an eDelivery Access Point (external platform).
  • Implementation
    • The Connector implements Domibus as a gateway to send and receive messages to and from the Domibus access point.

Most of the configuration needed is on the Domibus service side.

Error handling

Since the Connector performs multiple communications between different external components and some data and structure validations are performed, the Connector needs to monitor all failure points and be able to identify them in order to build the corresponding messages and warnings to inform each external component. When an error happens, the corresponding component creates an error message with the information about the error to be sent back to the entity that sent the failed message.

Kafka messages

Within the data flow and message exchange, there are many key points where it is important to know how the data is being managed, as well as identifying intermediate errors and unhandled system states. In this respect, the Connector can send messages to a Kafka server to track the data flow and trace the state of the system at certain points.

This feature is an advantage from a technical and business point of view, as the Connector performs the message exchange transparently to the other components.

It should be noted that the messages sent to the Kafka server are hardcoded, it is not a parameterizable feature, so any enhancements must be hardcoded again and deployed. It has been developed in such a way because the necessity of a Kafka server is not expected outside the DE4A project. In a real scenario, an alternative way of collecting logs should be implemented.

Message types

The Connector implements a Kafka message producer through the de4a-kafka-client library of the de4a-commons package. This producer provides several types of messages or severity levels:

  • Success
  • Info
  • Warn
  • Error
  • Fatal error

Those message categories can be easily used to specify the severity level of the message sent to the Kafka server to track and identify them.

List of messages

The messages currently sent from the Connector to the Kafka server are as follows:

Services(Info level)

  • RequestTransferEvidenceIM message received - RequestId: {0}, CanonicalEvidenceType: {1}, DataEvaluator: {2}, DataOwner: {3}
  • RequestTransferEvidenceUSI message received - RequestId: {0}, CanonicalEvidenceType: {1}, DataEvaluator: {2}, DataOwner: {3}
  • RequestTransferEvidenceUSIDT message received - RequestId: {0}
  • RequestLookupRoutingInformation message received - CanonicalEvidenceType: {0}, CountryCode: {1}, DataOwnerId: {2}
  • Sending request to IDK - URL: {0}
  • ­Looking for Data Owner address - DataOwnerId: {0}

Client(Info level)

  • Requesting to SMP - ParticipantId: {0}, DocumentTypeId: {1}, MessageType: {2}
  • Sending RequestForwardEvidence to the Data Evaluator - RequestId: {0}, DataEvaluatorId: {1}, DataOwnerId: {2}, Endpoint: {3}
  • Sending RequestExtractEvidence IM to the Data Owner - RequestId: {0}, CanonicalEvidenceType: {1}, DataEvaluatorId: {2}, DataOwnerId: {3}, Endpoint: {4}
  • ­Sending RequestExtractEvidence USI to the Data Owner - RequestId: {0}, CanonicalEvidenceType: {1}, DataEvaluatorId: {2}, DataOwnerId: {3}, Endpoint: {4}

AS4(Info level)

  • Sending request message via AS4 gateway - DataEvaluatorId: {0}, DataOwnerId: {1}, CanonicalEvidenceType: {2}
  • Sending response message via AS4 gateway - DataEvaluatorId: {0}, Message tag: {1}, CanonicalEvidenceType: {2}
  • Processing the request received via AS4 gateway - RequestId: {0}
  • ­Processing the response received via AS4 gateway - RequestId: {0}

Errors(Error level)

  • The corresponding request to the received response is not found on database - RequestId: {0}
  • RequestForwardEvidence has not been sent, unknown Data Evaluator endpoint - RequestId: {0}, DataEvaluatorId: {1}
  • RequestTransferEvidence not found on AS4 incoming message
  • Error processing incoming message from AS4 gateway
  • Error building URI from Data Evaluator endpoint: {0}
  • ­Error sending message to Data Requestor via AS4 gateway - RequestId: {0}
  • Data Owner address not found - DataOwnerId: {0}

[1] The {x} symbols are placeholders for dynamic text to be logged.

Data management

The Connector stores and manages certain information such as DE endpoints (not to be confused with SMP endpoints), DO endpoints, certain request records for asynchronous response matching, etc. All this data and where to find it is described in the following subsections.

Data Owner addresses

Once each Data Owner is publishing his Connector service information on the SMP, the request will arrive to that Connector service configured on the SMP (via the AS4 Gateway), and considering that one Connector could be serving to multiples DOs, this Connector has to know the addressing (base endpoint, without path name) information related to a specific participant identifier (e.g. iso6523-actorid-upis::9999:egov) to send forward the request to the corresponding Data Owner, so due to that, the Connector maintains a table, named  owner_addresses, with two columns:

  • AgentUrn: participant identifier in the DE4A format, e.g., iso6523-actorid-upis::9999:ess2833002e – see the “DE4A Policy for use of identifiers” for further information about the participant identifiers policy.
  • Endpoint: base endpoint URL of the Data Owner who is exposing the service /requestExtractEvidence

The information above will be used by a Connector playing the Transferor role when the RequestExtractEvidence message is being sent.

Security

The message exchange performed by the Connector has been conceived to ensure different security aspects as:

  • Authenticity: ensures the identity of the participant entities and any common component involved in the message exchange. It is achieved through the participant identifiers definition [9], eDelivery specification and AS4 implementations.
  • Integrity: refers to the accuracy and completeness of data. Security controls focused on integrity are used to prevent data from being modified or misused by an unauthorized party, provided by the WS-security and XML message signature.
  • Confidentiality: data confidentiality at message level could be achieved by taking advantage of WS-Security encryption feature in User messages. This message encryption is performed via asymmetric keys: the sender of the message encrypts with the public key of the recipient, so the message can only be decrypted by the recipient, who owns the private key. Those keys should be configured either in the Connector in case of phase4 or in any external AS4 gateway.

Communications

The Connector creates a secure context to establish in/outgoing connections with external components.

The main elements for such communication securitisations are:

  • Private key: private part of private-public key pair used in the TLS handshake between your server and the connecting clients. This private key must be configured in the Connector properties in order to create the secure context as well in the web server, in the case of reverse proxy or any similar structure. The keys configured on each component are generated under the DE4A management.
  • Truststore: used for the storage of certificates from the trusted Certificate Authority (CA), which is used in the verification of the certificate provided by the server in an SSL connection. The Connector provides a default truststore which allows to trust on certificates generated under the main DE4A CA.

HTTP Proxy mode

Sometimes, the environments have certain communication structure where the outgoing connections must be performed through an HTTP proxy server. The Connector provides de functionality and proper configuration to perform the communications via an HTTP proxy server.

Message cryptographic protection

The Connector messages exchange can be separated into:

REST APIs messages

Once the SSL connection is established, all the data exchanged through it, will be encrypted on transport level based on the SSL context configuration settled, either managed by a reverse proxy on the server environment or configuring the proper application properties.

AS4 messages

  • Phase4: internally the message is encrypted using a specific keystore configuration only used for this purpose; also the cross-gateways communications are additionally encrypted over the HTTPS secure protocol.
  • Domibus: the bridge between the Connector and Domibus service is securitized by encrypting the messages content as well as signing the message, in accordance with the AS4 policies and the transport protocol used. It implements a Spring web service gateway using WS-security at SOAP message exchange level. About the message exchange between Domibus instances, it is handled internally by the platform.

Message validation

Message validation is performed at different stages of the Connector data flow, from message structure compliance to content integrity.

Schema validation

All the messages produced and consumed by the Connector are performing an XML Schema validation once it is received or sent out. This validation is done by the object conversion library that keeps the schema model including all the structure and content constraints.

Signature validation

As well as the XML Schema validation, the Connector performs validations to ensure the content and reliability on certain phases of the message exchange process:

  • Services metadata querying
  • In the SMP data exchange a message signature validation is being performed to maintain the content reliability. This validation consists of verifying the embedded signature on the message against the trust certificate configured in the Connector for that purpose.

The signature of incoming AS4 messages is verified against the central AS4 Gateway CA globally used in DE4A project, internally validated by the implementation libraries that handle the reception and delivery.

Technology used

System core architecture

The Connector works as standalone application that runs different web services according to the RESTful API architecture principles. The application is built with the following tools:

  • Spring Framework version 5.x.
  • Java 11
  • Apache HTTP Client 4.x

In addition to the core architecture, the XML Schemas defined to model the exchanged information, data constraints, interfaces, etc. are also important. All this is part of the Connector core through the de4a-commons library, which contains the above-mentioned model as well as utilities and conversion tools.

Third party libraries

As part of the bunch of libraries used by the Connector there are some of the related with the core features and which represent a starting point for the functionalities provided by the Connector.

TOOP Connector

The TOOP Connector is a set of shared utility functions used in the Connector to perform common tasks that are required for a safe and interoperable data exchange. In the initial iteration the latest version of the TOOP Connector technical components were reused mainly for the usage of the built-in phase4 AS4 Gateway. Other elements of the TOOP Connector are currently ignored.

ph-oton libraries

Set of Java libraries to build Java web applications.

Peppol commons libraries

They include the SMP client library used by the Access Points to retrieve service metadata. This library supports the Peppol SMP specification, the OASIS BDXR SMP v1 and OASIS BDXR SMP v2 specification. This project uses Apache HTTP client to perform the REST lookups on foreign SMPs.

Data management

To manage the model and the data stored by the Connector the following technologies are used:

  • JPA: The Java Persistence API is a specification of Java. It is used to persist data between Java object and relational database. JPA acts as a bridge between object-oriented domain models and relational database systems. As JPA is just a specification, it does not perform any operation by itself.
  • Hibernate: An object–relational mapping tool for the Java programming language. It provides a framework for mapping an object-oriented domain model to a relational database. Hibernate handles object–relational impedance mismatch problems by replacing direct, persistent database accesses with high-level object handling functions.

Utilities libraries

The project uses several libraries and utilities to process and transform the data. They can be divided according to their nature:

  • Commercial libraries

To perform common and non-business operations on web and data exchange projects, the Connector uses different commercial solutions, also all the libraries embedded in the Java development kit.

  • In-house solutions

The Connector project includes some utilities that allow the data processing and internal tools to perform all the Connector tasks. Those utilities are within the Connector project as a module called de4a-commons.

Installation and configuration

Installation

As a prerequisite to build the Connector is to have at least Java 11 and Apache Maven 3.6 or later installed.

You should be able to compile entire packages from the parent POM file:

mvn clean install

It is also possible to compile each package separately by browsing to the folder and running the command above.

Package

The compilation process will be packaging the project into a .war file located on /target/ path, which should be deployable on any applications server. If you compile the parent pom, the IDK and Connector target paths will be created with their corresponding war files.

  • de4a-commons

de4a-commons project is now on maven central OSS Sonatype repository

  • Toop version v2.1.2-SNAPSHOT

Due to the lastest changes on de4a-commons Toop-connector-ng version should be 2.1.2-SNAPSHOT, so you may need to add following repo server on your maven settings

https://oss.sonatype.org/content/repositories/snapshots/

Connector configuration guide

For a correct configuration of the Connector, three main property files must be considered:

  • application.properties: main system configuration
  • phase4.properties: AS4 gateway configurations
  • log4j2.xml: logging configuration

Bellow, a working example of the application.properties file:

# Database properties

database.datasourceConf.url=jdbc:h2:mem:testdbmvn clean install

database.datasourceConf.driverClassName=org.h2.Drivermvn clean install

database.datasourceConf.username=samvn clean install

database.datasourceConf.password=passwordmvn clean install

database.datasourceConf.initializationMode=alwaysmvn clean install

database.datasourceConf.jpaHibernate.dialectPlatform=org.hibernate.dialect.H2Dialectmvn clean install

database.datasourceConf.jpaHibernate.ddlauto=create-dropmvn clean install

database.datasourceConf.jpaHibernate.generateddl=truemvn clean install

database.datasourceConf.jpaHibernate.namingStrategy=org.hibernate.cfg.ImprovedNamingStrategymvn clean install

database.datasourceConf.jpaHibernate.showSql=truemvn clean install

database.datasourceConf.jpaHibernate.formatSql=truemvn clean install


# H2 in-memory database console port (default 21080)

h2.console.port=21080mvn clean install


# i18n properties

spring.messages.basename=messages/messagesmvn clean install

spring.messages.default_locale=enmvn clean install


# Spring allowing override beans

spring.main.allow-bean-definition-overriding=truemvn clean install


# Charset encoding

server.servlet.encoding.charset=UTF-8mvn clean install

server.servlet.encoding.enabled=truemvn clean install

server.servlet.encoding.force=truemvn clean install


# SSL context enabled (true|false)

ssl.context.enabled=falsemvn clean install


# SSL configuration (optional when ssl.context.enabled is false, otherwise, it must be configured)

#ssl.keystore.type=mvn clean install

#ssl.keystore.path=mvn clean install

#ssl.keystore.password=mvn clean install

#ssl.truststore.path=mvn clean install

#ssl.truststore.password=mvn clean install


# Global flags for initializer

global.debug = truemvn clean install

global.production = falsemvn clean install


# Instance name for logging

global.instancename = dev-from-idemvn clean install


# DE4A Kafka settings

de4a.kafka.enabled=truemvn clean install

# Enables the standard logging separately of the Kafka messages. It is necessary for print metrics messages - (default: true)

de4a.kafka.logging.enabled=truemvn clean install

# Enables Kafka connection via HTTP (Only enable HTTP mode if outbound TCP connections are blocked from your internal network)

de4a.kafka.http.enabled=falsemvn clean install


# Kafka server address (Eg.: de4a-dev-kafka.egovlab.eu:9092)

de4a.kafka.url=de4a-dev-kafka.egovlab.eu:9092

# Uncomment the following property and remove the above one if HTTP mode is enabled

# de4a.kafka.url=https://de4a-dev-kafka.egovlab.eumvn clean install


# Establish a topic on kafka tracker - Pattern: de4a-<country-code>-<partner-name> - Eg.: de4a-se-egovlab - (default: de4a-connector)

de4a.kafka.topic=de4a-connectormvn clean install


# Logging metrics messages prefix - Default: DE4A METRICS

log.metrics.prefix=DE4A METRICSmvn clean install


# toop legacy kafka properties (Do not touch)

toop.tracker.enabled = falsemvn clean install


# DSD base URL (Do not modify)

toop.dsd.service.baseurl = http://dsd.dev.exchange.toop.eumvn clean install


# What AS4 implementation to use?

toop.mem.implementation = phase4mvn clean install


# Our AS4 sending AP endpoint (holodeck)

#toop.mem.as4.endpoint = http://localhost:8083/tc-webapp/as4mvn clean install


# Domibus server endpoint

# domibus.endpoint=mvn clean install


# SMP Client configuration stuff - Do not modify (default values)

smpclient.truststore.type = JKSmvn clean install

smpclient.truststore.path = truststore/de4a-truststore-test-smp-pw-de4a.jksmvn clean install

smpclient.truststore.password = de4amvn clean install


# Spring As4 gateway implementation bean(provided: phase4GatewayClient and domibusGatewayClient).Implements eu.toop.as4.client.As4GatewayInterface

as4.gateway.implementation.bean=phase4GatewayClientmvn clean install


# External endpoints

# SMP endpoint Eg.: https://de4a-smp.egovlab.eu/

smp.endpoint=mvn clean install

# IDK endpoint Eg.: https://de4a-dev-idk.egovlab.eu/

idk.endpoint=mvn clean install


# IM response timeout

as4.timeout.miliseconds=30000mvn clean install


# Properties to create the http client connection through a proxy (optional)

#http.proxy.enabled=mvn clean install

#http.proxy.address=mvn clean install

#http.proxy.port=mvn clean install

#http.proxy.non-proxy=mvn clean install

#http.proxyUsername=mvn clean install

#http.proxyPassword=mvn clean install


# Required renamed proxy configuration for BDXRClient (if is needed, only uncomment)

#http.proxyHost=${http.proxy.address}mvn clean install

#http.proxyPort=${http.proxy.port}mvn clean install

#http.nonProxyHosts=${http.proxy.non-proxy}


From now on, we will explain the main and most critical configuration.