RAVI P
RAVI P

Reputation: 77

Mule 3.3 - How can I pass basic auth credentils to HTTPS outbound endpoint in mule flow

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

Answers (1)

David Dossot
David Dossot

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

Related Questions