Mule 4 Munits:具有基本身份验证的呼叫流

时间:2018-12-04 12:13:43

标签: mule basic-authentication

我正在使用Mule 4,我试图创建一个测试用例,在其中我要使用flow-ref调用具有基本身份验证功能的Http侦听器

<http:authentication>
    <http:basic-authentication username="${admin.user}" password="${admin.password}" />
</http:authentication>

但是我遇到了基本的身份验证错误,以下Mule 3的方法不起作用

<munit:inbound-properties>
    <munit:inbound-property key="Authorization" value="Basic YWRtaW46OWJjRFAyclF3RXBlamRYelpW==" />
     <munit:inbound-property key="username" value="admin" />
     <munit:inbound-property key="password" value="123" />
</munit:inbound-properties>

有什么办法解决这个问题

1 个答案:

答案 0 :(得分:0)

在Mule 4中,对HTTP基本身份验证的支持已在某种程度上转移到了Spring Security。下面的Mulesoft教程详细介绍了Mule 4的方法。

https://help.mulesoft.com/s/article/Tutorial-how-to-create-a-simple-Mule-4-http-basic-authentication-application