Replies: 1 comment
-
Hi! did you find a solution to this problem? I am having the exact same one |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Good morning, I am currently working with apache camel and quarkus, I am using dynamic url because I have to call an API with dynamic url and the GET method, it is through https, the problem is that for camel dynamic url it is more difficult to configure, I already imported the ssl certificate of the service to consume in my trust store of the JDK, but now I have the following exception:
javax.net.ssl.SSLPeerUnverifiedException: Certificate for <localhost> doesn't match any of the subject alternative names: []
My class RestRoute:
I am using toD to make the call to my dynamic endpoint:
.toD("https://localhost:8080/users/${exchangeProperty[user_id]}/customers?bridgeEndpoint=true")
My applicacion properties
I am developing in Quarkus with Apache Camel
Beta Was this translation helpful? Give feedback.
All reactions