This an example standalone implementation of phase4 for the Peppol Network.
This is a demo application and NOT ready for production use. Use it as a template to add your own code.
Note: because it is demo code, no releases are created - you have to modify it anyway.
This project is part of my Peppol solution stack. See https://github.com/phax/peppol for other components and libraries in that area.
Based on the Servlet technology, the application takes AS4 messages via HTTP POST to /as4
.
By default, all valid incoming messages are handled by class CustomPeppolIncomingSBDHandlerSPI
.
This class contains a TODO
where you need to implement the stuff you want to do with incoming messages.
Sending is triggered via an HTTP POST request.
Since 2025-01-31 all the sending APIs mentioned below also require the HTTP Header X-Token
to be present and have a specific value.
What value that is, depends on the configuration property phase4.api.requiredtoken
.
The pre-configured value is NjIh9tIx3Rgzme19mGIy
and should be changed in your own setup.
Since 2025-03-04 instead of providing two different APIs (/sendtest
and /sendprod
) only one URL (/sendas4
)
is provided, and the actual Peppol Network choice is done based on the peppol.stage
configuration parameter.
The same applies to sending the prebuild SBDH - the API changed from /sendsbdhtest
to /sendsbdh
.
To send to an AS4 endpoint use this URL (the SBDH is built inside):
/sendas4/{senderId}/{receiverId}/{docTypeId}/{processId}/{countryC1}
To send to an AS4 endpoint use this URL when the SBDH is already available (especially for Peppol Testbed):
/sendsbdh
In both cases, the payload to send must be the XML business document (like the UBL Invoice). The outcome is a simple JSON document that contains most of the relevant details on sending.
Test call using the file src\test\resources\external\example-invoice.xml
as the request body (note the URL escaping of special chars via the %
sign):
http://localhost:8080/sendtest/9915:phase4-test-sender/9915:helger/urn:oasis:names:specification:ubl:schema:xsd:Invoice-2::Invoice%23%23urn:cen.eu:en16931:2017%23compliant%23urn:fdc:peppol.eu:2017:poacc:billing:3.0::2.1/urn:fdc:peppol.eu:2017:poacc:billing:01:1.0/GB
Note: Documents are NOT validated internally. They need to be validated externally. See https://github.com/phax/phive and https://github.com/phax/phive-rules for this.
The following list contains the elements not considered for this demo application:
- You need your own Peppol certificate to make it work - the contained keystore is a dummy one only
- Document validation is not included
- Peppol Reporting is not included, as no backend connection is available
- Prepare your Peppol Access Point Key Store according to the rules described at https://github.com/phax/phoss-smp/wiki/Certificate-setup
- Configure your Key Store in the
application.properties
file - don't touch the Trust Store - it is part of the deployment. - Set the correct value of
peppol.seatid
in theapplication.properties
file - Once the Peppol Certificate is configured, change the code snippet with
TODO
in fileServletConfig
according to the comment (approx. line 192) - Note that incoming Peppol messages are only logged and discarded. Edit the code in class
CustomPeppolIncomingSBDHandlerSPI
to fix it. - Build and start the application (see below)
This application is based on Spring Boot 3.x and uses Apache 3.x and Java 17 to build.
mvn clean install
The resulting Spring Boot application is afterwards available as target/phase4-peppol-standalone-x.y.z.jar
(x.y.z
is the version number).
An example Docker file is also present - see docker-build.cmd
and docker-run.cmd
for details.
The main configuration is done via the file src/main/resources/application.properties
.
You may need to rebuild the application to have an effect.
The following configuration properties are contained by default:
peppol.stage
- defines the stage of the Peppol Network that should be used. Allowed values aretest
(for the test/pilot Peppol Network) andprod
(for the production Peppol Network). It defines e.g. the SML to be used and the CAs against which checks are performedpeppol.seatid
- defines your Peppol Seat ID. It could be taken from your AP certificate as well, but this way it is a bit easier.
If you run it with java -jar target/phase4-peppol-standalone-x.y.z.jar
it will spawn a local Tomcat at port 8080
and you can access it via http://localhost:8080
.
It should show a small introduction page. The /as4
servlet itself has no user interface.
In case you run the application behind an HTTP proxy, modify the settings in the configuration file (http.proxy.*
).
In case you don't like port 8080, also check the configuration file.
My personal Coding Styleguide | It is appreciated if you star the GitHub project if you like it.