在 Mule 流程中,我在流程中设置了如下属性:
<set-property propertyName="certPath" value="/tmp/#[aVariable]/certificate.pem" doc:name="Property"/>
我现在尝试在我的 sftp outbound-endpoint identityFile 属性中使用它,如下所示: identityFile="${certPath}"
这不起作用并将占位符作为字符串(按原样)。
我是否遗漏了应该设置然后访问属性的方式?
我还尝试在会话范围内添加消息属性,但是当尝试 ${session.certPath} 时,也没有任何东西被评估。