Reputation: 77
I want to send new basic auth credential to the https outbound endpoint. I tried using message-properties-transformer but its not working . I am getting fault message.
Is there any other way I can send basic auth credentials ?
Upvotes: 2
Views: 1573
Reputation: 33413
As explained in the documentation, embed the credentials directly in the endpoint:
<https:outbound-endpoint address="https://user:[email protected]/secure" ... />
Upvotes: 4