The purpose of this document is to document how to install Oxalis as simple as possible.
- Java JDK 11 (newer versions should also work, Java 17 issue due to Peppol specification)
- Maven 3+ (if you plan to build Oxalis yourself)
- Tomcat 9+ (if you have a different JEE container, you need to figure out the differences on your own, sorry :-)
- Create
OXALIS_HOME
directory to hold configuration files, certificates etc - Add
OXALIS_HOME
environment variable to reference that directory
All of these must be installed properly, i.e. make sure the binaries are available from your command line.
When running the following commands you should expect output similar to the one shown
Verify | Command | Expected example output |
---|---|---|
JDK 11 | javac -version |
javac 11.0.16.1 |
Maven 3 | mvn -version |
Apache Maven 3.8.6 |
OXALIS_HOME | echo $OXALIS_HOME |
/Users/arunkum/.oxalis |
-
Install Tomcat and configure it for SSL on port 443 or make sure you terminate SSL in front of Tomcat on port 443 (using nginx or similar). Please, do not change this port. Most other access points need to communicate with you and their operations department usually don't like opening non-standard ports. Do not use your PEPPOL certificate as an SSL certificate!. You can refer additional documentation "Default trusted root certificates and the Peppol policy for Transport Security" - Disclaimer: this external documentation not cross-verified, so please take your own wise decision
-
Obtain the binary artifacts for Oxalis by either:
- Downloading the binary artifacts from Maven Central and unpack the distribution.
- Building yourself from the source at GitHub
-
Create an Oxalis home directory in which you place files that do not change between new releases of Oxalis. We recommend that you name the Oxalis home directory
.oxalis
in what is considered the home directory of the user running Oxalis. If you are using Tomcat, it should be the home directory of the tomcat user. Remember to set the$OXALIS_HOME
environment variable referencing your Oxalis home directory in your shell startup script.Example:
export OXALIS_HOME=~/.oxalis
-
See the Oxalis keystore guide for details on how to create your keystore. During the startup, your certificate validated towards the proper certificate chain. Please note that Oxalis will not work non-PEPPOL or expired certificates.
-
Create the file
oxalis.conf
. Here is an example of how it might look:oxalis.keystore { # Relative to OXALIS_HOME path=peppol-keystore.jks password = peppol key.alias = ap key.password = peppol } # The relative name of the directory holding plugin oxalis.path.plugin = oxalis-plugin # Signals to Oxalis that we should look for plugin oxalis.persister.receipt = plugin # Where to store inbound files oxalis.path.inbound = /var/peppol/IN
More information may be find in the configuration document.
-
Copy the file
oxalis.war
into your Tomcat deployment directory, example :cp oxalis-dist/oxalis-distribution/target/oxalis-distribution-x.y.z/jee/oxalis.war /users/oxalis/apache-tomcat-7.0.56/webapps
-
Start Tomcat, check the logs for any errors and make sure the oxalis status page seems right (the URL could be different for your setup). Note! If you intend to terminate TLS in your Tomcat instance, the status pages resides at
https://localhost:443/oxalis/status
-
Attempt to send a sample invoice using the file
example.sh
file located inoxalis-dist/oxalis-standalone
. Do not forget to review the script first!
Testing and verification of your installation assume that you have performed above listed actions.
- You have obtained a PEPPOL test certificate.
(The running mode will be detected by Oxalis by validating your certificate - no need to maintain that setting anymore.)
This is how you send a sample invoice to remote test access point using the test SML (SMK):
java -jar target/oxalis-standalone.jar \
-f src/test/resources/BII04_T10_PEPPOL-v2.0_invoice.xml \
-r 9908:810418052 \
-s 9909:810418052
Make sure endpoint exists and support respective profile.
Verify that your sample invoice received at remote destination access point
You need to override the use of the SML/SMP in order to send directly to your own access point. This is done by specifying a) the URL, b) the protocol and the c) AS2 system identifier.
Here is how to send a sample invoice in PEPPOOL Bis 4A profile to your own local access point:
java -jar target/oxalis-standalone.jar \
-f src/test/resources/BII04_T10_PEPPOL-v2.0_invoice.xml \
-u http://localhost:8080/oxalis/as2 \
-cert /path/to/your/certificate.cer
Good luck!!!