Search in sources :

Example 21 with ESimpleUserMessageSendResult

use of com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult in project phase4 by phax.

the class MainPhase4PeppolSenderMinimumPersistent method main.

public static void main(final String[] args) {
    // Enable persistent managers
    SystemProperties.setPropertyValue(AS4Configuration.PROPERTY_PHASE4_MANAGER_INMEMORY, false);
    WebScopeManager.onGlobalBegin(MockServletContext.create());
    // Set data IO base directory
    final File aSCPath = new File(AS4Configuration.getDataPath()).getAbsoluteFile();
    WebFileIO.initPaths(aSCPath, aSCPath.getAbsolutePath(), false);
    try {
        final Element aPayloadElement = DOMReader.readXMLDOM(new File("src/test/resources/examples/base-example.xml")).getDocumentElement();
        if (aPayloadElement == null)
            throw new IllegalStateException("Failed to read XML file to be send");
        // Start configuring here
        final IParticipantIdentifier aReceiverID = Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9915:test");
        final ESimpleUserMessageSendResult eResult;
        eResult = Phase4PeppolSender.builder().documentTypeID(Phase4PeppolSender.IF.createDocumentTypeIdentifierWithDefaultScheme("urn:oasis:names:specification:ubl:schema:xsd:Invoice-2::Invoice##urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0::2.1")).processID(Phase4PeppolSender.IF.createProcessIdentifierWithDefaultScheme("urn:fdc:peppol.eu:2017:poacc:billing:01:1.0")).senderParticipantID(Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9915:phase4-test-sender")).receiverParticipantID(aReceiverID).senderPartyID("POP000306").payload(aPayloadElement).smpClient(new SMPClientReadOnly(Phase4PeppolSender.URL_PROVIDER, aReceiverID, ESML.DIGIT_TEST)).sendMessageAndCheckForReceipt();
        LOGGER.info("Peppol send result: " + eResult);
    } catch (final Exception ex) {
        LOGGER.error("Error sending Peppol message via AS4", ex);
    } finally {
        WebScopeManager.onGlobalEnd();
    }
}
Also used : SMPClientReadOnly(com.helger.smpclient.peppol.SMPClientReadOnly) ESimpleUserMessageSendResult(com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult) Element(org.w3c.dom.Element) File(java.io.File) IParticipantIdentifier(com.helger.peppolid.IParticipantIdentifier)

Example 22 with ESimpleUserMessageSendResult

use of com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult in project phase4 by phax.

the class AbstractAS4UserMessageBuilder method sendMessageAndCheckForReceipt.

/**
 * This is a sanity method that encapsulates all the sending checks that are
 * necessary to determine overall sending success or error.<br>
 * Note: this method is not thread-safe, because it changes the signal message
 * consumer internally.
 *
 * @param aExceptionConsumer
 *        An optional Consumer that takes an eventually thrown
 *        {@link Phase4Exception}. May be <code>null</code>.
 * @return {@link ESimpleUserMessageSendResult#SUCCESS} only if all parameters
 *         are correct, HTTP transmission was successful and if a positive AS4
 *         Receipt was returned. Never <code>null</code>.
 * @since 1.0.0-rc1
 */
@Nonnull
public final ESimpleUserMessageSendResult sendMessageAndCheckForReceipt(@Nullable final Consumer<? super Phase4Exception> aExceptionConsumer) {
    final IAS4SignalMessageConsumer aOld = m_aSignalMsgConsumer;
    try {
        // Store the received signal message
        final Wrapper<Ebms3SignalMessage> aSignalMsgKeeper = new Wrapper<>();
        m_aSignalMsgConsumer = aOld == null ? aSignalMsgKeeper::set : x -> {
            aSignalMsgKeeper.set(x);
            aOld.handleSignalMessage(x);
        };
        // Main sending
        if (sendMessage().isFailure()) {
            // Parameters are missing/incorrect
            return ESimpleUserMessageSendResult.INVALID_PARAMETERS;
        }
        final Ebms3SignalMessage aSignalMsg = aSignalMsgKeeper.get();
        if (aSignalMsg == null) {
            if (LOGGER.isDebugEnabled())
                LOGGER.debug("Failed to get a SignalMessage as the response");
            // Unexpected response - invalid XML or at least no Ebms3 signal message
            return ESimpleUserMessageSendResult.NO_SIGNAL_MESSAGE_RECEIVED;
        }
        if (aSignalMsg.hasErrorEntries()) {
            if (LOGGER.isDebugEnabled())
                LOGGER.debug("The received SignalMessage contains at lease one error");
            // Errors have precedence over receipts
            return ESimpleUserMessageSendResult.AS4_ERROR_MESSAGE_RECEIVED;
        }
        if (aSignalMsg.getReceipt() != null) {
            // A receipt was returned - this is deemed success
            return ESimpleUserMessageSendResult.SUCCESS;
        }
        if (LOGGER.isDebugEnabled())
            LOGGER.debug("The SignalMessage contains neither Errors nor a Receipt - unexpected SignalMessage layout.");
        // Neither an error nor a receipt was returned - this is weird
        return ESimpleUserMessageSendResult.INVALID_SIGNAL_MESSAGE_RECEIVED;
    } catch (final Phase4Exception ex) {
        if (LOGGER.isDebugEnabled())
            LOGGER.debug("An exception occurred sending out the AS4 message", ex);
        if (aExceptionConsumer != null)
            aExceptionConsumer.accept(ex);
        // Something went wrong - see the logs
        return ESimpleUserMessageSendResult.TRANSPORT_ERROR;
    } finally {
        // Restore the original value
        m_aSignalMsgConsumer = aOld;
    }
}
Also used : Ebms3SignalMessage(com.helger.phase4.ebms3header.Ebms3SignalMessage) X509Certificate(java.security.cert.X509Certificate) Ebms3SignalMessage(com.helger.phase4.ebms3header.Ebms3SignalMessage) MessageHelperMethods(com.helger.phase4.messaging.domain.MessageHelperMethods) IAS4SignalMessageConsumer(com.helger.phase4.client.IAS4SignalMessageConsumer) LoggerFactory(org.slf4j.LoggerFactory) Nonempty(com.helger.commons.annotation.Nonempty) IHasID(com.helger.commons.id.IHasID) EnumHelper(com.helger.commons.lang.EnumHelper) Nonnull(javax.annotation.Nonnull) Phase4Exception(com.helger.phase4.util.Phase4Exception) Nullable(javax.annotation.Nullable) Ebms3Property(com.helger.phase4.ebms3header.Ebms3Property) OverridingMethodsMustInvokeSuper(javax.annotation.OverridingMethodsMustInvokeSuper) Logger(org.slf4j.Logger) CommonsArrayList(com.helger.commons.collection.impl.CommonsArrayList) IPMode(com.helger.phase4.model.pmode.IPMode) StringHelper(com.helger.commons.string.StringHelper) ISuccessIndicator(com.helger.commons.state.ISuccessIndicator) Consumer(java.util.function.Consumer) MessageProperty(com.helger.phase4.model.MessageProperty) ICommonsList(com.helger.commons.collection.impl.ICommonsList) Wrapper(com.helger.commons.wrapper.Wrapper) Phase4OutgoingAttachment(com.helger.phase4.attachment.Phase4OutgoingAttachment) AS4ClientUserMessage(com.helger.phase4.client.AS4ClientUserMessage) NotThreadSafe(javax.annotation.concurrent.NotThreadSafe) Wrapper(com.helger.commons.wrapper.Wrapper) Phase4Exception(com.helger.phase4.util.Phase4Exception) IAS4SignalMessageConsumer(com.helger.phase4.client.IAS4SignalMessageConsumer) Nonnull(javax.annotation.Nonnull)

Example 23 with ESimpleUserMessageSendResult

use of com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult in project phase4 by phax.

the class MainPhase4PeppolSenderInMemoryKeyStore method main.

public static void main(final String[] args) {
    WebScopeManager.onGlobalBegin(MockServletContext.create());
    try {
        final Element aPayloadElement = DOMReader.readXMLDOM(new File("src/test/resources/examples/base-example.xml")).getDocumentElement();
        if (aPayloadElement == null)
            throw new IllegalStateException("Failed to read XML file to be send");
        // Start configuring here
        final IParticipantIdentifier aReceiverID = Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9914:atu68241501");
        final KeyStore aKS = KeyStoreHelper.loadKeyStoreDirect(EKeyStoreType.PKCS12, "test-ap.p12", "peppol");
        if (aKS == null)
            throw new IllegalStateException();
        final KeyStore aTS = KeyStoreHelper.loadKeyStoreDirect(EKeyStoreType.JKS, "complete-truststore.jks", "peppol");
        if (aTS == null)
            throw new IllegalStateException();
        final IAS4CryptoFactory aInMemoryCryptoFactory = new AS4CryptoFactoryInMemoryKeyStore(aKS, "openpeppol aisbl id von pop000306", "peppol", aTS);
        final ESimpleUserMessageSendResult eResult;
        eResult = Phase4PeppolSender.builder().documentTypeID(Phase4PeppolSender.IF.createDocumentTypeIdentifierWithDefaultScheme("urn:oasis:names:specification:ubl:schema:xsd:Invoice-2::Invoice##urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0::2.1")).processID(Phase4PeppolSender.IF.createProcessIdentifierWithDefaultScheme("urn:fdc:peppol.eu:2017:poacc:billing:01:1.0")).senderParticipantID(Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9915:phase4-test-sender")).receiverParticipantID(aReceiverID).senderPartyID("POP000306").payload(aPayloadElement).smpClient(new SMPClientReadOnly(Phase4PeppolSender.URL_PROVIDER, aReceiverID, ESML.DIGIT_TEST)).rawResponseConsumer(new AS4RawResponseConsumerWriteToFile()).validationConfiguration(PeppolValidation3_13_0.VID_OPENPEPPOL_INVOICE_V3, new Phase4PeppolValidatonResultHandler()).cryptoFactory(aInMemoryCryptoFactory).sendMessageAndCheckForReceipt();
        LOGGER.info("Peppol send result: " + eResult);
    } catch (final Exception ex) {
        LOGGER.error("Error sending Peppol message via AS4", ex);
    } finally {
        WebScopeManager.onGlobalEnd();
    }
}
Also used : IAS4CryptoFactory(com.helger.phase4.crypto.IAS4CryptoFactory) SMPClientReadOnly(com.helger.smpclient.peppol.SMPClientReadOnly) ESimpleUserMessageSendResult(com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult) Element(org.w3c.dom.Element) AS4CryptoFactoryInMemoryKeyStore(com.helger.phase4.crypto.AS4CryptoFactoryInMemoryKeyStore) AS4RawResponseConsumerWriteToFile(com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile) AS4RawResponseConsumerWriteToFile(com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile) File(java.io.File) KeyStore(java.security.KeyStore) AS4CryptoFactoryInMemoryKeyStore(com.helger.phase4.crypto.AS4CryptoFactoryInMemoryKeyStore) IParticipantIdentifier(com.helger.peppolid.IParticipantIdentifier)

Example 24 with ESimpleUserMessageSendResult

use of com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult in project phase4 by phax.

the class MainPhase4PeppolSenderIntunor method main.

public static void main(final String[] args) {
    WebScopeManager.onGlobalBegin(MockServletContext.create());
    // Dump (for debugging purpose only)
    AS4DumpManager.setIncomingDumper(new AS4IncomingDumperFileBased());
    AS4DumpManager.setOutgoingDumper(new AS4OutgoingDumperFileBased());
    try {
        final Element aPayloadElement = DOMReader.readXMLDOM(new File("src/test/resources/examples/base-example.xml")).getDocumentElement();
        if (aPayloadElement == null)
            throw new IllegalStateException("Failed to read XML file to be send");
        // Start configuring here
        final IParticipantIdentifier aReceiverID = Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9914:intunor-test");
        final IAS4ClientBuildMessageCallback aBuildMessageCallback = new IAS4ClientBuildMessageCallback() {

            public void onAS4Message(final AbstractAS4Message<?> aMsg) {
                final AS4UserMessage aUserMsg = (AS4UserMessage) aMsg;
                LOGGER.info("Sending out AS4 message with message ID '" + aUserMsg.getEbms3UserMessage().getMessageInfo().getMessageId() + "'");
                LOGGER.info("Sending out AS4 message with conversation ID '" + aUserMsg.getEbms3UserMessage().getCollaborationInfo().getConversationId() + "'");
            }
        };
        final ESimpleUserMessageSendResult eResult;
        eResult = Phase4PeppolSender.builder().documentTypeID(Phase4PeppolSender.IF.createDocumentTypeIdentifierWithDefaultScheme("urn:oasis:names:specification:ubl:schema:xsd:Invoice-2::Invoice##urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0::2.1")).processID(Phase4PeppolSender.IF.createProcessIdentifierWithDefaultScheme("urn:fdc:peppol.eu:2017:poacc:billing:01:1.0")).senderParticipantID(Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9915:phase4-test-sender")).receiverParticipantID(aReceiverID).senderPartyID("POP000306").payload(aPayloadElement).smpClient(new SMPClientReadOnly(Phase4PeppolSender.URL_PROVIDER, aReceiverID, ESML.DIGIT_TEST)).rawResponseConsumer(new AS4RawResponseConsumerWriteToFile()).validationConfiguration(PeppolValidation3_13_0.VID_OPENPEPPOL_INVOICE_V3, new Phase4PeppolValidatonResultHandler()).buildMessageCallback(aBuildMessageCallback).sendMessageAndCheckForReceipt();
        LOGGER.info("Peppol send result: " + eResult);
    } catch (final Exception ex) {
        LOGGER.error("Error sending Peppol message via AS4", ex);
    } finally {
        WebScopeManager.onGlobalEnd();
    }
}
Also used : IAS4ClientBuildMessageCallback(com.helger.phase4.client.IAS4ClientBuildMessageCallback) SMPClientReadOnly(com.helger.smpclient.peppol.SMPClientReadOnly) Element(org.w3c.dom.Element) AS4UserMessage(com.helger.phase4.messaging.domain.AS4UserMessage) AbstractAS4Message(com.helger.phase4.messaging.domain.AbstractAS4Message) ESimpleUserMessageSendResult(com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult) AS4IncomingDumperFileBased(com.helger.phase4.dump.AS4IncomingDumperFileBased) AS4RawResponseConsumerWriteToFile(com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile) AS4RawResponseConsumerWriteToFile(com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile) File(java.io.File) AS4OutgoingDumperFileBased(com.helger.phase4.dump.AS4OutgoingDumperFileBased) IParticipantIdentifier(com.helger.peppolid.IParticipantIdentifier)

Example 25 with ESimpleUserMessageSendResult

use of com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult in project phase4 by phax.

the class MainPhase4PeppolSenderLocalHost8080 method main.

public static void main(final String[] args) {
    WebScopeManager.onGlobalBegin(MockServletContext.create());
    // Dump (for debugging purpose only)
    AS4DumpManager.setIncomingDumper(new AS4IncomingDumperFileBased());
    AS4DumpManager.setOutgoingDumper(new AS4OutgoingDumperFileBased());
    try {
        final Element aPayloadElement = DOMReader.readXMLDOM(new File("src/test/resources/examples/base-example.xml")).getDocumentElement();
        if (aPayloadElement == null)
            throw new IllegalStateException("Failed to read XML file to be send");
        // Start configuring here
        final IParticipantIdentifier aReceiverID = Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9915:helger");
        final ESimpleUserMessageSendResult eResult;
        eResult = Phase4PeppolSender.builder().documentTypeID(Phase4PeppolSender.IF.createDocumentTypeIdentifierWithDefaultScheme("urn:oasis:names:specification:ubl:schema:xsd:Invoice-2::Invoice##urn:cen.eu:en16931:2017#compliant#urn:fdc:peppol.eu:2017:poacc:billing:3.0::2.1")).processID(Phase4PeppolSender.IF.createProcessIdentifierWithDefaultScheme("urn:fdc:peppol.eu:2017:poacc:billing:01:1.0")).senderParticipantID(Phase4PeppolSender.IF.createParticipantIdentifierWithDefaultScheme("9915:phase4-test-sender")).receiverParticipantID(aReceiverID).senderPartyID("POP000306").payload(aPayloadElement).receiverEndpointDetails(CertificateHelper.convertStringToCertficate("-----BEGIN CERTIFICATE-----\r\n" + "MIIF2DCCA8CgAwIBAgIQBcAefsdQIk7jCCLVCAicizANBgkqhkiG9w0BAQsFADBr MQswCQYDVQQGEwJCRTEZMBcGA1UEChMQT3BlblBFUFBPTCBBSVNCTDEWMBQGA1UE CxMNRk9SIFRFU1QgT05MWTEpMCcGA1UEAxMgUEVQUE9MIEFDQ0VTUyBQT0lOVCBU RVNUIENBIC0gRzIwHhcNMjEwNTI0MDAwMDAwWhcNMjMwNTE0MjM1OTU5WjBlMQsw CQYDVQQGEwJBVDEpMCcGA1UECgwgUGhpbGlwIEhlbGdlciBJVCBDb25zdWx0aW5n IGUuVS4xFzAVBgNVBAsMDlBFUFBPTCBURVNUIEFQMRIwEAYDVQQDDAlQT1AwMDAz MDYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCZ5JhELH0Dt9BIViJM +G1KaXNkTJLXQnJk/iBRz1DamVDEFgO7TK68iJ61Uo3K5YyG+hry88Xuq+3ld5sA o/bHkPM+jXkxXSypa7xJooWtmPVNsTanMXWSwckOCuXN1g3+cSXucgJSCGlxJ7C6 48rsbb0w0Ax7/rc0L5oSMoG3D/PS+8JwMOzskp1h/obQ2inwUmHYQ8k3XnugjQGi dZk3Yg3F262bGtjDoBALJoscz6tQzYl5cSYvxG17U8a4d9la1tFFGO7nKJOYRoAj QlbHZmG0X9NJycL9GlCN8lc4kQdqy/0yWMdFD8VavS3hPJXYgnoB6+7tUXqwkwCM yPELAgMBAAGjggF8MIIBeDAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQEAwIDqDAW BgNVHSUBAf8EDDAKBggrBgEFBQcDAjAdBgNVHQ4EFgQUgsniY6pSk2BsXSwTUpfO 8e4MwBMwXQYDVR0fBFYwVDBSoFCgToZMaHR0cDovL3BraS1jcmwuc3ltYXV0aC5j b20vY2FfNmE5Mzc3MzRhMzkzYTA4MDViZjMzY2RhOGIzMzEwOTMvTGF0ZXN0Q1JM LmNybDA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9wa2ktb2Nz cC5zeW1hdXRoLmNvbTAfBgNVHSMEGDAWgBRrb0u28Te6Kzx/GM26K7K5fCo36zAt BgpghkgBhvhFARADBB8wHQYTYIZIAYb4RQEQAQIDAQGBqZDhAxYGOTU3NjA4MDkG CmCGSAGG+EUBEAUEKzApAgEAFiRhSFIwY0hNNkx5OXdhMmt0Y21FdWMzbHRZWFYw YUM1amIyMD0wDQYJKoZIhvcNAQELBQADggIBAEKChnxTRm0v2witAJaXR/COiMsf wmbdc24q59ePcij9hrcFmJdfBahZE2iwf3HVg1I0ZH73ltd8B4J6xUCE63YjzMQC weDTr/enKmsEYOmAS5tHL7XGVjrA6DII0q2ZuTL9rwFs6iQnTMrUDIdhaWaGlPRC MKu46I+uu44hhfDj6Z6f40wyfrGbyTYvzNHpCN66rUTH0Tsp3myvgX0KAD3F/6iD zcb5m2OMz4uv/ES5soOWRuso9vZ/l4hM9TTTWn0MZMo6pKCBAjdKqCD+/SHkLnX0 0PcAaUZSWxxX24EEIO43/ayuwclHK9onRve9YA/jmbLOFh1SLP+ce/NTDGI5mOZa qCYNqAH8ehiDvy4HmBkeLWZyWktUVMi+v6F/dufDVvlh4kNIDXHR8yYykWTLA8Od g5+h7nFsLmrPsuRojYBFbOHhMtljaabVRfgis1Fbccc8rp2gY+jPeT6yeoLuVgJb Ai5OnpFLh8IrYpbI1X07/Rq65/rH6cZ6ycvBZOb7QnvFUiQ8xScqJGZ25mLTdwzj PyuBgo8SPGQCiEI/30nWouK6tSl20MFj6gI8TkNUSrhLi/EFxxIpgZW08CGf4Hso vspud5kJ+cB9hYT1Xqbjq0RT9asvMz3g6HMyD/64ip9BXocAbe6zb4ueU8tKkDIP QN2iwe7sEx4qUZf3" + "-----END CERTIFICATE-----\r\n"), "http://localhost:8080/as4").rawResponseConsumer(new AS4RawResponseConsumerWriteToFile()).sendMessageAndCheckForReceipt();
        LOGGER.info("Peppol send result: " + eResult);
    } catch (final Exception ex) {
        LOGGER.error("Error sending Peppol message via AS4", ex);
    } finally {
        WebScopeManager.onGlobalEnd();
    }
}
Also used : ESimpleUserMessageSendResult(com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult) Element(org.w3c.dom.Element) AS4IncomingDumperFileBased(com.helger.phase4.dump.AS4IncomingDumperFileBased) AS4RawResponseConsumerWriteToFile(com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile) AS4RawResponseConsumerWriteToFile(com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile) File(java.io.File) AS4OutgoingDumperFileBased(com.helger.phase4.dump.AS4OutgoingDumperFileBased) IParticipantIdentifier(com.helger.peppolid.IParticipantIdentifier)

Aggregations

ESimpleUserMessageSendResult (com.helger.phase4.sender.AbstractAS4UserMessageBuilder.ESimpleUserMessageSendResult)44 IParticipantIdentifier (com.helger.peppolid.IParticipantIdentifier)43 File (java.io.File)43 Element (org.w3c.dom.Element)41 AS4RawResponseConsumerWriteToFile (com.helger.phase4.dump.AS4RawResponseConsumerWriteToFile)37 AS4IncomingDumperFileBased (com.helger.phase4.dump.AS4IncomingDumperFileBased)36 AS4OutgoingDumperFileBased (com.helger.phase4.dump.AS4OutgoingDumperFileBased)36 SMPClientReadOnly (com.helger.smpclient.peppol.SMPClientReadOnly)35 IAS4ClientBuildMessageCallback (com.helger.phase4.client.IAS4ClientBuildMessageCallback)16 AS4UserMessage (com.helger.phase4.messaging.domain.AS4UserMessage)16 AbstractAS4Message (com.helger.phase4.messaging.domain.AbstractAS4Message)16 IAS4CryptoFactory (com.helger.phase4.crypto.IAS4CryptoFactory)6 HttpRetrySettings (com.helger.phase4.http.HttpRetrySettings)6 IValidationSourceXML (com.helger.phive.engine.source.IValidationSourceXML)4 Logger (org.slf4j.Logger)4 LoggerFactory (org.slf4j.LoggerFactory)4 Wrapper (com.helger.commons.wrapper.Wrapper)3 ESML (com.helger.peppol.sml.ESML)3 IAS4RawResponseConsumer (com.helger.phase4.client.IAS4RawResponseConsumer)3 AS4CryptoFactoryInMemoryKeyStore (com.helger.phase4.crypto.AS4CryptoFactoryInMemoryKeyStore)3