Hello dear colleagues, In a process model I have a send email task th

Hello dear colleagues,

In a process model I have a send email task that after upgrading Appian doesn't work properly.
Alert doesn't help me to find the sollution.I attached a document with the application server's log
describing the problem.Could anyone guide me to solve the issue?

Thanks in advance

log_error.txt

OriginalPostID-168753

OriginalPostID-168753

  Discussion posts and replies are publicly visible

Parents
  • Relevant error:

    Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

    This error has bee discussed in other posts already. The root cause is you're using a self signed certificate for your web server preventing the app server from trusting it when making the GET request to retrieve the JSP used as the email body template.

    Solutions:

    1. Configure these settings to use HTTP and the APP_SERVER

    conf.suite.MAIL_SCHEME=http
    conf.suite.SERVER_AND_PORT=myappserver.mycompany.com:8080

    2. Or Import your certificate into the JDK cacerts
Reply
  • Relevant error:

    Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

    This error has bee discussed in other posts already. The root cause is you're using a self signed certificate for your web server preventing the app server from trusting it when making the GET request to retrieve the JSP used as the email body template.

    Solutions:

    1. Configure these settings to use HTTP and the APP_SERVER

    conf.suite.MAIL_SCHEME=http
    conf.suite.SERVER_AND_PORT=myappserver.mycompany.com:8080

    2. Or Import your certificate into the JDK cacerts
Children
No Data