user2231233
user2231233

Reputation: 21

Getting general SSL Engine problem while calling API in mule4

I am trying to call https API end point(implemented in mulesoft) using Request component(Mule component) from another flow. When i am calling from local machine it working fine. But when i deployed to Anypoint Exchange it is throwing General SSL engine problem. Can anyone help me out?

Upvotes: 0

Views: 6889

Answers (1)

Alex
Alex

Reputation: 4473

Try to use alternative way to reach end point with this SSL error. I guess url starts with https:// since it is throwing SSL exception. Grab this url and try to open it in some browser. It will tell you what is the reason for exception and is SSL certificate valid or not.

Work around it - make http config to ignore SSL certificate. https://simpleflatservice.com/mule4/HowToIgnoreInsecureCertificates.html

After all it is yours (probably) service and you may trust it.

enter image description here

Upvotes: 2

Related Questions