Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Example Tomcat web project that uses the Open Source ebMS Adapter.

License

Notifications You must be signed in to change notification settings

java-ebms-adapter/ebms-adapter-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EbMS Service URL: http://localhost:8080/ebms-adapter-web/service
EbMS URL: https://localhost:8443/ebms-adapter-web/ebms

Tomcat SSL Connector Configuration:

set CATALINA_OPTS=-Dhttps.protocols=TLSv1.2 \
  -Dhttps.cipherSuites=TLS_RSA_WITH_AES_256_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA \
  -Djavax.net.ssl.trustStore=
  
    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               keystoreFile="conf/keystore.jks" keystorePass="password"
               truststoreFile="conf/keystore.jks" truststorePass="password"
               clientAuth="true" sslProtocol="TLSv1.2" 
               ciphers="TLS_RSA_WITH_AES_256_CBC_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA"/>