use of network.oxalis.outbound.transmission.MessagingProviderFacade in project Oxalis-AS4 by OxalisCommunity.
the class AbstractMessagingProviderTest method beforeClass.
@BeforeClass
public void beforeClass() throws Exception {
senderCert = generateSelfSignedCertificate("CN=" + SENDER + ",O=Difi,L=Oslo,C=NO");
receiverCert = generateSelfSignedCertificate("CN=" + RECEIVER + ",O=Difi,L=Oslo,C=NO");
messagingProvider = new MessagingProviderFacade(senderCert, new DefaultMessageIdGenerator("test"), getPEPPOLOutboundConfiguration());
}
Aggregations