The OpenAS2 application enables you to transmit and receive AS2 messages with EDI-X12, EDIFACT, XML, or binary payloads between trading partners.
There is a pom.xml in the Server folder to compile and create the jar and build the distribution package using Maven. The current version of the application is extracted from the POM and inserted into the MANIFEST.MF at build time. More detailed information is available in the DeveloperGuide.odt in the docs folder in Github.
The following commands can be used in the build process.
Checking dependency tree:
./mvnw dependency:tree
Checking dependencies against latest:
./mvnw versions:display-dependency-updates
Updating dependencies to latest:
./mvnw versions:use-latest-releases
Build a snapshot the following command should be used:
./mvnw versions:set -DnewVersion=2.12.0-SNAPSHOT
Run unit tests:
./mvnw test
Build a package
./mvnw clean package
To deploy the released artifacts requires user ID and password for Sonatype. See developer guide for details:
./mvnw clean deploy -P release
- will require manual closing and release in Sonatype
./mvnw release:perform
./mvnw nexus-staging:release -Ddescription="Some release comment here"
To create docker image ,use the Dockerfile in the project. In terminal, open the folder where Dockerfile is located. Use below command to login to your dockerhub account through terminal.
$ docker login
Run below command to create image with name and tag.
$ docker build -t openas2:latest .
Run the default OpenAS2 server:
$ docker run -it --rm openas2:latest
You can test it by visiting http://container-ip:10080
in a browser or, if you need access outside the host, on port 4080:
$ docker run -it --rm -p 10080:4080 -p 10081:4081 openas2:latest
You can then go to http://localhost:4080
or http://host-ip:4080
in a browser (noting that it will return a 401 since there are no proper AS2 headers sent by the browser by default).
The default OpenAS2 environment in the image is:
OPENAS2_BASE: /usr/local/tomcat
OPENAS2_HOME: /usr/local/tomcat
OPENAS2_TMPDIR: /usr/local/tomcat/temp
JAVA_HOME: /usr/local/openjdk-11
The configuration files are available in /opt/openas2/config/
.