1

我使用 anypoint 凭据配置了 cloudhub 连接器,以创建超时错误通知。当我尝试测试应用程序时,我收到一个错误

凭据无效”错误类型:CLOUDHUB-CONNECTIVITY

以下代码是我在 Mule 4 中的配置方式。这与我的 anypoint 帐户的权限有关吗?

在此处输入图像描述

4

1 回答 1

1

我也遇到了这个问题,通过反复试验,似乎提出通知的用户至少需要对相关环境的“读取应用程序”权限。

在 Mule 4 中,您还可以选择在配置中指定环境 ID;如果您希望将系统属性 ${environment.id} 应用于部署应用程序的环境,请使用系统属性,例如:

<cloudhub:config name="CloudHub_Config" doc:name="CloudHub Config">
  <cloudhub:connection username="${cloudhub.username}" password="${cloudhub.password}" environment="${environment.id}" />
</cloudhub:config>

如果省略了这个环境属性,我相信它会使用 Anypoint Platform 中定义为默认值的那个。

于 2019-08-15T09:44:15.970 回答